-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 948 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
{
"name": "@jones.tristand/integrators",
"version": "1.0.1",
"description": "A simple package containing methods for numerical integration of systems of differential equations.",
"main": "index.js",
"typings": "./index.d.ts",
"directories": {
"test": "test"
},
"dependencies": {},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.2.0"
},
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonestristand/integrators.git"
},
"keywords": [
"integrator",
"rk4",
"runge",
"kutta",
"integrate",
"differential",
"equation",
"ode"
],
"author": "Tristan Jones <jones.tristand@gmail.com> (http://www.tdjones.ca)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jonestristand/integrators/issues"
},
"homepage": "https://github.com/jonestristand/integrators#readme"
}