-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.06 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
{
"name": "get-version",
"version": "1.1.3",
"description": "Get versions list for npm, node and iojs",
"main": "index.js",
"bin": {
"get-version": "./bin/get-version"
},
"scripts": {
"lint": "mod-standard",
"test": "lab -c",
"posttest": "npm run lint",
"coverage": "lab -r html -o coverage/index.html -r lcov -o coverage/lcov.info"
},
"keywords": [
"npm",
"node",
"version",
"iojs"
],
"author": "Alex Padgett <[email protected]>",
"maintainers": [
"Alex Padgett <[email protected]>",
"Jack Boberg <[email protected]>",
"Matt Hernandez <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/onmodulus/get-version.git"
},
"license": "MIT",
"dependencies": {
"lodash": "3.6.0",
"minimist": "1.1.1",
"q": "1.2.0",
"request": "2.54.0",
"require-dir": "0.3.0",
"semver": "4.3.1",
"winston": "0.9.0"
},
"devDependencies": {
"@modulus/standard": "0.2.x",
"code": "1.x.x",
"lab": "5.x.x",
"proxyquire": "1.4.0",
"sinon": "1.14.1"
}
}