-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.13 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
{
"name": "jscs-clang-reporter",
"version": "1.1.11",
"description": "Reporter for jscs that follows clang error style",
"homepage": "https://github.com/cappuccino/jscs-clang-reporter",
"keywords": [
"JSCS",
"reporter"
],
"contributors": [
"Aparajita Fishman (http://www.aparajita.com)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cappuccino/jscs-clang-reporter.git"
},
"bugs": "https://github.com/cappuccino/jscs-clang-reporter/issues",
"engines": {
"node": ">=0.10.0"
},
"main": "lib/index.js",
"scripts": {
"lint": "eslint --rulesdir node_modules/eslint-config-cappuccino/lib/rules lib && jscs lib",
"test": "npm run lint && node test/test.js",
"generate-fixtures": "node test/test.js generate",
"postversion": "git push && git push --tags && npm publish"
},
"dependencies": {
"chalk": "^1.1.0",
"os-homedir": "^1.0.1",
"path-exists": "^2.0.0"
},
"devDependencies": {
"capture-stream": "^0.1.1",
"eslint": "^2.3.0",
"eslint-config-cappuccino": "^1.3.2",
"jscs": "^2.11.0",
"jscs-cappuccino": "^1.1.0"
}
}