-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 980 Bytes
/
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
{
"name": "deep-getter",
"version": "1.1.2",
"description": "get all the way through your variable without breaking your app",
"main": "index.js",
"scripts": {
"build": "npm run lint && npm run test && npm run docs",
"docs": "npx jsdoc2md *.js > ./docs/README.md",
"lint": "eslint --ext .js ./",
"fix": "eslint --ext .js ./ --fix",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PatoCinza/deep-getter.git"
},
"author": "Pato Cinza",
"license": "MIT",
"bugs": {
"url": "https://github.com/PatoCinza/deep-getter/issues"
},
"homepage": "https://github.com/PatoCinza/deep-getter#readme",
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^23.6.0",
"jsdoc-to-markdown": "^4.0.1"
}
}