-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 776 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 776 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": "example-express-service",
"version": "0.0.0",
"description": "An Express.js server for Cloudflare App services",
"main": "app.js",
"scripts": {
"lint": "standard --fix ./app/**/*.js ./test/**/*.js || true",
"test": "tape test/index.js",
"start": "node app.js"
},
"contributors": [
{
"name": "Connor Peshek",
"email": "connor@connorpeshek.me"
},
{
"name": "Cloudflare Inc.",
"email": "app-developer-help@cloudflare.com"
}
],
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.0",
"express": "^4.15.4",
"simple-fetch": "^1.5.0"
},
"devDependencies": {
"standard": "^10.0.3",
"supertest": "^3.0.0",
"tape": "^4.8.0"
},
"standard": {
"globals": []
}
}