-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
37 lines (37 loc) · 1.13 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
{
"name": "odex",
"version": "2.0.4",
"description": "Ernst Hairer's ODEX nonstiff ODE solver in JavaScript",
"keywords": [
"ordinary",
"differential",
"equation",
"numerical",
"method",
"ode",
"solver"
],
"main": "src/odex.js",
"scripts": {
"test": "mocha test",
"test2": "mocha --require intelli-espower-loader test",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha test",
"coveralls": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat coverage/lcov.info | node_modules/coveralls/bin/coveralls.js && rm -rf coverage"
},
"repository": {
"url": "http://github.com/littleredcomputer/odex-js"
},
"author": "Colin Smith <[email protected]> (http://github.com/littleredcomputer)",
"license": "BSD-2-Clause",
"devDependencies": {
"@types/jasmine": "^2.5.47",
"@types/power-assert": "^1.4.29",
"coveralls": "^2.13.1",
"intelli-espower-loader": "^1.0.1",
"jasmine": "^2.6.0",
"mocha": "^3.4.1",
"mocha-lcov-reporter": "^1.3.0",
"power-assert": "^1.3.1"
},
"tonicExampleFilename": "src/tonic-example.js"
}