1 | {
|
2 | "name": "travis-deploy-once",
|
3 | "description": "Run a deployment script only once in the Travis test matrix",
|
4 | "version": "5.0.11",
|
5 | "author": "Stephan Bönnemann <stephan@boennemann.me>",
|
6 | "ava": {
|
7 | "require": [
|
8 | "./babel-register"
|
9 | ]
|
10 | },
|
11 | "bin": {
|
12 | "travis-deploy-once": "bin/travis-deploy-once.js"
|
13 | },
|
14 | "bugs": {
|
15 | "url": "https://github.com/semantic-release/travis-deploy-once/issues"
|
16 | },
|
17 | "config": {
|
18 | "commitizen": {
|
19 | "path": "cz-conventional-changelog"
|
20 | }
|
21 | },
|
22 | "dependencies": {
|
23 | "@babel/core": "^7.0.0",
|
24 | "@babel/polyfill": "^7.0.0",
|
25 | "@babel/preset-env": "^7.0.0",
|
26 | "@babel/register": "^7.0.0",
|
27 | "chalk": "^2.1.0",
|
28 | "execa": "^1.0.0",
|
29 | "got": "^9.1.0",
|
30 | "p-retry": "^3.0.0",
|
31 | "semver": "^5.4.1",
|
32 | "update-notifier": "^2.3.0",
|
33 | "url-join": "^4.0.0",
|
34 | "yargs": "^12.0.1"
|
35 | },
|
36 | "devDependencies": {
|
37 | "ava": "^0.25.0",
|
38 | "clear-module": "^3.0.0",
|
39 | "codecov": "^3.0.0",
|
40 | "commitizen": "^3.0.0",
|
41 | "cz-conventional-changelog": "^2.0.0",
|
42 | "nock": "^10.0.0",
|
43 | "nyc": "^13.1.0",
|
44 | "proxyquire": "^2.0.0",
|
45 | "semantic-release": "^15.0.0",
|
46 | "sinon": "^7.1.1",
|
47 | "xo": "^0.23.0"
|
48 | },
|
49 | "engines": {
|
50 | "node": ">=6"
|
51 | },
|
52 | "files": [
|
53 | "bin",
|
54 | "lib",
|
55 | "babel-register.js",
|
56 | "cli.js",
|
57 | "index.js"
|
58 | ],
|
59 | "homepage": "https://github.com/semantic-release/travis-deploy-once#readme",
|
60 | "keywords": [
|
61 | "after",
|
62 | "deploy",
|
63 | "success",
|
64 | "travis"
|
65 | ],
|
66 | "license": "MIT",
|
67 | "main": "index.js",
|
68 | "nyc": {
|
69 | "include": [
|
70 | "lib/**/*.js",
|
71 | "babel-register.js",
|
72 | "cli.js",
|
73 | "index.js"
|
74 | ],
|
75 | "reporter": [
|
76 | "json",
|
77 | "text",
|
78 | "html"
|
79 | ],
|
80 | "all": true
|
81 | },
|
82 | "prettier": {
|
83 | "printWidth": 120,
|
84 | "trailingComma": "es5"
|
85 | },
|
86 | "repository": {
|
87 | "type": "git",
|
88 | "url": "https://github.com/semantic-release/travis-deploy-once.git"
|
89 | },
|
90 | "scripts": {
|
91 | "cm": "git-cz",
|
92 | "codecov": "codecov -f coverage/coverage-final.json",
|
93 | "lint": "xo",
|
94 | "pretest": "npm run lint",
|
95 | "semantic-release": "semantic-release",
|
96 | "test": "nyc ava -v"
|
97 | },
|
98 | "xo": {
|
99 | "prettier": true,
|
100 | "space": true
|
101 | }
|
102 | }
|