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) · 841 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 841 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.16.8",
"@types/chai": "^4.1.7",
"@types/express": "^4.11.0",
"@types/mocha": "^5.2.5",
"@types/node": "^8.10.12",
"@types/node-fetch": "^1.6.7",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"node-fetch": "^1.7.1",
"source-map-support": "^0.5.3",
"typescript": "^2.0.9"
},
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.2",
"facility-core": "file:../../ts"
}
}