-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.11 KB
/
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
{
"name": "brain-ct.js",
"version": "1.0.0",
"description": "peer into a neural network",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dist": "babel src --out-dir dist --source-maps",
"browser": "browserify ./dist/index.js -o browser.js",
"browser-min": "browserify ./dist/index.js -g uglifyify -o browser.min.js",
"make": "rm -fr ./dist && npm run dist && git add ./dist && npm run browser && npm run browser-min"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BrainJS/brain-ct.js.git"
},
"keywords": [
"neural",
"network",
"viewer"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/BrainJS/brain-ct.js/issues"
},
"homepage": "https://github.com/BrainJS/brain-ct.js#readme",
"devDependencies": {
"babel-core": "^6.14.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-polyfill": "^6.13.0",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"brain.js": "^1.0.0",
"browserify": "^13.1.0",
"uglifyify": "^4.0.5"
}
}