UNPKG

2.19 kBJSONView Raw
1{
2 "name": "eslint-plugin-extra-rules",
3 "description": "My custom eslint rules in addition to the ones provided at http://eslint.org/",
4 "version": "0.0.0-development",
5 "author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
6 "bugs": {
7 "url": "https://github.com/bahmutov/eslint-rules/issues"
8 },
9 "config": {
10 "pre-git": {
11 "commit-msg": "simple",
12 "pre-commit": [
13 "npm run build",
14 "npm test",
15 "npm run no-long-files"
16 ],
17 "pre-push": [
18 "npm run size"
19 ],
20 "post-commit": [],
21 "post-merge": []
22 },
23 "next-update": {
24 "skip": []
25 }
26 },
27 "contributors": [
28 "Eric Wooley <ericwooley@gmail.com>"
29 ],
30 "dependencies": {
31 "console-assert": "1.0.0",
32 "espree": "3.0.0-alpha-1",
33 "quote": "0.4.0"
34 },
35 "devDependencies": {
36 "eslint": "1.10.3",
37 "git-issues": "1.3.1",
38 "grunt": "0.4.5",
39 "grunt-cli": "0.1.13",
40 "grunt-contrib-jshint": "0.12.0",
41 "grunt-deps-ok": "0.9.0",
42 "grunt-eslint": "17.3.2",
43 "grunt-filenames": "0.4.0",
44 "grunt-jscs": "3.0.1",
45 "grunt-nice-package": "0.10.4",
46 "gt": "0.10.0",
47 "jshint-summary": "0.4.0",
48 "matchdep": "1.0.1",
49 "next-update-travis": "1.7.1",
50 "pre-git": "3.17.1",
51 "semantic-release": "6.3.6"
52 },
53 "engines": {
54 "node": "> 0.10.*"
55 },
56 "files": [
57 "*.js",
58 "!Gruntfile.js",
59 "src"
60 ],
61 "homepage": "https://github.com/bahmutov/eslint-rules",
62 "keywords": [
63 "custom",
64 "eslint",
65 "javascript",
66 "lint",
67 "rule",
68 "rules"
69 ],
70 "license": "MIT",
71 "main": "index.js",
72 "release": {
73 "analyzeCommits": "simple-commit-message"
74 },
75 "repository": {
76 "type": "git",
77 "url": "https://github.com/bahmutov/eslint-rules.git"
78 },
79 "scripts": {
80 "build": "grunt",
81 "commit": "git-issues && commit-wizard",
82 "issues": "git-issues",
83 "no-long-files": "eslint --rulesdir . -c test/long-file.json test/long-file.js",
84 "semantic-release": "semantic-release pre && npm publish && semantic-release post",
85 "size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
86 "test": "gt test/test.js test/is-constant.js"
87 }
88}