-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 950 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
{
"name": "npm-versions",
"description": "Get all the semantically versioned releases of an npm package.",
"version": "2.0.2",
"author": {
"name": "Jonathan Ong",
"email": "[email protected]",
"url": "http://jongleberry.com",
"twitter": "https://twitter.com/jongleberry"
},
"license": "MIT",
"repository": "github-utils/npm-versions",
"dependencies": {
"debug": "*",
"semver": "4"
},
"devDependencies": {
"istanbul-harmony": "0",
"co": "^3.0.0",
"mocha": "^1.17"
},
"scripts": {
"test": "mocha --harmony-generators --reporter spec",
"test-cov": "node --harmony-generators node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --reporter dot",
"test-travis": "node --harmony-generators node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- --reporter dot"
},
"files": [
"index.js"
],
"keywords": [
"npm",
"versions"
]
}