-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.31 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.31 KB
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
{
"name": "access-deep",
"version": "1.1.3",
"description": "Safe access to the nested object's properties with ES6 Proxy object",
"main": "index.js",
"engineStrict": true,
"engines": {
"node": ">= 6.0.0"
},
"scripts": {
"test": "xo && nyc ava test/**/*.js",
"test:visual": "xo && nyc report --reporter=html ava test/**/*.js",
"doc": "documentation index.js -f md | install -D /dev/stdin docs/index.md",
"coverage": "./coverage.sh"
},
"xo": {
"esnext": true,
"rules": {
"no-var": 1,
"prefer-const": 1,
"no-implicit-coercion": 0,
"prefer-template": 0,
"babel/object-shorthand": 1,
"space-before-function-paren": [
2,
"always"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/forceuser/access-deep.git"
},
"keywords": [
"safe access",
"nested properties",
"Proxy object",
"__get",
"__set"
],
"author": "forceuser",
"license": "MIT",
"bugs": {
"url": "https://github.com/forceuser/access-deep/issues"
},
"homepage": "https://github.com/forceuser/access-deep#readme",
"devDependencies": {
"ava": "^0.15.2",
"codecov": "^1.0.1",
"coveralls": "^2.11.8",
"documentation": "^3.0.4",
"nyc": "^6.6.1",
"xo": "^0.16.0"
},
"dependencies": {}
}