forked from silentmatt/expr-eval
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.19 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.19 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
{
"name": "expr-eval",
"version": "0.12.0",
"description": "Mathematical expression evaluator",
"main": "dist/bundle.js",
"directories": {
"test": "test"
},
"dependencies": {},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.4.0",
"eslint-config-semistandard": "^7.0.0-beta.0",
"eslint-config-standard": "^6.0.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.1.0",
"rollup": "^0.36.0"
},
"scripts": {
"test": "npm run build && mocha",
"coverage": "npm run build && istanbul cover _mocha",
"lint": "eslint parser.js test",
"build": "rollup parser.js --format=umd --name=exprEval --output=dist/bundle.js",
"prepublish": "npm run build"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/silentmatt/expr-eval.git"
},
"keywords": [
"expression",
"math",
"evaluate",
"eval",
"function",
"parser"
],
"author": "Matthew Crumley",
"license": "MIT",
"bugs": {
"url": "https://github.com/silentmatt/expr-eval/issues"
},
"homepage": "https://github.com/silentmatt/expr-eval#readme"
}