-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.46 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": "hyla",
"description": "2D and 3D computational geometry library in TypeScript",
"keywords": [
"computational-geometry",
"geometry",
"2d-geometry",
"3d-geometry",
"polyline"
],
"version": "0.5.0",
"license": "BSD-2-Clause",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "del dist/",
"build": "tsc",
"check-types": "tsc --noEmit --project .",
"lint": "eslint \"**/*.ts\"",
"prettier:check": "prettier --check \"**/*.@(ts|js|yml|md|json)\"",
"prettier": "prettier --write \"**/*.@(ts|js|yml|md|json)\"",
"test": "ts-mocha --project tsconfig.json \"src/**/*.spec.ts\"",
"prepare": "npm run build"
},
"files": [
"dist/**/*.@(js|ts|map)"
],
"repository": "lace/hyla",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/chai-roughly": "^1.0.1",
"@types/mocha": "^9.1.0",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"chai": "^4.3.6",
"chai-roughly": "^1.0.0",
"del-cli": "^4.0.1",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "17.0.0-1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "14.0.0",
"eslint-plugin-promise": "^6.0.0",
"mocha": "^9.2.2",
"prettier": "^2.6.2",
"sazerac": "^2.0.0",
"ts-mocha": "^9.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"engines": {
"node": ">= 12.x"
}
}