forked from silentmatt/expr-eval
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.35 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
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "expr-eval",
"version": "1.2.0",
"description": "Mathematical expression evaluator",
"main": "dist/bundle.js",
"typings": "parser.d.ts",
"directories": {
"test": "test"
},
"dependencies": {},
"devDependencies": {
"eslint": "^4.5.0",
"eslint-config-semistandard": "^11.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"istanbul": "^0.4.5",
"mocha": "^5.0.0",
"rollup": "^0.56.0",
"rollup-plugin-uglify": "^3.0.0"
},
"scripts": {
"test": "npm run build && mocha",
"coverage": "npm run build && istanbul cover _mocha",
"lint": "eslint index.js src test rollup.config.js rollup-min.config.js",
"build": "rollup -c rollup.config.js && rollup -c rollup-min.config.js",
"prepublish": "npm run build"
},
"files": [
"dist/",
"parser.d.ts"
],
"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"
}