This repository was archived by the owner on Jan 31, 2024. It is now read-only.
generated from mysticatea/template-eslint-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.36 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-spiff",
"version": "1.0.2",
"description": "",
"engines": {
"node": ">=12.12.0"
},
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"add-rule": "node scripts/add-rule",
"lint": "eslint lib scripts tests",
"update": "node scripts/update",
"pretest": "npm run -s lint",
"test": "nyc mocha \"tests/lib/**/*.js\" --reporter progress",
"watch": "nyc mocha \"tests/lib/**/*.js\" --watch",
"preversion": "npm test",
"version": "npm run -s update",
"postversion": "git push && git push --tags"
},
"peerDependencies": {
"eslint": ">=5.16.0"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^12.0.6",
"eslint": "^5.16.0",
"eslint-config-eslint": "^5.0.1",
"eslint-config-prettier": "6.10.1",
"eslint-plugin-eslint-plugin": "^2.1.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "3.1.2",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"prettier": "2.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SpiffInc/eslint-plugin-spiff.git"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/SpiffInc/eslint-plugin-spiff/issues"
},
"homepage": "https://github.com/SpiffInc/eslint-plugin-spiff#readme"
}