-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.61 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
{
"name": "eslint-plugin-actool",
"version": "0.1.0",
"description": "Toolkit for code / comments actuality and relevance checking",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"actual-code",
"actuality",
"relevance",
"comments"
],
"author": "Ilya Azin<martis.azin@gmail.com>",
"main": "lib/index.js",
"repository": "git://github.com/actool/eslint-plugin-actool",
"scripts": {
"publish:prepatch": "npm version prepatch && npm publish",
"publish:patch": "npm version patch && npm publish",
"publish:minor": "npm version minor && npm publish",
"publish:major": "npm version major && npm publish",
"new:rule": "yo eslint:rule",
"test": "npm run lint:test && npm run mocha:utils && npm run mocha:rules",
"test:coverage": "nyc npm run test",
"mocha": "mocha",
"mocha:rules": "mocha tests/lib/rules/** --timeout 8000",
"mocha:utils": "mocha tests/lib/utils/** --timeout 8000",
"lint:test": "eslint .",
"lint:fix": "eslint . --fix",
"gen:types": "node scripts/gen-types.js"
},
"dependencies": {
"json-schema-defaults": "^0.4.0",
"requireindex": "~1.1.0"
},
"devDependencies": {
"@types/eslint": "^7.2.6",
"@typescript-eslint/parser": "^4.8.2",
"eslint": "^7.1.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-eslint-plugin": "^2.3.0",
"eslint-plugin-prettier": "^3.2.0",
"json-schema-to-typescript": "^10.0.0",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"typescript": "^4.1.2",
"yo": "^3.1.1"
},
"engines": {
"node": ">=0.10.0"
},
"license": "ISC"
}