-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 839 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
{
"name": "test-service",
"version": "0.0.1",
"private": true,
"description": "",
"main": "dist/index.js",
"engines": {
"node": ">=6 <14",
"npm": ">=6"
},
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"start": "npm run build && node dist/index",
"case-one": "jest",
"case-two": "ts-node scripts/case-two.ts",
"case-two-works": "ts-node --transpile-only scripts/case-two.ts",
"case-three": "ts-node scripts/case-three.ts",
"case-three-works": "ts-node --transpile-only scripts/case-three.ts"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "26.0.15",
"@types/node": "13.13.2",
"jest": "26.6.0",
"rimraf": "3.0.2",
"ts-jest": "26.4.4",
"ts-node": "9.1.1",
"typescript": "4.0.5"
}
}