-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.09 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
{
"name": "eslint-plugin-smartprocure",
"version": "2.0.3",
"description": "ESLint Plugins made for SmartProcure",
"main": "src/index.js",
"scripts": {
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"lint:ci": "npm run lint -- -o lint-results.json -f json",
"test": "jest src",
"test:watch": "npm test -- --watch",
"test:ci": "npm test -- --outputFile=test-results.json --json",
"fmt": "prettier --write src/**/*.*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartprocure/eslint-plugin-smartprocure.git"
},
"keywords": [
"eslint",
"eslint-plugin"
],
"author": "SmartProcure",
"license": "MIT",
"bugs": {
"url": "https://github.com/smartprocure/eslint-plugin-smartprocure/issues"
},
"homepage": "https://github.com/smartprocure/eslint-plugin-smartprocure#readme",
"devDependencies": {
"eslint-config-standard": "16.0.3",
"eslint-plugin-jest": "25.3.0",
"eslint-plugin-node": "11.1.0",
"jest": "27.3.1",
"prettier": "2.4.1"
},
"peerDependencies": {
"eslint": ">=0.8.0"
}
}