-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.08 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.08 KB
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
{
"name": "zmath",
"version": "0.2.0",
"description": "Math functionality for Zector",
"main": "src/index.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"watch": "webpack --watch --config webpack.config.js",
"build-docs":"documentation build src/ --github --format html --output docs/api --config docs/config.yml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jay3sh/zmath.git"
},
"author": "Jayesh Salvi",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/jay3sh/zmath/issues"
},
"homepage": "https://github.com/jay3sh/zmath#readme",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-es2015-modules-commonjs": "^6.22.0",
"babili-webpack-plugin": "0.0.11",
"documentation": "^4.0.0-rc.1",
"qunitjs": "^2.3.2",
"webpack": "^1.14.0",
"zbits": "github:zectorio/zbits",
"zcanvas": "github:zectorio/zcanvas",
"zdom": "github:zectorio/zdom"
},
"babel": {
"plugins": [
"transform-es2015-modules-commonjs"
]
}
}