-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 987 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": "jscs-cappuccino",
"version": "1.1.0",
"description": "jscs plugin that provides a preset for Cappuccino",
"homepage": "https://github.com/cappuccino/jscs-cappuccino",
"keywords": [
"Cappuccino",
"jscs",
"jscsplugin",
"jscs-plugin",
"preset"
],
"author": "Aparajita Fishman (http://www.aparajita.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cappuccino/jscs-cappuccino.git"
},
"bugs": "https://github.com/cappuccino/jscs-cappuccino/issues",
"engines": {
"node": ">=4"
},
"main": "lib/index.js",
"scripts": {
"generate-fixtures": "node test/test.js generate",
"lint": "jscs lib test && eslint lib test",
"test": "npm run lint && node test/test.js",
"postversion": "git push && git push --tags && npm publish"
},
"devDependencies": {
"capture-stream": "^0.1.1",
"eslint": "^2.3.0",
"eslint-config-cappuccino": "^1.3.2",
"jscs": "^2.11.0"
}
}