-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.45 KB
/
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
38
39
40
41
42
43
44
45
46
47
{
"name": "toy-robot-challenge",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"test": "jest src/** --coverage --watch" ,
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix",
"build": "rimraf ./dist && tsc",
"start": "ts-node ./src/index.ts",
"simulation": "npm run simulation-1 && npm run simulation-2 && npm run simulation-3 && npm run simulation-4",
"simulation-1": "ts-node ./src/index.ts ./src/tests/data/simulation-1",
"simulation-2": "ts-node ./src/index.ts ./src/tests/data/simulation-2",
"simulation-3": "ts-node ./src/index.ts ./src/tests/data/simulation-3",
"simulation-4": "ts-node ./src/index.ts ./src/tests/data/simulation-4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ooanishoo/toy-robot-challenge.git"
},
"keywords": [
"javascript",
"iress",
"toyrobot"
],
"author": "Anish Maharjan",
"license": "ISC",
"bugs": {
"url": "https://github.com/ooanishoo/toy-robot-challenge/issues"
},
"homepage": "https://github.com/ooanishoo/toy-robot-challenge#readme",
"dependencies": {
"jest": "^26.6.3",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.18.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4"
}
}