-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 995 Bytes
/
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
{
"name": "@jiricekcz/geometry.js",
"version": "1.0.0",
"description": "Object-oriented typescript library for analytic geometry",
"main": "build/index.js",
"types": "build/index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "npx jest --passWithNoTests --coverage",
"test:w": "npx jest --watch",
"build": "npx tsc",
"docs": "npx typedoc --options typedoc.json",
"prepublish": "npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geometryjs/geometry.js.git"
},
"author": {
"name": "Jiří Cihelka"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/geometryjs/geometry.js/issues"
},
"files": [
"build",
"README.md",
"LICENSE"
],
"homepage": "https://geometryjs.jiricekcz.dev",
"devDependencies": {
"@types/jest": "^29.5.4",
"jest": "^29.6.4",
"ts-jest": "^29.1.1",
"typedoc": "^0.25.1",
"typescript": "^5.2.2"
}
}