-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.55 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
{
"name": "@tfso/extended-error",
"version": "1.4.0",
"description": "An Extended Error class that support custom properties",
"main": "index.js",
"scripts": {
"clean": "rm -rf package-lock.json node_modules",
"test": "npm run mocha",
"mocha": "mocha --exit --recursive --timeout 10000 ./test/**/*.test.*js",
"lint": "npx eslint test *.js",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier . --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix",
"build": "bash ./build.sh",
"cover": "nyc --reporter=html --reporter=text npm run mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tfso/njs-tfso-extended-error.git"
},
"keywords": [
"error"
],
"devDependencies": {
"@tfso/eslint-config": "^1.1.4",
"auto-changelog": "^2.4.0",
"chai": "4.3.10",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^3.1.1"
},
"author": "24SevenOffice",
"license": "ISC",
"bugs": {
"url": "https://github.com/tfso/njs-tfso-extended-error/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/tfso/njs-tfso-extended-error#readme",
"types": "./types/index.d.ts",
"auto-changelog": {
"issueUrl": "https://24so.atlassian.net/browse/{id}",
"issuePattern": "[A-Z]+-\\d+",
"unreleased": true,
"commitLimit": false,
"ignoreCommitPattern": "^(Update package.json|skip|Skip).*"
}
}