UNPKG

3.65 kBJSONView Raw
1{
2 "name": "next-update",
3 "description": "Tests if module's dependencies can be updated to the newer version without breaking the tests",
4 "version": "3.0.0",
5 "author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
6 "bin": {
7 "next-update": "bin/next-update.js"
8 },
9 "bugs": {
10 "url": "https://github.com/bahmutov/next-update/issues"
11 },
12 "config": {
13 "pre-git": {
14 "commit-msg": "simple",
15 "pre-commit": [
16 "npm run build",
17 "npm test"
18 ],
19 "pre-push": [
20 "npm run size"
21 ],
22 "post-commit": [],
23 "post-merge": []
24 }
25 },
26 "contributors": [],
27 "dependencies": {
28 "changed-log": "0.13.0",
29 "chdir-promise": "0.4.0",
30 "check-more-types": "2.24.0",
31 "cli-color": "1.2.0",
32 "console.json": "0.2.1",
33 "console.table": "0.8.0",
34 "debug": "2.6.8",
35 "deps-ok": "1.2.0",
36 "easy-table": "0.3.0",
37 "execa": "0.7.0",
38 "is-online": "5.1.2",
39 "lazy-ass": "1.5.0",
40 "lodash": "3.10.1",
41 "npm-utils": "1.7.1",
42 "optimist": "0.6.1",
43 "q": "2.0.3",
44 "quote": "0.4.0",
45 "ramda": "0.24.1",
46 "request": "2.74.0",
47 "semver": "5.3.0",
48 "update-notifier": "0.5.0"
49 },
50 "devDependencies": {
51 "condition-node-version": "1.3.0",
52 "coveralls": "2.11.4",
53 "git-issues": "1.3.1",
54 "grunt": "0.4.5",
55 "grunt-bump": "0.7.3",
56 "grunt-cli": "0.1.13",
57 "grunt-complexity": "0.3.0",
58 "grunt-deps-ok": "0.9.0",
59 "grunt-help": "0.5.0",
60 "grunt-jsonlint": "1.1.0",
61 "grunt-lineending": "1.0.0",
62 "grunt-nice-package": "0.10.4",
63 "grunt-readme": "0.4.5",
64 "gt": "0.10.0",
65 "matchdep": "1.0.1",
66 "mocha": "3.4.2",
67 "mockery": "1.7.0",
68 "pre-git": "3.15.0",
69 "publish": "0.6.0",
70 "semantic-release": "6.3.6",
71 "simple-commit-message": "3.0.2",
72 "snap-shot": "2.17.0",
73 "standard": "10.0.2",
74 "stop-build": "1.1.0",
75 "time-grunt": "1.4.0"
76 },
77 "engines": {
78 "node": ">= 0.8.0"
79 },
80 "files": [
81 "bin",
82 "index.js",
83 "src",
84 "!src/*-spec.js",
85 "!src/test"
86 ],
87 "homepage": "https://github.com/bahmutov/next-update",
88 "keywords": [
89 "javascript",
90 "node",
91 "npm",
92 "testing",
93 "update",
94 "version"
95 ],
96 "license": "MIT",
97 "main": "index.js",
98 "next-update-stats": "http://next-update.herokuapp.com",
99 "preferGlobal": true,
100 "readmeFilename": "README.md",
101 "release": {
102 "verifyConditions": {
103 "path": "condition-node-version",
104 "node": "6"
105 },
106 "analyzeCommits": "simple-commit-message"
107 },
108 "repository": {
109 "type": "git",
110 "url": "https://github.com/bahmutov/next-update.git"
111 },
112 "scripts": {
113 "2npm": "publish",
114 "build": "grunt",
115 "commit": "git-issues && commit-wizard",
116 "coveralls": "cat cover/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
117 "dont-break": "dont-break",
118 "e2e": "npm run install-for-tests && gt test/*.coffee --output",
119 "install-for-tests": "cd test/test-next-updater && npm install",
120 "issues": "git-issues",
121 "limited": "gt --filter 'allow major' --output src/test/*.coffee",
122 "lint": "standard --verbose --fix src/*.js src/**/*.js bin/*.js test/*.js",
123 "mocha": "mocha src/*-spec.js test/*-spec.js",
124 "posttest": "npm run mocha && npm run e2e",
125 "prebuild": "npm run lint",
126 "pretest": "npm run build",
127 "self-update": "node bin/next-update.js -k true",
128 "semantic-release": "semantic-release pre && npm publish && semantic-release post",
129 "size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
130 "test": "npm run unit",
131 "unit": "gt src/test/*.js src/test/*.coffee --output"
132 }
133}
\No newline at end of file