-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
55 lines (55 loc) · 1.61 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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "eslint-config-synacor",
"version": "3.0.5",
"description": "ESLint configuration for Synacor javascript projects",
"main": "index.js",
"module": "src/index.js",
"keywords": [
"eslint",
"eslint-config"
],
"files": [
"index.js",
"test-rules.js",
"src/"
],
"scripts": {
"test": "npm run lint",
"lint": "npm run -s build && eslint src",
"build": "npm run clean && npm run buildMain && npm run buildTestRules",
"clean": "rm -f index.js test-rules.js",
"buildMain": "rollup -c rollup.config.js -f cjs -o $npm_package_main $npm_package_module",
"buildTestRules": "rollup -c rollup.config.js -f cjs -o test-rules.js src/test-rules.js",
"prepublishOnly": "npm run -s test && npm run -s build && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags",
"release": "npm publish",
"release-beta": "npm publish --tag beta"
},
"eslintConfig": {
"extends": "./index.js"
},
"author": "Jason Miller <[email protected]>",
"contributors": [
"Bill Neff <[email protected]>"
],
"bugs": {
"url": "https://github.com/synacor/eslint-config-synacor/issues"
},
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/synacor/eslint-config-synacor.git"
},
"dependencies": {
"babel-eslint": "^10.1.0",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-react": "^7.19.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"rollup": "^1.32.1",
"rollup-plugin-buble": "^0.19.8"
},
"peerDependencies": {
"eslint": "^4.0.0 || ^5.0.0 || ^6.00"
}
}