-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.22 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
39
40
41
42
{
"name": "nnn",
"version": "1.0.0",
"description": "Neural Network",
"main": "index.js",
"scripts": {
"start": "npm run serve",
"build": "npm run build-bundle && npm run build-worker",
"test": "echo \"Error: no test specified\" && exit 1",
"build-bundle": "browserify -d src/nnn-web.ts -p [ tsify ] | exorcist web/bundle.js.map > web/bundle.js",
"build-worker": "browserify -d src/worker.ts -p [ tsify ] | exorcist web/worker.js.map > web/worker.js",
"serve": "http-server web -c-1",
"install": "mkdir -p web/vendor/monaco && cp -R node_modules/monaco-editor/min/ web/vendor/monaco/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lcrespom/nnn.git"
},
"keywords": [
"neural",
"network"
],
"author": "Luis Crespo",
"license": "ISC",
"bugs": {
"url": "https://github.com/lcrespom/nnn/issues"
},
"homepage": "https://github.com/lcrespom/nnn#readme",
"devDependencies": {
"@types/bootstrap": "^3.3.32",
"@types/jquery": "^2.0.33",
"browserify": "^13.1.0",
"exorcist": "^0.4.0",
"http-server": "^0.9.0",
"tsify": "^2.0.2",
"tslint": "^3.15.1",
"typescript": "^2.0.3"
},
"dependencies": {
"monaco-editor": "^0.7.0"
}
}