-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.14 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.14 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
{
"name": "@map-colonies/error-types",
"version": "1.3.1",
"description": "This is template for map colonies typescript packages",
"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",
"build": "tsc --project tsconfig.build.json",
"start": "npm run build && cd dist && node ./index.js",
"clean": "rimraf dist",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MapColonies/error-types.git"
},
"author": "MapColonies",
"license": "ISC",
"bugs": {
"url": "https://github.com/MapColonies/error-types/issues"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"files": [
"dist/**/*"
],
"homepage": "https://github.com/MapColonies/error-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/express": "^4.17.13",
"@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",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"standard-version": "^9.3.0",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typedoc": "^0.23.19",
"typescript": "^4.2.4"
},
"dependencies": {
"@map-colonies/error-express-handler": "^2.0.0",
"express": "^4.17.1",
"http-status-codes": "^2.1.4"
}
}