-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 987 Bytes
/
package.json
File metadata and controls
50 lines (50 loc) · 987 Bytes
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
44
45
46
47
48
49
50
{
"name": "blackjack",
"version": "1.0.0",
"description": "blackjack game engine",
"main": "index.ts",
"scripts": {
"start": "ts-node src/index.ts n",
"build": "tsc -p .",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"pretest": "npm run lint",
"test": "jest"
},
"keywords": [
"blackjack",
"cards"
],
"author": "Jayd Page",
"license": "ISC",
"devDependencies": {
"@types/jest": "^23.3.2",
"@types/node": "^10.11.3",
"jest": "^23.6.0",
"ts-jest": "^23.10.3",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.1"
},
"dependencies": {
"@types/inquirer": "^0.0.43",
"commander": "^2.18.0",
"inquirer": "^6.2.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testMatch": [
"**/*.test.ts"
]
}
}