-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
57 lines (57 loc) · 1.72 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
51
52
53
54
55
56
57
{
"name": "jsnet",
"version": "3.4.1",
"description": "Javascript based deep learning framework for basic and convolutional neural networks.",
"scripts": {
"test": "npm run js-tests && npm run wa-tests",
"js-tests": "nyc mocha test/js-test.js",
"wa-tests": "nyc mocha test/wa-test.js",
"cpp-tests": "cd ./build && make && cpp-tests",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"coveralls": "npm run coverage -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"build": "rm -rf build && mkdir build && cd build && cmake -G\"MSYS Makefiles\" .. && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DanRuta/jsNet.git"
},
"keywords": [
"convolutional",
"deep",
"learning",
"neural",
"network",
"webassembly",
"javascript"
],
"main": "dist/jsNet.js",
"author": "Dan Ruta",
"license": "MIT",
"directories": {},
"bugs": {
"url": "https://github.com/DanRuta/jsNet/issues"
},
"engines": {
"node": ">= 8.4.0"
},
"homepage": "https://github.com/DanRuta/jsNet#readme",
"devDependencies": {
"chai": "3.5.0",
"chai-as-promised": "^6.0.0",
"coveralls": "^2.13.1",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-uglify": "git://github.com/gruntjs/grunt-contrib-uglify.git#harmony",
"grunt-contrib-uglify-es": "git://github.com/gruntjs/grunt-contrib-uglify.git#harmony",
"grunt-contrib-watch": "^1.0.0",
"grunt-exec": "^3.0.0",
"grunt-text-replace": "^0.4.0",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.0.2",
"sinon": "^2.3.2",
"sinon-chai": "^2.10.0"
}
}