-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 885 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
{
"name": "deepdrain",
"version": "1.1.3",
"description": "Library for accessing arbitrarily nested, possibly nullable properties on a JavaScript object or array.",
"main": "src/index.js",
"scripts": {
"test": "istanbul cover -x *.test.js _mocha -- -R spec src/index.test.js",
"test:watch": "mocha src/index.test.js -w",
"test:check-coverage": "istanbul check-coverage --statement 95 --functions 100 --lines 95"
},
"repository": {
"type": "git",
"url": "https://github.com/jalbertsr/deep.git"
},
"author": "@jalbertsr [email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/jalbertsr/deep/issues"
},
"homepage": "https://github.com/jalbertsr/deep#readme",
"dependencies": {},
"devDependencies": {
"chai": "^4.1.2",
"istanbul": "^0.4.5",
"mocha": "^5.0.1",
"prettier-eslint": "^8.8.1"
}
}