-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
47 lines (47 loc) · 1.11 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
{
"name": "algebra",
"description": "means completeness and balancing, from the Arabic word الجبر",
"version": "1.0.1",
"type": "module",
"license": "MIT",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"homepage": "https://fibo.github.io/algebra",
"author": {
"name": "Gianluca Casati",
"url": "https://fibo.github.io"
},
"scripts": {
"build": "tsc --removeComments --project tsconfig.build.json && tsc --declaration --emitDeclarationOnly --project tsconfig.build.json",
"check_types": "tsc --noEmit",
"postbuild": "npm run prettier",
"prestart": "npm run build",
"prettier": "prettier --write .",
"test": "node --test --env-file .ts-node.env src/*_test.ts"
},
"repository": {
"type": "git",
"url": "git://github.com/fibo/algebra.git"
},
"keywords": [
"algebra",
"matrix",
"vector",
"tensor",
"real",
"complex",
"quaternion",
"math"
],
"dependencies": {
"arithmetica": "^1.0.0"
},
"devDependencies": {
"ts-node": "^10.9.2"
}
}