forked from donmccurdy/expression-eval
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.26 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
54
55
{
"name": "expression-eval",
"version": "4.0.0",
"description": "JavaScript expression parsing and evaluation.",
"source": "index.ts",
"main": "dist/expression-eval.js",
"module": "dist/expression-eval.module.js",
"unpkg": "dist/expression-eval.umd.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/donmccurdy/expression-eval.git"
},
"scripts": {
"dev": "microbundle watch",
"build": "microbundle",
"test": "node test.js | tap-spec",
"preversion": "npm run build && npm test",
"postversion": "git push && git push --tags && npm publish"
},
"keywords": [
"expression",
"eval",
"evaluation",
"parser",
"ast",
"abstract",
"syntax",
"tree",
"math"
],
"author": "Don McCurdy <[email protected]>",
"license": "MIT",
"dependencies": {
"jsep": "^0.3.0"
},
"devDependencies": {
"@types/tape": "^4.13.0",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"eslint": "^7.17.0",
"microbundle": "^0.13.0",
"source-map-support": "^0.5.19",
"tap-spec": "^5.0.0",
"tape": "^5.1.1",
"typescript": "^4.1.3"
},
"files": [
"dist/",
"index.js",
"README.md",
"LICENSE",
"package.json",
"package-lock.json"
]
}