-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1009 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
35
36
37
38
{
"name": "npm-auto-snapshot",
"version": "0.5.3",
"description": "Bump your snapshot with the epoch. Keep snapshots out of production.",
"main": "src/app.js",
"scripts": {
"test": "nyc --reporter=lcov ./node_modules/.bin/mocha --reporter spec",
"ist": "istanbul cover --report html node_modules/.bin/_mocha -- --reporter spec",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"bin":{
"npm_update_snapshot":"./bin/npm_update_snapshot.js",
"npm_check_no_snapshots":"./bin/npm_check_no_snapshots.js"
},
"repository": {
"type": "git",
"url": "https://github.com/relativityboy/npm-auto-snapshot"
},
"keywords": [
"jenkins",
"nmp",
"snapshot",
"build scripts",
"prerelease",
"automatic",
"automated",
"lightweight"
],
"author": "Donovan Walker",
"license": "ISC",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.12.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"nyc": "^10.1.2"
}
}