-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 739 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 739 Bytes
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
{
"name": "nodejs-demo",
"version": "1.0.0",
"description": "Node.js demo code",
"scripts": {
"test": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/wangding/nodejs-demo.git"
},
"keywords": [
"node.js",
"demo",
"code"
],
"author": "wangding",
"license": "MIT",
"bugs": {
"url": "https://github.com/wangding/nodejs-demo/issues"
},
"homepage": "https://github.com/wangding/nodejs-demo#readme",
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.11.0"
},
"dependencies": {
"chalk": "^4.1.0",
"benchmark": "^2.1.4",
"cheerio": "^1.0.0-rc.3",
"express": "^4.16.4",
"mysql": "^2.18.1",
"mysql2": "^2.2.5"
}
}