-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 966 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
{
"name": "deepnested",
"version": "2.0.1",
"description": "Simple utility function to safely get and set deeply nested object",
"main": "lib/index.js",
"scripts": {
"build": "babel --presets es2015,stage-0 -d lib/ src/",
"prepublish": "npm run build",
"test": "mocha --compilers js:babel-register",
"test:watch": "mocha --compilers js:babel-register --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tjcafferkey/deepnested.git"
},
"author": "Tom Cafferkey",
"license": "ISC",
"bugs": {
"url": "https://github.com/tjcafferkey/deepnested/issues"
},
"homepage": "https://github.com/tjcafferkey/deepnested#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.1.2",
"mocha": "^3.5.3"
}
}