-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.99 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
{
"name": "whiteglove",
"version": "0.8.4",
"author": "Ian Christian Myers <ian@iancmyers.com>",
"homepage": "https://github.com/iancmyers/whiteglove",
"description": "Find the dirty tests making a mess of your test suite",
"keywords": [
"tests",
"whiteglove",
"white glove",
"test utilities",
"test bisect",
"mocha bisect",
"test utils",
"captain planet",
"goplanet"
],
"license": "MIT",
"preferGlobal": true,
"bin": {
"whiteglove": "./bin/whiteglove.js"
},
"scripts": {
"test": "npm run lint && mocha --compilers js:babel-register",
"cover": "babel-istanbul cover ./node_modules/.bin/_mocha",
"coveralls": "npm run cover && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"build": "babel src --out-dir lib",
"watch": "babel src --out-dir lib -w",
"lint": "eslint . --ignore-path .gitignore",
"changelog": "git log `git describe --tags --abbrev=0`..HEAD --oneline --pretty=format:'* %s' | pbcopy && $EDITOR --wait CHANGELOG.md",
"preversion": "npm test && npm run build && npm run changelog && git add CHANGELOG.md",
"postversion": "git push origin HEAD && git push origin HEAD --tags && npm publish"
},
"bugs": {
"url": "https://github.com/iancmyers/whiteglove/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/iancmyers/whiteglove.git"
},
"dependencies": {
"chalk": "^1.1.3",
"char-spinner": "^1.0.1",
"chunk": "0.0.2",
"object-assign": "^4.1.0",
"optionator": "^0.8.1",
"pluralize": "^4.0.0",
"recursive-readdir": "^2.0.0",
"winston": "^2.2.0",
"yargs": "^8.0.1"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-istanbul": "^0.12.1",
"babel-preset-es2015": "^6.14.0",
"babel-register": "^6.14.0",
"chai": "^3.5.0",
"coveralls": "^2.11.12",
"eslint": "^3.5.0",
"eslint-config-airbnb-base": "^7.1.0",
"eslint-plugin-import": "^1.15.0",
"mocha": "^3.0.2",
"sinon": "^2.1.0"
}
}