generated from jeremyben/node-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 891 Bytes
/
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
{
"name": "tsc-prog",
"version": "2.3.0",
"author": "Jeremy Bensimon",
"license": "MIT",
"repository": "github:jeremyben/tsc-prog",
"keywords": [
"typescript",
"tsc",
"compiler",
"programmatic"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=12"
},
"engineStrict": true,
"scripts": {
"build": "ts-node -T build.ts",
"prepublishOnly": "yarn build",
"release": "standard-version",
"test": "jest --runInBand",
"test:file": "jest --runInBand --testPathPattern",
"test:watch": "jest --runInBand --watch --verbose false"
},
"dependencies": {},
"peerDependencies": {
"typescript": ">=4"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.10.1",
"jest": "^27.2.2",
"standard-version": "^9.3.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.9.5"
}
}