-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
36 lines (36 loc) · 1.03 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
{
"name": "iutest",
"version": "1.0.0",
"devDependencies": {
"eclint": "^2.8.1",
"editorconfig-checker": "^3.0.0",
"npm-run-all": "^4.1.5",
"remark-lint": "^6.0.6",
"remark-preset-lint-recommended": "^3.0.4"
},
"scripts": {
"lint:editorconfig": "npm-run-all eclint eccheck",
"eccheck": "editorconfig-checker .",
"eccheck:cpp": "editorconfig-checker src include",
"eclint": "npm-run-all eclint:*",
"eclint:src": "eclint check ./src",
"eclint:include": "find ./include -type f -not -name iutest_ver.hpp | xargs eclint check -s 2",
"eclint:root": "find . -maxdepth 1 -type f | xargs eclint check",
"lint-md": "remark ."
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/srz-zumix/iutest.git"
},
"author": "srz_zumix",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/srz-zumix/iutest/issues"
},
"homepage": "https://github.com/srz-zumix/iutest#readme"
}