UNPKG

2.61 kBJSONView Raw
1{
2 "name": "now-pipeline",
3 "version": "1.9.0",
4 "description": "Single CI command to deploy new version to Zeit Now, including e2e tests and alias switch",
5 "author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
6 "bugs": "https://github.com/bahmutov/now-pipeline/issues",
7 "config": {
8 "pre-git": {
9 "commit-msg": "simple",
10 "pre-commit": [
11 "npm prune",
12 "npm run deps",
13 "npm test",
14 "npm run ban"
15 ],
16 "pre-push": [
17 "npm run secure",
18 "npm run license",
19 "npm run ban -- --all",
20 "npm run size"
21 ],
22 "post-commit": [],
23 "post-merge": []
24 }
25 },
26 "engines": {
27 "node": ">=6"
28 },
29 "files": [
30 "bin",
31 "src/*.js",
32 "!src/*-spec.js"
33 ],
34 "bin": {
35 "now-pipeline": "bin/now-pipeline.js",
36 "now-pipeline-list": "bin/list.js",
37 "now-pipeline-prune": "bin/prune.js"
38 },
39 "homepage": "https://github.com/bahmutov/now-pipeline#readme",
40 "keywords": [
41 "ci",
42 "now",
43 "test",
44 "tool",
45 "util",
46 "zeit"
47 ],
48 "license": "MIT",
49 "main": "src/",
50 "noScopeName": "now-pipeline",
51 "publishConfig": {
52 "registry": "http://registry.npmjs.org/"
53 },
54 "repository": {
55 "type": "git",
56 "url": "https://github.com/bahmutov/now-pipeline.git"
57 },
58 "scripts": {
59 "ban": "ban",
60 "deps": "deps-ok",
61 "issues": "git-issues",
62 "license": "license-checker --production --onlyunknown --csv",
63 "lint": "standard --verbose --fix src/*.js bin/*.js",
64 "pretest": "npm run lint",
65 "secure": "nsp check",
66 "size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
67 "test": "npm run unit",
68 "unit": "mocha src/*-spec.js",
69 "semantic-release": "semantic-release pre && npm publish && semantic-release post"
70 },
71 "devDependencies": {
72 "ban-sensitive-files": "1.9.2",
73 "deps-ok": "1.2.1",
74 "git-issues": "1.3.1",
75 "github-post-release": "1.13.1",
76 "license-checker": "6.0.0",
77 "mocha": "3.5.3",
78 "next-update-travis": "1.7.1",
79 "nsp": "2.8.1",
80 "pre-git": "3.17.0",
81 "semantic-release": "6.3.6",
82 "simple-commit-message": "3.3.2",
83 "standard": "10.0.3"
84 },
85 "dependencies": {
86 "check-more-types": "2.24.0",
87 "console.table": "0.9.1",
88 "cross-spawn": "5.1.0",
89 "debug": "2.6.9",
90 "lazy-ass": "1.6.0",
91 "minimist": "1.2.0",
92 "moment": "2.20.1",
93 "node-sentry-error-reporter": "1.8.0",
94 "now-client": "0.7.0",
95 "pkgd": "1.1.2",
96 "ramda": "0.25.0"
97 },
98 "release": {
99 "analyzeCommits": "simple-commit-message",
100 "generateNotes": "github-post-release"
101 }
102}
\No newline at end of file