-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 969 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
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "j-walk",
"version": "1.3.0",
"description": "A simple dot notation JavaScript object getter/setter",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/scniro/j-walk.git"
},
"author": "scniro <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/scniro/j-walk/issues"
},
"keywords": [
"json",
"dot-notation",
"dotnotation",
"object-mapper",
"objectmapper",
"json-mapper"
],
"homepage": "https://github.com/scniro/j-walk#readme",
"devDependencies": {
"chai": "4.0.2",
"coveralls": "2.13.1",
"mocha": "3.4.2",
"nyc": "11.0.3"
},
"scripts": {
"test": "./node_modules/.bin/nyc mocha test.js --reporter dot"
},
"engines": {
"node": ">=4.0"
},
"nyc": {
"report-dir": "./.coverage",
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"tempDirectory": "./.coverage/.temp"
}
}