forked from lutzroeder/netron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.79 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
{
"name": "@paddlejs/netron",
"productName": "Netron used in paddlejs",
"author": {
"name": "JingyuanZhang"
},
"version": "0.4.0",
"description": "Netron npm lib, forked from lutzroeder/netron",
"license": "MIT",
"repository": "https://github.com/JingyuanZhang/netron",
"main": "lib/index.js",
"scripts": {
"build": "webpack --config webpack.prod.js",
"watch": "webpack w --config webpack.prod.js"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^9.1.0",
"eslint": "8.2.0",
"less": "^4.1.2",
"webpack": "^5.64.0",
"webpack-cli": "^4.9.1"
},
"eslintConfig": {
"env": {
"es6": true,
"browser": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2015,
"sourceType": "module"
},
"rules": {
"brace-style": [
"error",
"stroustrup",
{
"allowSingleLine": true
}
],
"indent": [
"error",
4,
{
"SwitchCase": 1
}
],
"linebreak-style": "off",
"no-trailing-spaces": "error",
"prefer-const": [
"error",
{
"destructuring": "all"
}
],
"semi": [
"error",
"always"
]
},
"globals": {
"flatbuffers": "readonly",
"protobuf": "readonly"
}
}
}