UNPKG

3.24 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": "1.4.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": "validate-commit-msg",
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.11.0",
29 "chdir-promise": "0.2.1",
30 "check-more-types": "2.22.0",
31 "cli-color": "1.1.0",
32 "console.json": "0.2.1",
33 "console.table": "0.7.0",
34 "debug": "2.2.0",
35 "deps-ok": "1.1.0",
36 "easy-table": "0.3.0",
37 "is-online": "5.1.2",
38 "lazy-ass": "1.5.0",
39 "lodash": "3.10.1",
40 "npm-utils": "1.7.1",
41 "optimist": "0.6.1",
42 "q": "2.0.3",
43 "quote": "0.4.0",
44 "request": "2.65.0",
45 "semver": "5.3.0",
46 "update-notifier": "0.5.0"
47 },
48 "devDependencies": {
49 "coveralls": "2.11.4",
50 "git-issues": "1.2.0",
51 "grunt": "0.4.5",
52 "grunt-bump": "0.7.3",
53 "grunt-cli": "0.1.13",
54 "grunt-complexity": "0.3.0",
55 "grunt-contrib-jshint": "0.11.3",
56 "grunt-deps-ok": "0.9.0",
57 "grunt-help": "0.5.0",
58 "grunt-jshint-solid": "0.1.1",
59 "grunt-jsonlint": "1.1.0",
60 "grunt-lineending": "1.0.0",
61 "grunt-nice-package": "0.10.2",
62 "grunt-readme": "0.4.5",
63 "gt": "0.10.0",
64 "jshint-stylish": "2.2.1",
65 "matchdep": "1.0.1",
66 "mocha": "3.0.2",
67 "mockery": "1.7.0",
68 "pre-git": "1.4.0",
69 "publish": "0.6.0",
70 "semantic-release": "4.3.5",
71 "time-grunt": "1.4.0"
72 },
73 "engines": {
74 "node": ">= 0.8.0"
75 },
76 "files": [
77 "bin",
78 "index.js",
79 "src",
80 "!src/test"
81 ],
82 "homepage": "https://github.com/bahmutov/next-update",
83 "keywords": [
84 "javascript",
85 "node",
86 "npm",
87 "testing",
88 "update",
89 "version"
90 ],
91 "license": "MIT",
92 "main": "index.js",
93 "next-update-stats": "http://next-update.herokuapp.com",
94 "preferGlobal": true,
95 "readmeFilename": "README.md",
96 "repository": {
97 "type": "git",
98 "url": "https://github.com/bahmutov/next-update.git"
99 },
100 "scripts": {
101 "2npm": "publish",
102 "build": "grunt",
103 "commit": "git-issues && commit-wizard",
104 "coveralls": "cat cover/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
105 "dont-break": "dont-break",
106 "e2e": "npm run install-for-tests && gt test/*.coffee --output",
107 "install-for-tests": "cd test/test-next-updater && npm install",
108 "issues": "git-issues",
109 "limited": "gt --filter 'allow major' --output src/test/*.coffee",
110 "mocha": "mocha test/*-spec.js",
111 "posttest": "npm run mocha && npm run e2e",
112 "self-update": "node bin/next-update.js -k true",
113 "semantic-release": "semantic-release pre && npm publish && semantic-release post",
114 "size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
115 "test": "npm run build && npm run unit",
116 "unit": "gt src/test/*.js src/test/*.coffee --output"
117 }
118}
\No newline at end of file