forked from donmccurdy/expression-eval
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 983 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
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "expression-eval",
"version": "2.0.1",
"description": "JavaScript expression parsing and evaluation.",
"main": "index.js",
"typings": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/donmccurdy/expression-eval.git"
},
"scripts": {
"dev": "budo browser.js:bundle.js",
"test": "node test.js",
"preversion": "npm run test",
"postversion": "git push && git push --tags && npm publish",
"build": "node build.js"
},
"keywords": [
"expression",
"eval",
"evaluation",
"parser",
"ast",
"abstract",
"syntax",
"tree",
"math"
],
"author": "Don McCurdy <[email protected]>",
"license": "MIT",
"dependencies": {
"jsep": "^0.3.0"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"babelify": "^10.0.0",
"browserify": "^16.5.0",
"browserify-banner": "^1.0.15",
"budo": "^10.0.4",
"uglifyify": "^5.0.2"
}
}