-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.2 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.2 KB
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
42
43
44
45
46
47
48
49
50
{
"name": "mathjs-expression-parser",
"version": "1.0.2",
"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"
},
"files": [
"dist",
"examples",
"test",
"CHANGELOG.md",
"index.js",
"LICENSE.md",
"README.md"
],
"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": "^5.2.3"
},
"devDependencies": {
"browserify": "16.2.3",
"mkdirp": "0.5.1",
"mocha": "5.2.0",
"uglify-js": "3.4.9",
"webpack": "4.26.0"
}
}