-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
53 lines (53 loc) · 1.32 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
{
"name": "schm-express",
"version": "0.4.1",
"description": "Express middlewares using schm",
"license": "MIT",
"repository": "https://github.com/diegohaz/schm/tree/master/packages/schm-express",
"main": "dist/index.js",
"author": {
"name": "Diego Haz",
"email": "[email protected]",
"url": "https://github.com/diegohaz"
},
"engines": {
"node": ">=6"
},
"files": [
"dist"
],
"scripts": {
"test": "jest",
"coverage": "npm test -- --coverage",
"postcoverage": "opn coverage/lcov-report/index.html",
"lint": "eslint src test",
"flow": "flow",
"docs": "documentation readme src --section=API",
"clean": "rimraf dist",
"prebuild": "npm run docs && npm run clean",
"build": "babel src -d dist",
"preversion": "npm run lint && npm test && npm run build",
"postpublish": "npm run clean"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [
"schm"
],
"dependencies": {
"schm": "^0.4.1"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"body-parser": "^1.18.2",
"documentation": "vicapow/documentation#a560a4373c301e37251f13e045811932c9c4ac01",
"eslint": "^5.5.0",
"express": "^4.16.2",
"flow-bin": "^0.80.0",
"jest-cli": "^23.6.0",
"opn-cli": "^3.1.0",
"rimraf": "^2.6.1",
"supertest": "^3.3.0"
}
}