-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 809 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 809 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
{
"name": "jcircuit",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha ./test/element.test.js ./test/circuit.test.js ./test/line.test.js",
"dev": "webpack-dev-server --config ./config/webpack.dev.config.js",
"build": "webpack --config ./config/webpack.prod.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maelon/jCircuit.git"
},
"author": "maelon",
"license": "MIT",
"bugs": {
"url": "https://github.com/maelon/jCircuit/issues"
},
"homepage": "https://github.com/maelon/jCircuit#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"mocha": "^3.5.0",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
}
}