-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
55 lines (55 loc) · 1.49 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
{
"name": "fastly-promises",
"version": "0.0.0-semantically-released",
"description": "Promise based Fastly API client for Node.js",
"main": "src/index.js",
"scripts": {
"commit": "git-cz",
"check-coverage": "istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"test": "istanbul cover _mocha test",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/philippschulte/fastly-promises.git"
},
"keywords": [
"fastly",
"promises",
"api",
"client",
"cdn"
],
"author": "Philipp Schulte <[email protected]> (http://www.philippschulte.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/philippschulte/fastly-promises/issues"
},
"homepage": "https://github.com/philippschulte/fastly-promises#readme",
"engines": {
"node": ">=7.6.0"
},
"devDependencies": {
"codecov.io": "0.1.6",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.0.0",
"expect": "1.20.2",
"ghooks": "2.0.0",
"istanbul": "0.4.5",
"mocha": "3.5.0",
"nock": "9.1.6",
"semantic-release": "^6.3.6"
},
"dependencies": {
"axios": "0.16.2"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run test && npm run check-coverage"
}
}
}