-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 930 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
35
36
37
38
39
40
41
{
"name": "ode45-cash-karp",
"version": "1.1.0",
"description": "Integrate a system of Ordinary Differential Equations using the Fifth Order Adaptive Cash-Karp method",
"main": "lib/index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git://github.com/scijs/ode45-cash-karp.git"
},
"keywords": [
"scijs",
"ode",
"rk4",
"runge-kutta",
"adaptive",
"rk45",
"cash-karp",
"ode45",
"integration",
"differential-equations",
"calculus"
],
"author": "Ricky Reusser",
"license": "MIT",
"devDependencies": {
"chai": "^3.2.0",
"gulp-filter": "^2.0.2",
"gulp-latex": "^1.0.1",
"gulp-markdown-equations": "^1.2.3",
"gulp-pdftocairo": "^0.2.0",
"gulp-tap": "^0.1.3",
"mdtex-cli": "0.0.3",
"mocha": "^2.2.5",
"ode-rk4": "^1.1.2",
"richardson-extrapolation": "^1.0.2"
},
"dependencies": {}
}