-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 863 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
{
"name": "typescript-sandbox",
"version": "1.0.0",
"description": "TypeScript Sandbox",
"author": "Miroslaw Majka",
"license": "MIT",
"keywords": [
"typescript",
"jest"
],
"scripts": {
"test": "rimraf coverage junit.xml && jest",
"start": "ts-node src/index.ts",
"build": "rimraf dist && tsc",
"dist": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/miroslawmajka/typescript-sandbox.git"
},
"bugs": {
"url": "https://github.com/miroslawmajka/typescript-sandbox/issues"
},
"homepage": "https://github.com/miroslawmajka/typescript-sandbox#readme",
"devDependencies": {
"@types/jest": "^26.0.15",
"jest": "^26.6.1",
"jest-junit": "^12.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}