-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
37 lines (37 loc) · 906 Bytes
/
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
{
"name": "semaphore-demo-zeit-now",
"version": "1.0.0",
"description": "Semaphore demo to deploy to ZEIT Now",
"main": "api/hello.js",
"scripts": {
"start": "now dev",
"test": "NODE_ENV=test PORT=3000 jest --coverage --bail"
},
"repository": {
"type": "git",
"url": "git+https://github.com/semaphore-demo-zeit-now/semaphore-demo-zeit-now.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/semaphore-demo-zeit-now/semaphore-demo-zeit-now/issues"
},
"homepage": "https://github.com/semaphore-demo-zeit-now/semaphore-demo-zeit-now#readme",
"engines": {
"node": "10.16.3"
},
"dependencies": {
"now": "^16.1.2"
},
"devDependencies": {
"express": "^4.17.1",
"jest": "^24.7.1",
"supertest": "^4.0.2"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"api/hello.js"
]
}
}