-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.25 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
{
"name": "@krakenjs/express-promisified",
"version": "2.0.0",
"description": "Express with promises",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"flow-typed": "flow-typed install",
"flow:build": "flow gen-flow-files ./src/index.js --out-dir ./src",
"babel": "babel ./src --ignore=node_modules --out-dir ./src --source-maps inline",
"test": "npm run flow-typed && npm run lint && npm run flow && npm run tsd",
"tsd": "tsd",
"flow": "flow",
"lint": "eslint src/ *.js",
"prepublish": "in-publish && npm run babel || not-in-publish",
"postpublish": "git checkout ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krakenjs/express-promisified.git"
},
"keywords": [
"process",
"subprocess",
"node"
],
"author": "dbrain",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/krakenjs/express-promisified/issues"
},
"homepage": "https://github.com/krakenjs/express-promisified#readme",
"devDependencies": {
"@krakenjs/grumbler-scripts": "^6.0.2",
"@types/express": "^4.17.13",
"flow-bin": "^0.69.0",
"in-publish": "^2.0.1",
"tsd": "^0.19.1",
"yargs-parser": "^10.0.0"
},
"peerDependencies": {
"express": "^4"
}
}