-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
98 lines (98 loc) · 2.29 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "eslint-plugin-extra-rules",
"description": "My custom eslint rules in addition to the ones provided at http://eslint.org/",
"version": "0.0.0-development",
"author": "Gleb Bahmutov <[email protected]>",
"bugs": {
"url": "https://github.com/bahmutov/eslint-rules/issues"
},
"config": {
"pre-git": {
"commit-msg": "simple",
"pre-commit": [
"npm run build",
"npm test",
"npm run no-long-files"
],
"pre-push": [
"npm run size"
],
"post-commit": [],
"post-merge": []
},
"next-update": {
"skip": []
}
},
"contributors": [
"Eric Wooley <[email protected]>"
],
"dependencies": {
"console-assert": "1.0.0",
"espree": "3.0.0-alpha-1",
"quote": "0.4.0"
},
"devDependencies": {
"eslint": "1.10.3",
"git-issues": "1.3.1",
"grunt": "0.4.5",
"grunt-cli": "0.1.13",
"grunt-contrib-jshint": "0.12.0",
"grunt-deps-ok": "0.9.0",
"grunt-eslint": "17.3.2",
"grunt-filenames": "0.4.0",
"grunt-jscs": "3.0.1",
"grunt-nice-package": "0.10.4",
"gt": "0.10.0",
"jshint-summary": "0.4.0",
"matchdep": "1.0.1",
"next-update-travis": "1.7.1",
"pre-git": "3.17.1",
"semantic-release": "15.1.4",
"travis-deploy-once": "4.4.1"
},
"engines": {
"node": "> 0.10.*"
},
"files": [
"*.js",
"!Gruntfile.js",
"src"
],
"homepage": "https://github.com/bahmutov/eslint-rules",
"keywords": [
"custom",
"eslint",
"javascript",
"lint",
"rule",
"rules"
],
"license": "MIT",
"main": "index.js",
"release": {
"analyzeCommits": {
"preset": "angular",
"releaseRules": [
{
"type": "break",
"release": "major"
}
]
}
},
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/eslint-rules.git"
},
"scripts": {
"build": "grunt",
"commit": "git-issues && commit-wizard",
"issues": "git-issues",
"no-long-files": "eslint --rulesdir . -c test/long-file.json test/long-file.js",
"semantic-release": "semantic-release",
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
"test": "gt test/test.js test/is-constant.js",
"travis-deploy-once": "travis-deploy-once"
}
}