-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.61 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
{
"name": "chai-counter",
"description": "Count your chai assertions!",
"version": "1.0.0",
"homepage": "https://github.com/ingshtrom/chai-counter",
"keywords": [
"chaijs",
"assertions",
"counter",
"utilities",
"plugin"
],
"repository": {
"type": "git",
"url": "https://github.com/ingshtrom/chai-counter.git"
},
"bugs": {
"url": "https://github.com/ingshtrom/chai-counter/issues"
},
"author": {
"name": "Alex Hokanson",
"email": "alex.hokanson@mysticgear.com",
"url": "http://mysticgear.com/"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/ingshtrom/chai-counter/blob/master/LICENSE.txt"
}
],
"main": "./index.js",
"engines": {
"node": ">= 0.10.x"
},
"dependencies": {
"chai": "^1.9.1"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-clean": "^0.5.0",
"grunt-coffeelint": "^0.0.10",
"grunt-contrib-coffee": "^0.10.1",
"grunt-bower": "^0.14.0",
"grunt-contrib-copy": "^0.5.0",
"grunt-contrib-concat": "^0.5.0",
"mocha": "^1.21.4",
"grunt-saucelabs": "^8.3.1",
"grunt-contrib-connect": "^0.8.0",
"grunt-contrib-watch": "^0.6.1",
"coveralls": "^2.11.1",
"mocha-lcov-reporter": "^0.0.1"
},
"scripts": {
"pretest": "grunt test:setup",
"test": "mocha -c --reporter spec --bail --check-leaks pub/test/ && grunt test:browser:sauce",
"test-cov": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -c --reporter spec --bail pub/test/ && cat ./coverage/lcov.info | node ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
}
}