-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1 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
{
"name": "errors-stack",
"version": "1.2.0",
"typings": "./src/index.ts",
"main": "dist/index.js",
"author": "@joao208",
"license": "MIT",
"repository": "https://github.com/Joao208/errors-stack",
"scripts": {
"start": "ts-node src/index.ts",
"build:version": "npm version patch",
"build": "tsc --build",
"test": "NODE_ENV=test jest --coverage --silent --forceExit --detectOpenHandles",
"test:unit": "yarn test -- --watch -c jest-unit-config.js",
"test:coverage": "NODE_ENV=test ./node_modules/.bin/jest --coverage --silent --ci --forceExit --detectOpenHandles"
},
"dependencies": {
"@babel/plugin-proposal-export-default-from": "^7.14.5",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.2",
"babel-jest": "^27.2.5",
"jest": "^27.2.5"
}
}