-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 877 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": "nullsafe",
"version": "2.0.2",
"description": "A nullsafe traversal",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha",
"coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"keywords": [
"null",
"nullsafe",
"javascript",
"optional"
],
"author": "\"Jon Keam <[email protected]> (http://jonkeam.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jkeam/nullsafe.git"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"istanbul": "^0.4.5",
"jsdoc": "^3.5.5",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0"
},
"engines": {
"node": ">=6.0.0"
}
}