-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.16 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
{
"version": "1.1.0",
"scripts": {
"clean": "rimraf dist",
"prebuild": "run-s clean",
"build": "rollup --config",
"test": "mocha --opts mocha.opts",
"prepublishOnly": "run-p --aggregate-output --print-name test build"
},
"husky": {
"hooks": {
"pre-commit": "run-s prepublishOnly && lint-staged"
}
},
"main": "dist/bundle.js",
"files": [
"dist"
],
"dependencies": {},
"devDependencies": {
"hamjest": "^3.1.0",
"husky": "^1.0.0-rc.1",
"lint-staged": "^8.1.0",
"mocha": "^5.0.0",
"npm-run-all": "^4.1.2",
"prettier": "1.12.1",
"reify": "^0.13.7",
"rimraf": "^2.6.2",
"rollup": "^0.57.1",
"standard-version": "^4.4.0",
"testdouble": "^3.6.0"
},
"peerDependencies": {
"testdouble": ">= 1"
},
"name": "testdouble-only-when",
"description": "Rehearse strict behavior with testdouble.js",
"keywords": [
"tdd",
"bdd",
"mock",
"stub",
"spy",
"test double",
"testdouble",
"sinon"
],
"author": "Alex Bepple <[email protected]> (http://alex.bepple.de)",
"license": "MIT",
"repository": "https://github.com/alexbepple/testdouble-only-when"
}