forked from aladdin-add/eslint-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.15 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
{
"name": "eslint-plugin",
"version": "0.0.0",
"private": true,
"author": "薛定谔的猫 <[email protected]>",
"description": "some eslint plugins",
"devDependencies": {
"eslint": "^7.15.0",
"eslint-config-eslint": "^6.0.0",
"eslint-plugin-eslint-plugin": "^3.0.2",
"eslint-plugin-jsdoc": "^30.7.8",
"eslint-plugin-node": "^11.1.0"
},
"scripts": {
"postinstall": "npm run install:autofix && npm run install:no-autofix && npm run install:web",
"install:autofix": "cd packages/autofix && npm i",
"install:no-autofix": "cd packages/no-autofix && npm i",
"install:web": "cd packages/web && npm i",
"test": "npm run test:autofix && npm run test:no-autofix && npm run test:web",
"test:autofix": "cd packages/autofix && npm t",
"test:no-autofix": "cd packages/no-autofix && npm t",
"test:web": "cd packages/web && npm t",
"lint": "eslint packages/"
},
"license": "MIT",
"repository": "https://github.com/aladdin-add/eslint-plugin",
"homepage": "https://github.com/aladdin-add/eslint-plugin",
"bugs": "https://github.com/aladdin-add/eslint-plugin/issues/",
"engines": {
"node": ">=8"
}
}