-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.33 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "ambientlight",
"version": "0.1.2",
"description": "",
"main": "build.js",
"files": [
"build.json",
"ambientlight"
],
"scripts": {
"test": "eslint index.js",
"compile": "clang -o ambientlight ambientlight.mm -framework IOKit -framework CoreFoundation",
"build": "npm run compile && babel index.js > build.js",
"prepublish": "npm run build"
},
"author": "Jarmo Isotalo",
"repository": {
"type": "git",
"url": "git://github.com/jamox/ambientlight.git"
},
"bugs": {
"url": "https://github.com/jamox/ambientlight/issues"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-preset-es2015": "^6.9.0",
"eslint": "^3.1.1",
"eslint-config-standard": "^5.3.5",
"eslint-plugin-promise": "^2.0.0",
"eslint-plugin-standard": "^2.0.0"
},
"dependencies": {
"execa": "^0.4.0"
},
"eslintConfig": {
"extends": "standard",
"rules": {
"yoda": 0,
"semi": [
2,
"never"
],
"no-undef": 0,
"no-unused-vars": 2,
"no-extra-semi": 2,
"semi-spacing": [
2,
{
"before": false,
"after": true
}
]
}
}
}