-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 724 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 724 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
{
"name": "timestamp-microservice",
"version": "0.0.1",
"description": "A timestamp microservice project for FreeCodeCamp",
"main": "index.js",
"scripts": {
"test": "mocha",
"start": "node server.js"
},
"author": "Zack Ward",
"license": "ISC",
"dependencies": {
"chrono-node": "^1.2.5",
"express": "^4.14.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"mocha": "^3.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZackWard/timestamp-microservice.git"
},
"bugs": {
"url": "https://github.com/ZackWard/timestamp-microservice/issues"
},
"homepage": "https://github.com/ZackWard/timestamp-microservice#readme"
}