-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.31 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
{
"name": "jasmine-spy-matchers",
"version": "2.2.0",
"description": "Additional spy matchers for the Jasmine BDD JavaScript testing library",
"keywords": [
"jasmine",
"matchers",
"spy",
"calls",
"mixin",
"extension"
],
"main": "index.js",
"engines": {
"node": ">=4"
},
"author": {
"name": "Alexey Kucherenko",
"url": "https://github.com/killmenot"
},
"license": "MIT",
"homepage": "https://github.com/killmenot/jasmine-spy-matchers#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/killmenot/jasmine-spy-matchers.git"
},
"bugs": {
"url": "https://github.com/killmenot/jasmine-spy-matchers/issues"
},
"scripts": {
"lint": "jshint spec",
"test": "jasmine --config=spec/support/jasmine.json",
"coverage": "nyc --reporter=html --reporter=text jasmine --config=spec/support/jasmine.json",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"pre-commit": [
"lint",
"test"
],
"nyc": {
"all": true,
"include": [
"lib/**/*.js"
]
},
"devDependencies": {
"coveralls": "^3.0.2",
"jasmine": "^3.3.1",
"jasmine-spec-reporter": "^4.2.1",
"jshint": "^2.9.7",
"nyc": "^13.1.0",
"pre-commit": "^1.2.2"
},
"peerDependencies": {
"jasmine": ">=3.0.0"
}
}