-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.85 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.85 KB
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
55
56
57
58
59
60
61
{
"name": "cephes",
"description": "Implementation of special functions and distributions mathematical functions from the cephes library.",
"repository": {
"type": "git",
"url": "git+https://github.com/nearform/node-cephes.git"
},
"version": "3.3.3",
"main": "index.js",
"module": "index.mjs",
"types": "index.d.ts",
"scripts": {
"build": "tsc && npx rollup -c && npm run lint -- index.*s",
"clean": "rm -rf dist",
"lint": "npx @biomejs/biome format --write",
"prepare": "npm run clean && npm run build && npm run lint",
"serve:article": "(cd article && npx rollup -c) && npx http-server article",
"pretest": "npm run build",
"test": "c8 node --import tsx --experimental-test-module-mocks --test 'test/!(*.puppeteer).test.{js,mjs,ts}'",
"test:puppeteer": "c8 node --test 'test/*.puppeteer.test.{js,mjs}'"
},
"files": [
"index.js",
"index.mjs",
"index.d.ts"
],
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@rollup/plugin-alias": "^6.0.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@types/node": "^25.0.0",
"almost-equal": "^1.1.0",
"buffer": "^6.0.3",
"c8": "^11.0.0",
"d3-array": "^3.2.4",
"d3-axis": "^1.0.12",
"d3-scale": "^2.1.2",
"d3-scale-chromatic": "^1.3.3",
"d3-selection": "^3.0.0",
"d3-shape": "^1.2.2",
"events": "^3.3.0",
"pumpify": "^2.0.1",
"puppeteer": "^24.32.1",
"rollup": "^4.53.3",
"rollup-plugin-dts": "^6.3.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"serve-handler": "^6.1.6",
"split2": "^3.0.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"xorshift": "^1.1.1"
},
"license": "BSD-3-Clause",
"exports": {
"import": "./index.mjs",
"require": "./index.js"
}
}