This repository has been archived by the owner on Jan 30, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.59 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
53
54
55
56
{
"name": "@semantic-release/condition-nsp",
"description": "verify no dependency is vulnerable before publishing",
"bugs": {
"url": "https://github.com/semantic-release/condition-nsp/issues"
},
"config": {
"nyc": {
"exclude": [
".test",
"node_modules"
]
}
},
"dependencies": {
"@semantic-release/error": "^1.0.0"
},
"devDependencies": {
"babel": "^6.5.0",
"coveralls": "^2.11.2",
"mkdirp": "^0.5.1",
"nyc": "^5.3.0",
"proxyquire": "^1.7.1",
"rimraf": "^2.5.1",
"semantic-release": "^8.0.0",
"standard": "^6.0.4",
"tap": "^5.4.2"
},
"homepage": "https://github.com/semantic-release/condition-nsp#readme",
"keywords": [
"publish",
"release",
"semantic-release"
],
"license": "MIT",
"main": "dist/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/semantic-release/condition-nsp.git"
},
"scripts": {
"build": "rimraf dist && mkdirp dist && babel src --out-dir dist",
"build:tests": "rimraf .test && mkdirp .test && babel test --out-dir .test",
"coverage": "nyc report",
"coverage:upload": "npm run coverage -- --reporter=lcovonly && coveralls < coverage/lcov.info",
"pretest:suite": "npm run build && npm run build:tests",
"test": "npm run test:style && npm run test:suite",
"test:style": "standard",
"test:suite": "nyc tap --no-cov .test/{scenarios,specs}/*.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"version": "0.0.0-development"
}