forked from stephenmathieson-boneyard/node-cpplint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 886 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
37
38
39
40
{
"name": "node-cpplint",
"description": "Validates C++ files with cpplint",
"version": "0.4.0",
"homepage": "https://github.com/stephenmathieson/node-cpplint",
"author": "Stephen Mathieson <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/stephenmathieson/node-cpplint.git"
},
"bugs": {
"url": "https://github.com/stephenmathieson/node-cpplint/issues"
},
"license": "WTFPL",
"bin": {
"node-cpplint": "bin/cpplint"
},
"engines": {
"node": "*"
},
"scripts": {
"test": "npm run lint && npm run vows",
"lint": "eslint **/*.js",
"vows": "vows --spec test/*.js"
},
"keywords": [
"cpplint",
"cpp",
"lint",
"code quality"
],
"dependencies": {
"commander": "~2.9.0",
"colors": "~1.1.2"
},
"devDependencies": {
"eslint": "^3.13.1",
"vows": "~0.8.1"
}
}