-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.07 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
{
"description": "TBD",
"devDependencies": {
"cpy-cli": "4.2.0",
"jest": "29.0.3",
"rimraf": "3.0.2",
"ts-jest": "29.0.1",
"tslib": "2.4.0",
"typescript": "4.8.3"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist-cjs/index.js"
},
"./package.json": "./package.json"
},
"keywords": [],
"license": "UNLICENSED",
"main": "./dist-cjs/index.js",
"name": "bug-ts-jest-preset",
"scripts": {
"build": "npm run build:prod-cjs && npm run build:prod-esm",
"build:dev": "tsc -p tsconfig.json",
"build:prod-cjs": "tsc -p tsconfig.prod-cjs.json && cpy ./src/cjs-package.json.txt ./dist-cjs --flat --rename=package.json",
"build:prod-esm": "tsc -p tsconfig.prod.json",
"clean": "rimraf coverage dist dist-cjs",
"prepare": "npm run clean && npm run build",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"sideEffects": false,
"type": "module",
"types": "./dist/index.d.ts",
"version": "0.0.0"
}