-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 823 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 823 Bytes
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
{
"name": "eslint-config-clockwork",
"version": "0.0.8",
"license": "MIT",
"description": "ESLint shared config for Clockwork",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ClockworkNet/eslint-config-clockwork.git"
},
"scripts": {
"patch": "npm version patch && git push && npm publish",
"minor": "npm version minor && git push && npm publish",
"major": "npm version major && git push && npm publish",
"precommit": "./node_modules/.bin/eslint .",
"start": "./node_modules/.bin/eslint .",
"test": "node index.test.js"
},
"peerDependencies": {
"eslint": "^3.12.2"
},
"devDependencies": {
"assert": "^1.4.1",
"eslint": "^3.12.2",
"husky": "^0.12.0"
},
"engines": {
"node": ">=v6.9.2",
"npm": ">=3.10.9"
}
}