-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.57 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
{
"name": "nnabla-js",
"version": "0.1.0",
"description": "A JavaScript runtime for Neural Network Libraries",
"main": "dist/index.js",
"typings": "dist/index",
"files": ["dist"],
"scripts": {
"test": "jest",
"lint:check": "eslint src test --ext ts",
"lint:fix": "eslint src test --ext ts --fix",
"build:dev": "webpack --config webpack.dev.js",
"build:prod": "webpack --config webpack.prod.js"
},
"repository": {
"type": "git",
"url": "https://github.com/sony/nnabla-js"
},
"author": "Takuma Seno",
"license": "apache-2.0",
"bugs": {
"url": "https://github.com/sony/nnabla-js/issues"
},
"homepage": "https://github.com/sony/nnabla-js#readme",
"dependencies": {
"gpu.js": "^2.11.4",
"jszip": "^3.7.1"
},
"devDependencies": {
"@types/google-protobuf": "^3.15.5",
"@types/jest": "^27.0.3",
"@types/jszip": "^3.4.1",
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-config-airbnb": "^19.0.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"google-protobuf": "^3.19.1",
"jest": "^27.3.1",
"prettier": "^2.5.0",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"ts-protoc-gen": "^0.15.0",
"typescript": "^4.5.2",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1"
}
}