-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
69 lines (69 loc) · 1.74 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": "nanoexpress",
"version": "2.0.4",
"description": "Nano-framework for Node.js",
"main": "build/nanoexpress.js",
"module": "src/nanoexpress.js",
"typings": "nanoexpress.d.ts",
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/dalisoft"
},
"scripts": {
"dev": "rollup -c -w",
"watch": "nodemon build/server.js",
"watch-dev": "NODE_ENV=development rollup -c -w",
"build": "rollup -c",
"lint": "eslint ./src",
"test": "jest --config jest.config.js",
"coverage": "npm run test --coverage",
"coveralls": "npm run coverage && cat ./tests/coverage/lcov.info | coveralls",
"prepublishOnly": "npm run lint && npm run build"
},
"engines": {
"node": ">=12.16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nanoexpress/nanoexpress.git"
},
"keywords": [
"nano",
"node",
"fast",
"uws",
"websocket",
"http",
"c++"
],
"author": "dalisoft",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nanoexpress/nanoexpress/issues"
},
"homepage": "https://github.com/nanoexpress/nanoexpress#readme",
"dependencies": {
"@dalisoft/events": "^0.2.0",
"debug": "^4.1.1",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#binaries"
},
"devDependencies": {
"@babel/core": "^7.8.0",
"@babel/preset-env": "^7.9.5",
"coveralls": "^3.1.0",
"eslint": "^6.8.0",
"husky": "^4.2.5",
"jest": "^25.4.0",
"lint-staged": "^10.1.7",
"prettier": "^2.0.5",
"rollup": "^2.7.3",
"rollup-plugin-node-resolve": "^5.2.0"
},
"peerDependencies": {
"ajv": "^6.x",
"cookie": "^0.x",
"fast-json-stringify": "^1.x",
"passport": "^0.4.0",
"swagger-ui-dist": "^3.23.6"
}
}