-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 868 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 868 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
{
"name": "mars-rover-typescript",
"version": "1.0.0",
"description": "",
"main": "lib/src/index.js",
"typings": "lib/src/index.d.ts",
"scripts": {
"build": "webpack",
"build:prod": "NODE_ENV=production webpack",
"start": "webpack-dev-server --hot --inline",
"test": "jest --env=node --colors --coverage test"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^24.0.23",
"file-loader": "^5.1.0",
"jest": "^24.9.0",
"source-map-loader": "^0.2.4",
"ts-jest": "^24.3.0",
"ts-loader": "^6.2.1",
"typescript": "^3.7.2",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"eslint": "^6.8.0",
"ts-mockito": "^2.5.0"
},
"dependencies": {}
}