-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
34 lines (34 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
{
"name": "eslint-config-portsoc",
"version": "1.0.0",
"description": "University of Portsmouth, School of Computing, ECMAScript Code Conventions",
"main": "index.js",
"scripts": {
"preversion": "[ `git branch --show-current` = 'master' ] # current branch must be master",
"lint": "eslint -c index.js index.js tests/test.js",
"test": "npm run --silent lint && qunit tests/test.js"
},
"author": "PortSoC <[email protected]>",
"contributors": [
"Rich Boakes <[email protected]>",
"Jacek Kopecky <[email protected]>"
],
"license": "ISC",
"homepage": "https://github.com/portsoc/eslint-config-portsoc#readme",
"repository": "github:portsoc/eslint-config-portsoc",
"bugs": "https://github.com/portsoc/eslint-config-portsoc/issues",
"peerDependencies": {
"eslint": "^8.27.0"
},
"dependencies": {
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1"
},
"devDependencies": {
"eslint": "^8.27.0",
"qunit": "^2.13.0"
}
}