-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.2 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
{
"name": "@datatorch/geometry",
"version": "0.0.14",
"description": "Geometry libary for JavaScript",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/datatorch/geometry.js.git",
"author": "jsbroks <[email protected]>",
"license": "MIT",
"keywords": [
"geometry",
"polygon",
"coordinate",
"point",
"2D",
"geometric"
],
"scripts": {
"update": "yarn upgrade-interactive --latest",
"clean": "rm -rf dist",
"build": "yarn clean && tsc",
"test": "jest",
"doc:generate": "rm -rf docs && typedoc",
"release": "yarn build && yarn standard-version -a",
"sv": "standard-version"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js"
],
"testRegex": "^.+\\.spec\\.ts$"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/node": "^14.0.13",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"standard-version": "^8.0.0",
"ts-jest": "^26.1.0",
"ts-node": "^8.10.2",
"typedoc": "^0.17.7",
"typedoc-plugin-markdown": "^2.3.1",
"typescript": "^3.9.5"
},
"dependencies": {}
}