-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 993 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
{
"name": "toy-robot",
"version": "1.0.0",
"description": "Toy robot",
"main": "index.js",
"scripts": {
"start": "tsc && node build/index.js",
"build": "tsc",
"lint": "tslint -p tsconfig.json -c tslint.json",
"test": "npm run clean && jest --verbose",
"test:coverage": "npm run clean && jest --coverage",
"clean": "rm -Rf build"
},
"author": "Maheel De Silva",
"license": "ISC",
"dependencies": {
"inquirer": "^7.1.0",
"source-map-support": "^0.5.13"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-typescript": "^7.7.7",
"@types/inquirer": "^6.5.0",
"@types/jest": "^25.2.3",
"@types/node": "^12.7.5",
"babel-jest": "^26.0.1",
"jest": "^26.0.1",
"ts-jest": "^26.1.0",
"ts-node": "^8.10.2",
"tslint": "^5.20.1",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.9.5",
"typescript-formatter": "^7.2.2",
"webpack": "^4.43.0"
}
}