-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.55 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.55 KB
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
{
"name": "robot-cleaner",
"version": "1.0.0",
"description": "Simulation of an office cleaning robot, getting instructions from a file. It should display the total area (unique zones) once it's done.",
"main": "dist/src/app.js",
"repository": "github:baptistecs/office-cleaning-robot",
"author": "Baptiste Clarey Sjöstrand",
"license": "UNLICENSED",
"private": true,
"keywords": [
"node.js",
"typescript",
"prettier",
"eslint",
"jasmine",
"nodemon",
"robot",
"cleaner",
"office",
"cleaning"
],
"scripts": {
"_build": "yarn clean && echo 'Build...' && tsc && echo 'completed'",
"_watch": "nodemon --ext ts --exec 'yarn dev'",
"build": "yarn lint && yarn test && yarn clean && echo 'Build...' && tsc && echo 'completed'",
"clean": "rm -rf ./dist",
"dev": "NODE_ENV=development ts-node src/app.ts",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"start": "NODE_ENV=production node .",
"test": "NODE_ENV=test jasmine-ts",
"watch": "nodemon --ext ts --exec 'yarn lint && yarn test && yarn dev'"
},
"devDependencies": {
"@types/jasmine": "^3.5.11",
"@types/node": "^14.0.23",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jasmine": "^4.1.1",
"jasmine": "^3.5.0",
"jasmine-ts": "^0.3.0",
"jasmine-ts-console-reporter": "^3.1.1",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
}
}