-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.55 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
{
"name": "ymir",
"version": "1.0.0",
"description": "Python WSGI gateway in node.js ",
"main": "./lib/index.js",
"bin": {
"ymir": ".bin/ymir"
},
"scripts": {
"clean": "rimraf lib && rimraf coverage",
"wt": "nodemon --exec \"wt serve --port 8020\" --watch ./lib",
"format": "prettier --write \"{src,__tests__}/**/*.ts\"",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"prepublish": "npm run build",
"prebuild": "npm run clean && npm run format && npm run lint && echo Using TypeScript && tsc --version",
"dev": "tsc --pretty --watch",
"build:ts": "tsc --pretty",
"build:native": "node-gyp build",
"build": "npm run build:native && npm run build:ts",
"rainbow": "gunicorn -t 1 wsgiref.simple_server:demo_app"
},
"keywords": [
"node",
"python",
"wsgi"
],
"gypfile": true,
"author": "ShrekOverflow",
"license": "MIT",
"dependencies": {
"@types/yargs": "^11.0.0",
"bindings": "^1.3.0",
"chalk": "^2.4.1",
"debug": "^3.1.0",
"express": "^4.16.3",
"node-addon-api": "1.3.0",
"yargs": "^11.0.0"
},
"devDependencies": {
"@types/bindings": "^1.3.0",
"@types/chalk": "^2.2.0",
"@types/debug": "^0.0.30",
"@types/express": "^4.11.1",
"@types/rimraf": "^2.0.2",
"node-gyp": "^3.6.2",
"nodemon": "^1.17.5",
"prettier": "^1.12.1",
"rimraf": "^2.6.2",
"ts-node": "^6.0.3",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.12.0",
"typescript": "^2.8.3",
"webtask-tools": "^3.2.1",
"wt-cli": "^9.5.0"
}
}