-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.42 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
43
44
45
46
47
48
49
50
{
"name": "vt-neural-network",
"version": "0.0.4",
"description": "A example neural network",
"license": "MIT",
"author": {
"name": "rafinskipg",
"email": "rafinskipg@gmail.com",
"url": "https://github.com/rafinskipg"
},
"main": "./public/common.js",
"scripts": {
"audit": "source-map-explorer public/dist/main.bundle.web.js",
"clear": "rm -rf public/dist/",
"clear:all": "rm -rf node_modules/ && npm run clear",
"count": "find src -name '*.js' | xargs wc -l | sort -r",
"build": "webpack ",
"build:web": "webpack --config ./webpack.config.web.js",
"watch": "webpack -w",
"start": "node public/dist/main.bundle.node.js",
"test": "jest --env=node"
},
"keywords": [
"ai",
"artificial-intelligence",
"neural network",
"nn",
"feed forward",
"neural network",
"classifier",
"neural",
"network",
"neural-networks",
"machine-learning",
"synapse",
"time series",
"time step",
"prediction"
],
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"babel-loader": "^8.0.5",
"jest": "^24.9.0",
"source-map-explorer": "^1.7.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-node-externals": "^1.7.2"
}
}