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
34 lines (34 loc) · 904 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 904 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
{
"name": "facility-core",
"version": "2.2.0",
"description": "Common code for the Facility API Framework.",
"scripts": {
"build": "tsc && eslint src --ext .ts",
"test": "npm run --silent build && mocha",
"format": "prettier --write src/*.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/FacilityApi/FacilityJavaScript.git"
},
"author": "Ed Ball",
"license": "MIT",
"files": [
"src"
],
"main": "src/facilityCore.js",
"types": "src/facilityCore.d.ts",
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"chai": "^4.3.4",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"mocha": "^8.4.0",
"prettier": "^2.3.1",
"typescript": "~3.9.9"
}
}