-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 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
{
"name": "knockers",
"version": "0.0.0-semantically-released",
"description": "Slightly friendlier interface for nock",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/istanbul cover -x \"*[spec].js\" ./spec/support/runner.js",
"watch:test": "NODE_ENV=test ./node_modules/.bin/nodemon -w ./source -w ./spec ./node_modules/.bin/jasmine",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"husky": {
"hooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "bash ./bin/git/hooks/reject-forbidden-code",
"pre-push": "npm test"
}
},
"keywords": [
"nock",
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/timjnh/knockers.git"
},
"author": "Tim Jones",
"license": "MIT",
"devDependencies": {
"husky": "1.2.0",
"istanbul": "0.4.5",
"jasmine": "2.99.0",
"jasmine-reporters": "2.3.2",
"nodemon": "1.18.7",
"restling": "0.9.1",
"semantic-release": "4.3.5",
"validate-commit-msg": "2.14.0"
},
"dependencies": {
"nock": "9.2.3",
"q": "1.5.1"
},
"engines": {
"node": "12"
}
}