-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 874 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
{
"name": "cardcountsimtest",
"version": "1.0.0",
"description": "testing card counting app",
"main": "test.js",
"dependencies": {
"@types/node": "^10.12.18",
"lodash": "^4.17.5"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^2.2.48",
"chai": "^4.1.2",
"cross-env": "^5.2.0",
"mocha": "^5.0.1",
"ts-node": "^5.0.1",
"typescript": "^2.7.2"
},
"scripts": {
"build": "tsc",
"postbuild": "cp -r dist/lib/* ../card-count-sim-server/blackjack-lib/",
"start": "node dist/app.js",
"simulate": "npm run build && npm start",
"debug": "cross-env NODE_ENV=debug npm run simulate",
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"fix": "tslint --fix 'src/**/*.ts'"
},
"author": "",
"license": "ISC",
"repository": {}
}