-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 962 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 962 Bytes
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
{
"name": "zbits",
"version": "0.0.9",
"description": "Lowest level utilities for Zector libraries",
"main": "src/index.js",
"scripts": {
"build-test": "webpack --config webpack-test.config.js",
"watch-test": "webpack --watch --config webpack-test.config.js",
"build-docs" : "jsdoc -c jsdoc.conf.json -r ./src -d docs",
"test": "mocha build/zbits-test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jay3sh/zbits.git"
},
"author": "Jayesh Salvi",
"license": "ISC",
"bugs": {
"url": "https://github.com/jay3sh/zbits/issues"
},
"homepage": "https://github.com/jay3sh/zbits#readme",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-es2015-modules-commonjs": "^6.22.0",
"jsdoc": "^3.4.3",
"mocha": "^3.2.0",
"webpack": "^2.2.1"
},
"babel": {
"plugins": [
"transform-es2015-modules-commonjs"
]
}
}