-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·37 lines (37 loc) · 818 Bytes
/
package.json
File metadata and controls
executable file
·37 lines (37 loc) · 818 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
33
34
35
36
37
{
"name": "rabbit-ear-math",
"version": "0.1.0",
"description": "origami math. geometry and linear algebra",
"main": "math.js",
"type": "module",
"types": "./types/index.d.ts",
"scripts": {
"test": "jest",
"clean": "node tests/clean.js",
"lineno": "node tests/lineno.js"
},
"author": "Robby Kraft",
"license": "MIT",
"repository": "https://github.com/robbykraft/Math",
"keywords": [
"origami",
"math",
"linear algebra",
"algebra",
"geometry"
],
"devDependencies": {
"@jest/globals": "^29.6.4",
"@rollup/plugin-terser": "^0.4.3",
"eslint": "^8.47.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.1",
"jest": "^29.6.4",
"rollup": "^3.28.1",
"rollup-plugin-cleanup": "^3.2.1",
"typescript": "^5.2.2"
},
"jest": {
"collectCoverage": true
}
}