-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.18 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
48
49
50
51
52
53
54
{
"name": "rover",
"version": "1.3.0",
"description": "Library for the simulation of a rover including a simple top-down visualization.",
"author": "David Linner <[email protected]>",
"license": "UNLICENSED",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test-watch": "jest --watch",
"test": "jest",
"generate-doc": "typedoc",
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src --fix"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js"
],
"testRegex": "^.+\\.spec\\.ts$",
"verbose": true
},
"dependencies": {
"@types/geodesy": "^2.2.2",
"@types/p2": "^0.7.36",
"geodesy": "^2.2.1",
"p2": "^0.7.1"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"typedoc": "^0.20.13",
"typescript": "^4.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidlinner/rover.git"
}
}