-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.29 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@koopjs/koop-output-dcat-us-11",
"version": "2.1.0",
"description": "A Koop output plugin for the DCAT-US 1.1 specification",
"main": "src/index.js",
"engines": {
"node": ">= 12.0 <15"
},
"repository": {
"type": "git",
"url": "[email protected]:koopjs/koop-output-dcat-us-11.git"
},
"devDependencies": {
"@esri/arcgis-rest-feature-layer": "^3.2.1",
"@types/adlib": "^3.0.1",
"@types/config": "0.0.39",
"@types/express": "^4.17.13",
"@types/faker": "^5.5.7",
"@types/jest": "~26.0.23",
"@types/lodash": "^4.14.171",
"@types/node": "~14.14.45",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "~4.28.2",
"@typescript-eslint/parser": "~4.28.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"eslint": "~7.30.0",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-jest": "~24.3.6",
"express": "^4.17.1",
"faker": "^5.5.3",
"fetch-mock-jest": "^1.5.1",
"jest": "~27.0.6",
"koop": "^4.2.1",
"prettier": "~2.3.2",
"rimraf": "~3.0.2",
"supertest": "^6.1.4",
"ts-jest": "^27.0.4",
"tsutils": "~3.21.0",
"typescript": "~4.3.5"
},
"scripts": {
"start": "node build/src/index.js",
"dev": "npm run build && cd example-app && npm i && node src/index.js",
"clean": "rimraf coverage build tmp",
"prebuild": "rm -rf ./build && npm run lint",
"build": "npm run prebuild && tsc -p tsconfig.release.json",
"release": "npm run build && npm publish ./build --access=public",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage",
"test:watch": "jest --watch",
"prepack": "cp ../README.md ../LICENSE ./"
},
"author": "Andrew Tate <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@esri/arcgis-rest-auth": "^3.2.1",
"@esri/arcgis-rest-portal": "^3.2.1",
"@esri/arcgis-rest-request": "^3.2.1",
"@esri/hub-common": "^9.32.1",
"@esri/hub-initiatives": "^9.32.1",
"@esri/hub-search": "^9.32.1",
"@esri/hub-sites": "^9.32.1",
"@esri/hub-teams": "^9.32.1",
"config": "^3.3.6",
"lodash": "^4.17.21",
"tslib": "~2.3.0"
},
"peerDependencies": {
"@esri/arcgis-rest-feature-layer": "^3.2.1"
},
"volta": {
"node": "14.16.1"
}
}