-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 904 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
{
"name": "mathjs-util",
"version": "0.2.0",
"description": "Util functions when dealing with math.js",
"main": "lib/index.js",
"dependencies": {
"mathjs": "^3.16.5"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1"
},
"scripts": {
"compile": "babel --presets es2015,stage-2 -d lib/ src/",
"prepublish": "npm run compile",
"test": "echo \"No test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/javascript-machine-learning/mathjs-util.git"
},
"keywords": [],
"author": "“Robin <“[email protected]”> (https://www.robinwieruch.de)",
"license": "MIT",
"bugs": {
"url": "https://github.com/javascript-machine-learning/mathjs-util/issues"
},
"homepage": "https://github.com/javascript-machine-learning/mathjs-util#readme"
}