forked from mil-tokyo/webdnn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.27 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
58
59
{
"name": "WebDNN",
"version": "1.1.0",
"description": "Deep Neural Network Execution Framework for Web Browsers",
"main": "dist/webdnn.js",
"directories": {
"doc": "docs",
"example": "example",
"test": "test"
},
"scripts": {
"test": "nosetests",
"test-kernel": "echo '\"npm run test-kernel\" is removed. please use \"npm run test-runtime\"'",
"test-runtime": "OPTIMIZE=0 nosetests -w ./test/runtime",
"build": "rollup -c; rollup -c ./rollup.es5.config.js; dts-generator --name webdnn --project ./src/descriptor_runner --out ./dist/webdnn.d.ts --main 'webdnn/webdnn'",
"build-doc": "npm run build-doc-python; npm run build-doc-ts",
"build-doc-python": "cd docs; make html",
"build-doc-ts": "typedoc --disableOutputCheck --out ./docs/build/html/api_reference/descriptor-runner --mode modules --target es2017 --lib 'lib.es2017.d.ts,lib.dom.d.ts' --excludePrivate --readme ./src/descriptor_runner/index.md --theme ./docs/template/typedoc ./src/descriptor_runner/webdnn.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mil-tokyo/webdnn.git"
},
"author": {
"name": "Yuichiro Kikura",
"email": "kikura@mi.t.u-tokyo.ac.jp",
"url": "https://github.com/Kiikurage"
},
"contributors": [
{
"name": "Masatoshi Hidaka",
"email": "hidaka@mi.t.u-tokyo.ac.jp",
"url": "https://milhidaka.github.io/"
},
{
"name": "Yuichiro Kikura",
"email": "kikura@mi.t.u-tokyo.ac.jp",
"url": "https://github.com/Kiikurage"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mil-tokyo/webdnn/issues"
},
"homepage": "https://mil-tokyo.github.io/webdnn/",
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"bootstrap": "4.0.0-alpha.6",
"dts-generator": "^2.1.0",
"gulp-sass": "^3.1.0",
"handlebars": "^4.0.10",
"rollup": "^0.47.4",
"rollup-plugin-typescript2": "^0.5.0",
"typedoc": "^0.8.0",
"typedoc-default-themes": "^0.5.0",
"typedoc-plugin-webdnn": "file:docs/template/typedoc/plugin"
}
}