forked from webmachinelearning/webnn-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 978 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
37
38
39
40
{
"name": "webnn-samples",
"version": "0.1.0",
"description": "The WebNN API samples",
"authors": [
"Ningxin Hu <[email protected]>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/webmachinelearning/webnn-samples.git"
},
"bugs": {
"url": "https://github.com/webmachinelearning/webnn-samples/issues"
},
"homepage": "https://github.com/webmachinelearning/webnn-samples",
"keywords": [
"deep-learning",
"machine-learning",
"neural-network",
"deep-neural-network",
"javascript",
"webnn"
],
"devDependencies": {
"@babel/core": "^7.12.1",
"@babel/eslint-parser": "^7.12.1",
"@babel/plugin-syntax-top-level-await": "^7.12.1",
"eslint": "^7.5.0",
"eslint-config-google": "^0.14.0",
"http-server": "^0.12.3"
},
"scripts": {
"lint": "eslint . --ext .js",
"start": "http-server"
},
"dependencies": {
"babel-eslint": "^8.0.3"
}
}