-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 712 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 712 Bytes
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
{
"name": "mathjs-simple-integral",
"version": "0.1.1",
"description": "Extends mathjs to be able to compute simple integrals.",
"main": "index.js",
"author": "Joel Hoover <joelahoover@gmail.com>",
"license": "Apache-2.0",
"private": false,
"scripts": {
"test": "mocha",
"test:watch": "mocha --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/joelhoover/mathjs-simple-integral"
},
"bugs": {
"url": "https://github.com/joelhoover/mathjs-simple-integral/issues"
},
"keywords": [
"math",
"mathjs",
"integral"
],
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^4.1.0"
},
"dependencies": {
"mathjs": "^3.18.1"
}
}