forked from webmachinelearning/webnn-polyfill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.5 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "webnn-polyfill",
"version": "0.1.0",
"description": "WebNN API polyfill",
"main": "dist/webnn-polyfill.js",
"directories": {
"src": "src",
"test": "test"
},
"scripts": {
"watch": "webpack --watch",
"dev": "webpack-dev-server --open",
"start": "http-server",
"build": "webpack",
"build-production": "cross-env NODE_ENV=production webpack",
"build-docs": "typedoc --options typedoc.json",
"lintts": "eslint . --config .eslintrc.js --ext .ts",
"lintjs": "eslint . --no-eslintrc --config .eslintrcforjs.js --ext .js",
"lint": "npm run lintts && npm run lintjs",
"format": "clang-format --glob=\"{{src,test}/**/*.ts,{src,test}/**/*.js}\" --style=file -i",
"test": "cross-env NODE_ENV=test mocha --require ./node_setup.js --exit test/*/*.js test/cts/from_nnapi/tests/cts.js ./test/models/**/*.js",
"test-cts": "cross-env NODE_ENV=test mocha --require ./node_setup.js --exit test/cts/from_nnapi/tests/cts.js",
"test-models": "cross-env NODE_ENV=test mocha --require ./node_setup.js --exit ./test/models/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webmachinelearning/webnn-polyfill.git"
},
"keywords": [
"deep-learning",
"machine-learning",
"neural-network",
"deep-neural-network",
"javascript",
"webnn"
],
"authors": [
"Ningxin Hu <[email protected]>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/webmachinelearning/webnn-polyfill/issues"
},
"homepage": "https://github.com/webmachinelearning/webnn-polyfill",
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/polyfill": "^7.11.5",
"@babel/preset-env": "^7.11.0",
"@babel/register": "^7.11.5",
"@tensorflow/tfjs-backend-cpu": "^2.8.5",
"@tensorflow/tfjs-backend-webgl": "^2.8.5",
"@tensorflow/tfjs-core": "^2.8.5",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"babel-loader": "^8.1.0",
"chai": "^4.2.0",
"clang-format": "^1.4.0",
"cross-env": "^7.0.2",
"eslint": "^7.18.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsdoc": "^30.3.1",
"eslint-plugin-prefer-arrow": "^1.2.2",
"http-server": "^0.12.3",
"mocha": "^8.1.3",
"portfinder": "^1.0.28",
"ts-loader": "^8.0.2",
"typedoc": "^0.18.0",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {}
}