-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.67 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
{
"name": "convexpress",
"version": "2.3.0",
"description": "Employ conventions to register express routes",
"main": "src/index.js",
"typings": "src/index.d.ts",
"files": [
"src"
],
"scripts": {
"prettier": "prettier \"src/**/*.js\" \"test/**/*.js\"",
"prettify": "yarn prettier --write",
"lint:prettier": "yarn prettier --list-different",
"lint:eslint": "eslint src test",
"lint": "yarn lint:prettier && yarn lint:eslint",
"test": "cross-env NODE_ENV=test mocha --exit -r test/setup.js \"test/**/*.js\"",
"coverage": "nyc -r html -r lcov -r text-summary npm run test",
"publish-coverage": "codecov"
},
"author": "Paolo Scanferla <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/staticdeploy/convexpress.git"
},
"bugs": {
"url": "https://github.com/staticdeploy/convexpress/issues"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"codecov": "^3.0.0",
"create-fs-tree": "^1.0.0",
"cross-env": "^5.1.4",
"eslint": "^5.10.0",
"eslint-config-prettier": "^3.3.0",
"husky": "^1.2.1",
"mocha": "^5.0.4",
"nyc": "^13.1.0",
"prettier": "^1.15.3",
"proxyquire": "^2.0.1",
"sinon": "^7.2.2",
"sinon-chai": "^3.3.0",
"supertest": "^3.0.0"
},
"dependencies": {
"@types/body-parser": "^1.16.8",
"@types/express": "^4.11.1",
"ajv": "^6.6.1",
"body-parser": "^1.18.2",
"express": "^4.16.3",
"glob": "^7.1.2",
"ramda": "^0.26.1",
"swagger-ui-express": "^4.0.2",
"type-is": "^1.6.16"
}
}