-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.58 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "object-selectors",
"version": "2.3.0",
"description": "Query and manipulate nested object properties with an expressive and intuitive notation.",
"main": "applicators.js",
"type": "module",
"scripts": {
"test": "npx mocha --colors --require mocha.conf.js --extension .spec.js .",
"build-parser": "npx gulp build-parser",
"build-docs": "npx documentation readme -f md applicators.js --shallow --no-markdown-toc --section API"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BadIdeaException/object-selectors.git"
},
"keywords": [
"select",
"selector",
"selectors",
"object",
"nested",
"deep",
"property",
"properties",
"prop",
"props",
"access"
],
"author": "BadIdeaException",
"license": "MIT",
"bugs": {
"url": "https://github.com/BadIdeaException/object-selectors/issues"
},
"homepage": "https://github.com/BadIdeaException/object-selectors#readme",
"devDependencies": {
"@peggyjs/eslint-parser": "^1.2.1",
"@peggyjs/eslint-plugin": "^1.1.0",
"benchmark": "^2.1.4",
"chai": "^4.3.8",
"documentation": "^14.0.2",
"dot-prop": "^8.0.2",
"easy-object-selector": "^1.3.0",
"eslint": "^8.48.0",
"eslint-plugin-chai-expect": "^3.0.0",
"eslint-plugin-mocha": "^10.1.0",
"esmock": "^2.3.8",
"get-value": "^3.0.1",
"gulp": "^4.0.2",
"gulp-rename": "^2.0.0",
"gulp-tap": "^2.0.0",
"mocha": "^10.2.0",
"object-path": "^0.11.8",
"pathval": "^2.0.0",
"peggy": "^3.0.2",
"sinon": "^17.0.0",
"sinon-chai": "^3.7.0"
}
}