-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
126 lines (126 loc) · 3.32 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
{
"name": "gt",
"description": "JavaScript native QUnit runner with code coverage and multiple extensions",
"version": "0.0.0-semantic-release",
"author": {
"name": "Gleb Bahmutov",
"email": "gleb.bahmutov@gmail.com",
"website": "http://glebbahmutov.com"
},
"bin": {
"gt": "./bin/gt.js"
},
"bugs": {
"url": "https://github.com/bahmutov/gt/issues"
},
"config": {
"pre-git": {
"commit-msg": "validate-commit-msg",
"pre-commit": [
"npm run build",
"npm run mocha",
"npm run unit",
"npm run e2e",
"npm run bdd"
],
"pre-push": [
"npm install",
"npm run build"
],
"post-commit": "npm version",
"post-merge": []
}
},
"contributors": [],
"dependencies": {
"allong.es": "0.14.0",
"amdefine": "1.0.1",
"async": "1.5.0",
"check-types": "1.4.0",
"cli-color": "1.2.0",
"coffee-script": "1.6.3",
"console.json": "0.2.1",
"custom-logger": "0.3.1",
"glob": "5.0.15",
"istanbul": "0.4.0",
"lazy-ass": "1.0.0",
"lodash": "3.10.1",
"nodewatch": "0.3.2",
"optimist": "0.6.1",
"optional-color-logger": "0.0.6",
"q": "1.5.1",
"quote": "0.4.0",
"sprintf": "0.1.5",
"untested": "0.1.5",
"update-notifier": "0.5.0"
},
"devDependencies": {
"assert": "1.3.0",
"bad-line": "0.1.1",
"condition-node-version": "1.3.0",
"coveralls": "2.11.4",
"cute-stack": "1.2.1",
"grunt": "0.4.5",
"grunt-bump": "0.6.0",
"grunt-cli": "0.1.13",
"grunt-complexity": "0.3.0",
"grunt-contrib-jshint": "0.11.3",
"grunt-deps-ok": "0.8.0",
"grunt-jsonlint": "1.0.6",
"grunt-lineending": "0.2.4",
"grunt-nice-package": "0.9.4",
"grunt-readme": "0.4.5",
"jsc": "0.3.11",
"jshint-stylish": "2.0.1",
"matchdep": "1.0.0",
"mocha": "2.3.3",
"pre-git": "3.17.1",
"semantic-release": "4.3.5",
"time-grunt": "1.2.2"
},
"engines": {
"node": ">= 0.8.0"
},
"homepage": "https://github.com/bahmutov/gt",
"keywords": [
"code coverage",
"coverage",
"istanbul",
"javascript",
"js",
"node",
"qunit",
"testing",
"unit test",
"unit testing"
],
"license": "MIT",
"main": "./gt.js",
"preferGlobal": true,
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/gt.git"
},
"scripts": {
"bdd": "node bin/gt.js examples/bdd/spec.js --bdd",
"build": "grunt",
"commit": "commit-wizard",
"complexity": "node ./node_modules/jsc gt.js src/assertions/*.js src/utils/*.js src/*.js src/UnitTest/*.js --colors false",
"cover": "istanbul cover gt tests",
"coveralls": "cat cover/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"doc": "xplain --title gt -v 0.8.* -i src/assertions/*.js",
"e2e": "node bin/gt.js tests/all.js --colors true --output",
"mocha": "node node_modules/mocha/bin/_mocha tests/mocha -R spec",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "npm run mocha && npm run unit && npm run e2e",
"unit": "node bin/gt.js ./examples/all.js --colors true --output"
},
"release": {
"verifyConditions": {
"path": "condition-node-version",
"node": "4"
},
"analyzeCommits": "simple-commit-message"
}
}