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