-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
36 lines (36 loc) · 855 Bytes
/
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
{
"name": "neural-data-normalizer",
"version": "1.1.0",
"description": "Data to bits normalization helpers script to use with neural network.",
"repository": "https://github.com/adadgio/neural-data-normalizer",
"main": "dist/index.js",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"start": "node ./dist/index.js",
"test": "node dist/demo.js",
"watch": "npm run build:live",
"build:live": "tsc --watch",
"build": "tsc"
},
"keywords": [
"node",
"typescript",
"Neural networks",
"Synaptic.js",
"Data manipulation"
],
"author": "Romain Bruckert",
"license": "ISC",
"devDependencies": {
"@types/node": "^7.0.0",
"nodemon": "^1.11.0",
"ts-node": "^3.1.0",
"typescript": "^2.4.1",
"typescript-watcher": "^0.0.4"
},
"dependencies": {
"synaptic": "^1.1.4"
}
}