-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "@hackr/eslint-config-preact",
"version": "1.2.0",
"description": "developit's eslint config",
"main": "index.js",
"keywords": [
"eslint",
"eslint-config"
],
"files": [
"index.js"
],
"scripts": {
"test": "eslint index.js && ! eslint -c index.js tests/fail.js &>/dev/null && eslint -c index.js tests/pass.js && echo 'pass'",
"prepare": "npm test",
"release": "git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"node": true
}
},
"contributors": [
"Bill Neff <[email protected]>",
"Jason Miller <[email protected]>",
"Gabriel Nunes <[email protected]>"
],
"license": "GPL-3.0",
"repository": "developit/eslint-config-developit",
"dependencies": {
"babel-eslint": "^10.0.1",
"eslint-plugin-compat": "^2.1.0",
"eslint-plugin-jest": "^22.3.0",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-react": "^7.0.0"
},
"devDependencies": {
"eslint": "^5.15.1"
},
"peerDependencies": {
"eslint": ">=4"
}
}