-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.1 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
{
"name": "is-nwjs-mac",
"description": "Check if your code is running on NW.js on Mac.",
"version": "1.0.0",
"author": {
"name": "sanemat",
"email": "[email protected]",
"url": "sane.jp"
},
"dependencies": {
"is-nwjs": "^1.0.1"
},
"devDependencies": {
"conventional-changelog": "^0.1.0-beta",
"david": "^6.1.6",
"eclint": "^0.2.6",
"eslint": "^1.0.0-rc",
"fixpack": "^2.2.0",
"globstar": "^1.0.0",
"touch": "^1.0.0"
},
"engines": {
"node": ">=0.10.0"
},
"files": [
"index.js"
],
"keywords": [
"NW.js",
"mac",
"node-webkit"
],
"license": "MIT",
"repository": "lyrictenor/node-is-nwjs-mac",
"scripts": {
"changelog": "touch changelog.md && conventional-changelog -i changelog.md --overwrite --preset angular",
"david": "david update",
"eclint": "globstar --ignore \"node_modules/**\" -- eclint check \"*.{js,yml,md,json}\"",
"eslint": "eslint .",
"fixpack": "fixpack",
"git:tag": "git tag v${npm_package_version}",
"lint": "npm run eclint && npm run eslint",
"verify": "npm run lint"
}
}