forked from josdejong/mathjs-expression-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.08 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
38
39
40
41
{
"name": "mathjs-expression-parser",
"version": "1.0.0",
"description": "Just the expression parser of mathjs",
"main": "index.js",
"directories": {
"dist": "dist",
"example": "example",
"test": "test"
},
"homepage": "http://mathjs.org",
"repository": {
"type": "git",
"url": "https://github.com/josdejong/mathjs-expression-parser.git"
},
"scripts": {
"test": "mocha",
"mkdist": "mkdirp dist",
"bundle": "browserify ./index.js -s math -o dist/mathjs-expression-parser.js",
"minify": "uglifyjs --compress --mangle --source-map -o dist/mathjs-expression-parser.min.js -- dist/mathjs-expression-parser.js",
"build": "npm run mkdist && npm run bundle && npm run minify",
"prepublishOnly": "npm run test && npm run build"
},
"keywords": [
"mathjs",
"expression",
"parser"
],
"author": "Jos de Jong",
"license": "MIT",
"dependencies": {
"mathjs": "^3.19.0"
},
"devDependencies": {
"browserify": "14.4.0",
"mkdirp": "0.5.1",
"mocha": "3.4.2",
"uglify-js": "3.0.19",
"webpack": "3.0.0"
}
}