-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.25 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
{
"version": "0.1.12",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"source": "lib/index.ts",
"module": "dist/index.esm.mjs",
"files": [
"dist",
"lib"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=10"
},
"scripts": {
"build": "microbundle",
"doc": "typedoc --options ./typedoc.json",
"test": "vitest",
"lint": "eslint . && tsc --noEmit",
"prepare": "husky install && npm run build && npm run doc && cp CNAME docs/CNAME"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "@placemarkio/check-geojson",
"author": "Tom MacWright",
"devDependencies": {
"@humanwhocodes/momoa": "^2.0.4",
"@types/geojson": "^7946.0.8",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"eslint": "^8.16.0",
"husky": "^8.0.1",
"microbundle": "^0.15.0",
"prettier": "^2.6.2",
"standard-version": "^9.5.0",
"tslib": "^2.4.0",
"type-fest": "^2.12.2",
"typedoc": "^0.22.15",
"typescript": "^4.6.4",
"vitest": "^0.24.4"
}
}