forked from nearform/node-cephes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 914 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
{
"name": "cephes",
"description": "Implementation of special functions and distributions mathematical functions from the cephes library.",
"repository": "nearform/node-cephes",
"version": "1.2.0",
"main": "index.js",
"scripts": {
"test": "tap test/*.test.js"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/runtime": "^7.0.0",
"almost-equal": "^1.1.0",
"babelify": "^10.0.0",
"buffer": "^6.0.3",
"d3-array": "^1.2.4",
"d3-axis": "^1.0.12",
"d3-scale": "^2.1.2",
"d3-scale-chromatic": "^1.3.3",
"d3-selection": "^1.3.2",
"d3-shape": "^1.2.2",
"pumpify": "^1.5.1",
"split2": "^3.0.0",
"tap": "^12.0.1",
"xorshift": "^1.1.1"
},
"browser": {
"./cephes.js": "./cephes-browser.js"
},
"license": "BSD-3-Clause"
}