forked from randallagordon/node-nma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.18 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
{
"name": "nma",
"description": "Notify My Android library with CLI goodness",
"version": "0.2.2",
"homepage": "https://github.com/randallagordon/node-nma",
"license": "MIT",
"author": "Randall A. Gordon <[email protected]> (http://randallagordon.com/)",
"contributors": [
{
"name": "Jesse Keane",
"email": "<[email protected]>"
}
],
"repository": {
"type": "git",
"url": "git://github.com/randallagordon/node-nma.git"
},
"keywords": [
"notification",
"android",
"nma",
"utility"
],
"main": "lib/nma.js",
"bin": {
"nma": "bin/nma"
},
"dependencies": {
"commander": "^2.5.0",
"request": "^2.46.0"
},
"devDependencies": {
"chai": "^1.9.2",
"coveralls": "^2.11.2",
"hoek": "^2.6.0",
"jscs": "^1.7.1",
"jshint": "^2.5.6",
"lab": "^5.0.1",
"sinon": "^1.10.3"
},
"optionalDependencies": {},
"engines": {
"node": "*"
},
"scripts": {
"lint": "jshint lib bin/nma test",
"style": "jscs lib bin/nma test",
"test": "lab -t 100",
"test-coveralls": "npm test && lab -t 100 -r lcov | coveralls",
"ci": "npm run lint && npm run style && npm run test-coveralls"
}
}