This repository has been archived by the owner on May 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.79 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "serverless-testing-library",
"description": "serverless-testing-library is a small library to make integration or smoke testing your API's easier.",
"version": "0.0.0-development",
"keywords": [
"serverless",
"API",
"testing",
"aws",
"mocha",
"jest"
],
"repository": {
"type": "git",
"url": "https://github.com/janders223/serverless-testing-library.git"
},
"homepage": "https://github.com/janders223/serverless-testing-library",
"bugs": {
"url": "https://github.com/janders223/serverless-testing-library/issues"
},
"main": "src/index.js",
"scripts": {
"commitmsg": "commitlint -E GIT_PARAMS",
"lint": "eslint src/**/*.js",
"semantic-release": "semantic-release",
"test": "CI=TRAVIS NODE_ENV=test jest",
"test:ci": "CI=TRAVIS NODE_ENV=test jest --ci --coverage",
"travis-deploy-once": "travis-deploy-once"
},
"author": {
"name": "Jim Anders",
"email": "jim@janders223.com"
},
"license": "MIT",
"dependencies": {
"body-parser": "1.18.3",
"express": "4.16.4",
"jest-diff": "23.6.0",
"jest-matcher-utils": "23.6.0",
"js-yaml": "3.13.1",
"supertest": "3.3.0"
},
"devDependencies": {
"@commitlint/cli": "7.2.1",
"@commitlint/config-conventional": "7.1.2",
"babel-eslint": "10.0.1",
"eslint": "5.7.0",
"eslint-config-prettier": "3.1.0",
"eslint-plugin-prettier": "3.0.0",
"husky": "1.1.2",
"jest": "23.6.0",
"lint-staged": "7.3.0",
"prettier": "1.14.3",
"semantic-release": "^15.10.3",
"travis-deploy-once": "^5.0.9"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}