UNPKG

2.15 kBJSONView Raw
1{
2 "name": "travis-deploy-once",
3 "description": "Run a deployment script only once in the Travis test matrix",
4 "version": "5.0.7",
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": "^2.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": "^2.9.6",
41 "cz-conventional-changelog": "^2.0.0",
42 "nock": "^9.0.18",
43 "nyc": "^12.0.1",
44 "proxyquire": "^2.0.0",
45 "semantic-release": "^15.0.0",
46 "sinon": "^6.0.0",
47 "xo": "^0.22.0"
48 },
49 "engines": {
50 "node": ">=6"
51 },
52 "files": [
53 "bin",
54 "lib",
55 "babel-register.js",
56 "index.js",
57 "cli.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 "index.js",
72 "cli.js"
73 ],
74 "reporter": [
75 "json",
76 "text",
77 "html"
78 ],
79 "all": true
80 },
81 "prettier": {
82 "printWidth": 120,
83 "trailingComma": "es5"
84 },
85 "repository": {
86 "type": "git",
87 "url": "https://github.com/semantic-release/travis-deploy-once.git"
88 },
89 "scripts": {
90 "cm": "git-cz",
91 "codecov": "codecov -f coverage/coverage-final.json",
92 "lint": "xo",
93 "pretest": "npm run lint",
94 "semantic-release": "semantic-release",
95 "test": "nyc ava -v"
96 },
97 "xo": {
98 "prettier": true,
99 "space": true
100 }
101}