-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 loc) · 1.46 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
56
57
58
59
60
61
62
63
{
"name": "errorstacks",
"version": "2.4.0",
"description": "Parse error stack traces",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js"
},
"./package.json": "./package.json",
"./": "./"
},
"repository": {
"type": "git",
"url": "https://github.com/marvinhagemeister/errorstacks.git"
},
"bugs": {
"url": "https://github.com/marvinhagemeister/errorstacks/issues"
},
"files": [
"dist/"
],
"scripts": {
"test": "mocha -r ts-node/register --extension ts 'test/*test.ts'",
"build": "rimraf dist/ && tsc && tsc -p tsconfig.esm.json && node tools/postbuild.js && check-export-map",
"format": "prettier --write src/**/*.ts test/**/*.ts",
"prepublishOnly": "npm run build"
},
"author": "Marvin Hagemeister <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.0",
"chai": "^4.2.0",
"check-export-map": "^1.0.1",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"mocha": "^7.1.1",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"prettier": {
"useTabs": true,
"arrowParens": "avoid"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}