-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 1013 Bytes
/
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
{
"name": "eslint-config-cappuccino",
"version": "1.3.8",
"description": "Shareable config that provides Cappuccino style rules for eslint",
"homepage": "https://github.com/cappuccino/eslint-config-cappuccino",
"keywords": [
"Cappuccino",
"eslint",
"eslintconfig",
"eslint-config"
],
"contributors": [
"Aparajita Fishman (http://www.aparajita.com)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cappuccino/eslint-config-cappuccino.git"
},
"bugs": "https://github.com/cappuccino/eslint-config-cappuccino/issues",
"engines": {
"node": ">=4"
},
"main": "lib/index.js",
"scripts": {
"generate-fixtures": "node test/test.js generate",
"test": "eslint --rulesdir lib/rules --ignore-pattern test/fixtures test && node test/test.js",
"postversion": "git push && git push --tags && npm publish"
},
"devDependencies": {
"eslint": "^2.5.3"
},
"dependencies": {
"strip-json-comments": "^2.0.1"
}
}