-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.36 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
{
"name": "@ogcapi-js/features",
"version": "1.1.1",
"description": "A javascript library for OGC API - Features",
"author": "Haoliang Yu <[email protected]>",
"homepage": "https://github.com/haoliangyu/ogcapi-js#readme",
"license": "MIT",
"main": "dist/index.js",
"directories": {
"lib": "src",
"test": "test"
},
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/haoliangyu/ogcapi-js.git"
},
"scripts": {
"build": "tsdx build",
"test": "npm run test:unit",
"test:e2e": "tsdx test test/e2e",
"test:unit": "tsdx test test/unit",
"lint": "tsdx lint",
"lint:fix": "tsdx lint --fix",
"lint:staged": "lint-staged"
},
"bugs": {
"url": "https://github.com/haoliangyu/ogcapi-js/issues"
},
"dependencies": {
"@ogcapi-js/shared": "^1.1.1"
},
"devDependencies": {
"@ogcapi-js/test-utils": "^1.0.0",
"@types/geojson": "^7946.0.7",
"@types/jest": "^26.0.20",
"@types/json-schema": "^7.0.9",
"@types/node": "^14.14.25",
"isomorphic-fetch": "^3.0.0",
"lint-staged": "^10.5.4",
"tsdx": "^0.14.1",
"tslib": "^2.1.0",
"typescript": "^4.1.3"
},
"lint-staged": {
"*.js": "tsdx lint --fix"
},
"publishConfig": {
"access": "public"
},
"gitHead": "0facd017e222e1d4f58755b8e6e71895a929b5dc"
}