This repository has been archived by the owner on Dec 15, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
102 lines (102 loc) · 2.14 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "travis-deploy-once",
"description": "Run a deployment script only once in the Travis test matrix",
"version": "0.0.0-development",
"author": "Stephan Bönnemann <[email protected]>",
"ava": {
"require": [
"./babel-register"
]
},
"bin": {
"travis-deploy-once": "bin/travis-deploy-once.js"
},
"bugs": {
"url": "https://github.com/semantic-release/travis-deploy-once/issues"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"chalk": "^2.1.0",
"execa": "^1.0.0",
"got": "^9.1.0",
"p-retry": "^3.0.0",
"semver": "^5.4.1",
"update-notifier": "^2.3.0",
"url-join": "^4.0.0",
"yargs": "^12.0.1"
},
"devDependencies": {
"ava": "^0.25.0",
"clear-module": "^3.0.0",
"codecov": "^3.0.0",
"commitizen": "^3.0.0",
"cz-conventional-changelog": "^2.0.0",
"nock": "^10.0.0",
"nyc": "^13.1.0",
"proxyquire": "^2.0.0",
"semantic-release": "^15.0.0",
"sinon": "^7.1.1",
"xo": "^0.23.0"
},
"engines": {
"node": ">=6"
},
"files": [
"bin",
"lib",
"babel-register.js",
"cli.js",
"index.js"
],
"homepage": "https://github.com/semantic-release/travis-deploy-once#readme",
"keywords": [
"after",
"deploy",
"success",
"travis"
],
"license": "MIT",
"main": "index.js",
"nyc": {
"include": [
"lib/**/*.js",
"babel-register.js",
"cli.js",
"index.js"
],
"reporter": [
"json",
"text",
"html"
],
"all": true
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"repository": {
"type": "git",
"url": "https://github.com/semantic-release/travis-deploy-once.git"
},
"scripts": {
"cm": "git-cz",
"codecov": "codecov -f coverage/coverage-final.json",
"lint": "xo",
"pretest": "npm run lint",
"semantic-release": "semantic-release",
"test": "nyc ava -v"
},
"xo": {
"prettier": true,
"space": true
}
}