This repository was archived by the owner on Dec 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.46 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.46 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
{
"name": "stack-retrace",
"version": "0.1.9",
"description": "",
"author": "Maciej Komorowski <mckomo+npm@gmail.com>",
"repository": "https://github.com/SponsorPay/stack-retrace",
"license": "ISC",
"main": "cjs/index.js",
"types": "cjs/index.d.ts",
"files": [
"cjs"
],
"scripts": {
"dev": "ts-node examples/server.ts",
"bump": "standard-version",
"test": "jest",
"codecov": "codecov",
"coverage": "jest --collect-coverage",
"clean": "rm -rf cjs",
"compile": "tsc",
"build": "npm run clean && npm run compile",
"lint": "tslint --project tsconfig.json",
"format": "prettier \"**/*.@(js|json|ts)\" --write",
"cd": "standard-version -m \"chore(release): %s [skip ci]\" && git push --follow-tags origin master && npm publish"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/cors": "^2.8.5",
"@types/express": "^4.17.0",
"@types/jest": "^24.0.15",
"@types/node": "^11.13.14",
"body-parser": "^1.19.0",
"codecov": "^3.5.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"standard-version": "^6.0.1",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.2"
},
"dependencies": {
"@types/node-fetch": "^2.3.4",
"node-fetch": "^2.6.0",
"source-map": "^0.8.0-beta.0",
"stacktrace-parser": "^0.1.6",
"tslib": "^1.10.0"
}
}