-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.55 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.55 KB
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
77
{
"name": "@map-colonies/types",
"version": "1.9.0",
"description": "MapColonies types package",
"main": "./dist/index.js",
"scripts": {
"test:unit": "jest --config=./tests/configurations/unit/jest.config.js",
"test:integration": "jest --config=./tests/configurations/integration/jest.config.js",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"prelint:fix": "npm run format:fix",
"prelint": "npm run format",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"release": "standard-version",
"test": "npm run test:unit && npm run test:integration",
"prebuild": "npm run clean && npm run copyassets:epsg && npm run generate",
"build": "tsc --project tsconfig.build.json",
"start": "npm run build && cd dist && node ./index.js",
"clean": "rimraf dist",
"prepack": "npm run build",
"generate": "npm run generate:interface && npm run generate:type",
"generate:interface": "quicktype src/enums/geo/epsg-index/all.json -o ./src/enums/geo/GENERATED/epsg_interface.ts --just-types --top-level Epsg",
"generate:type": "node ./scripts/gen_epsg_type.js",
"copyassets:epsg": "copyfiles -u 1 node_modules/epsg-index/all.json src/enums/geo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MapColonies/types.git"
},
"author": "MapColonies",
"license": "ISC",
"bugs": {
"url": "https://github.com/MapColonies/types/issues"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"files": [
"dist/**/*"
],
"homepage": "https://github.com/MapColonies/types#readme",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@map-colonies/eslint-config": "^2.2.0",
"@map-colonies/prettier-config": "0.0.1",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.12",
"commitlint": "^11.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.8.1",
"husky": "^4.3.5",
"jest": "^26.6.3",
"jest-create-mock-instance": "^1.1.0",
"jest-html-reporters": "^2.1.2",
"mime-types": "^2.1.35",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"quicktype": "^23.0.37",
"standard-version": "^9.3.0",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typedoc": "^0.24.7",
"typescript": "^4.2.4"
},
"dependencies": {
"@types/geojson": "^7946.0.16",
"@types/mime-types": "^2.1.1",
"copyfiles": "^2.4.1",
"epsg-index": "^1.3.0",
"ts-morph": "^18.0.0"
}
}