-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.63 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
{
"main": "main.js",
"bin": {
"alex": "main.js"
},
"private": true,
"scripts": {
"clean": "rm -f alex_*",
"example": "npm run clean && node . collect --in examples/inputs/matrix-500x500.in -- examples/build/matrixmultiplier",
"precommit": "lint-staged",
"print": "./collector/build/protobuf-print"
},
"dependencies": {
"d3": "^5.7.0",
"d3-svg-legend": "^2.25.6",
"electron": "^3.0.2",
"lodash.isequal": "^4.5.0",
"moment": "^2.22.2",
"pretty-ms": "^4.0.0",
"progress-stream": "^2.0.0",
"protobufjs": "^6.8.8",
"tempy": "^0.2.1",
"through2": "^2.0.3",
"yargs": "^12.0.2"
},
"devDependencies": {
"@types/yargs": "^12.0.1",
"ajv": "^6.5.4",
"eslint": "^5.6.1",
"eslint-config-prettier": "^3.1.0",
"husky": "^0.14.3",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3"
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": [
"prettier",
"eslint:recommended"
],
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {
"no-console": "off",
"no-var": "error",
"eqeqeq": "error",
"prefer-const": "warn",
"prefer-arrow-callback": "warn",
"arrow-body-style": "warn",
"no-unused-vars": "warn",
"no-empty": "warn"
}
},
"lint-staged": {
"*.{json,css,md}": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.{c,h,cpp,hpp,proto}": [
"./tidy-check.sh",
"clang-format -i -style=Google",
"git add"
]
}
}