-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.14 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
{
"name": "nomial",
"version": "1.0.11",
"description": "A TypeScript implementation of High-Performance Polynomial Root Finding for Graphics (Yuksel 2022)",
"main": "dist/nomial.js",
"browser": "dist/nomial.min.js",
"jsdelivr": "dist/nomial.min.js",
"unpkg": "dist/nomial.min.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/pboyer/nomial",
"repository": {
"type": "git",
"url": "git://github.com/pboyer/nomial.git"
},
"scripts": {
"test": "ts-node --project tsconfig.test.json test/index.ts",
"build": "tsc --emitDeclarationOnly && rollup -c && cp dist/nomial.js examples/nomial.js",
"publish": "yarn build",
"benchmark": "ts-node --project tsconfig.test.json benchmark/index.ts"
},
"keywords": [
"polynomial",
"roots",
"root-finding",
"math"
],
"files": [
"/dist"
],
"author": "Peter Boyer",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-typescript": "^8.3.3",
"@types/node": "^18.0.4",
"rollup": "^2.76.0",
"rollup-plugin-terser": "^5.3.0",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
}
}