-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.43 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
{
"name": "deeplearn-caffe",
"version": "0.1.0",
"description": "Run pretrained Caffe models in deeplearn.js",
"main": "dist/node/index.js",
"unpkg": "dist/browser/deeplearn-caffe.min.js",
"types": "dist/node/index.d.ts",
"dependencies": {
"caffe-proto": "^0.1.0",
"dag-iterator": "^0.3.0",
"deeplearn": "^0.4.2",
"prototxt-parser": "^0.1.4"
},
"repository": {
"type": "git",
"url": "https://github.com/chaosmail/deeplearnjs-caffe.git"
},
"devDependencies": {
"@types/jasmine": "^2.8.4",
"@types/node": "^9.3.0",
"browserify": "^14.5.0",
"clang-format": "^1.2.2",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-rename": "^1.2.2",
"gulp-typescript": "^3.2.3",
"http-server": "^0.10.0",
"jasmine-co": "^1.2.2",
"jasmine-core": "~2.6.4",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.0.1",
"karma-jasmine": "~1.1.0",
"karma-typescript": "^3.0.8",
"protobufjs": "~6.8.0",
"run-sequence": "^2.2.0",
"tinyify": "^2.4.0",
"tsify": "^3.0.3",
"tslint": "~5.6.0",
"typescript": "^2.6.2",
"vinyl-source-stream": "^1.1.0"
},
"scripts": {
"test-e2e": "sh test/e2e/run.sh",
"test-e2e-travis": "sh test/e2e/run.sh --browsers='Chrome' --singleRun",
"build": "gulp build",
"serve": "http-server",
"publish-npm": "npm install && gulp build && npm publish"
},
"license": "Apache-2.0"
}