forked from FacilityApi/FacilityJavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 847 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 847 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
{
"name": "example-api",
"version": "0.0.0",
"description": "A client for the example API.",
"scripts": {
"build": "tsc",
"test": "tsc && mocha --require source-map-support/register"
},
"repository": {
"type": "git",
"url": "https://github.com/FacilityApi/FacilityJavaScript.git"
},
"author": "Ed Ball",
"license": "UNLICENSED",
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.18",
"@types/express": "^4.17.12",
"@types/mocha": "^8.2.2",
"@types/node": "^12.20.15",
"@types/node-fetch": "^2.5.10",
"chai": "^4.3.4",
"mocha": "^10.0.0",
"node-fetch": "^2.6.7",
"source-map-support": "^0.5.19",
"typescript": "~3.9.9"
},
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"facility-core": "file:../../ts"
}
}