-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.13 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
{
"name": "expression-language.js",
"version": "1.0.0",
"description": "An engine for javascript that can compile and evaluate expressions written in typescript",
"main": "dist/expression.mjs",
"author": "slince <[email protected]>",
"scripts": {
"test": "jest",
"tsc": "tsc --noEmit",
"build": "rollup --config rollup.config.js"
},
"files": [
"dist",
"dts",
"README.md",
"LICENSE"
],
"keywords": [
"lexer",
"parser",
"ast",
"eval",
"evaluator",
"expression",
"expression-language",
"typescript"
],
"license": "MIT",
"type": "module",
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^27.0.3",
"jest": "^27.4.5",
"ts-jest": "^27.1.2",
"ts-loader": "^9.2.6",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slince/expression-language.js.git"
},
"bugs": {
"url": "https://github.com/slince/expression-language.js/issues"
},
"homepage": "https://github.com/slince/expression-language.js#readme"
}