-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
45 lines (45 loc) · 943 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
41
42
43
44
45
{
"name": "node-cec",
"version": "0.1.3",
"description": "cec-client wrapper",
"author": "Patrick Wozniak <[email protected]>",
"main": "index.js",
"keywords": [
"cec",
"hdmi"
],
"scripts": {
"lint": "coffeelint src/",
"pretest": "npm run lint",
"test": "echo 'no tests'",
"prebuild": "npm run test",
"build": "coffee -o lib/ -c src/",
"watch": "coffee -o lib/ -cw src/",
"prepublish": "npm run build"
},
"devDependencies": {
"coffee-script": "1.10.0",
"coffeelint": "1.15.7"
},
"repository": {
"type": "git",
"url": "git://github.com/patlux/node-cec.git"
},
"license": "MIT",
"coffeelintConfig": {
"indentation": {
"level": "error",
"value": 2
},
"line_endings": {
"value": "unix",
"level": "error"
},
"max_line_length": {
"level": "warn"
},
"no_trailing_whitespace": {
"level": "warn"
}
}
}