-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.6 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
56
57
58
59
{
"name": "djexl-js",
"version": "1.5.0",
"description": "Dynamic javascript Expression Language: Powerful context-based expression parser and evaluator.",
"main": "lib/index.js",
"module": "dist/bundle.es.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rm -rf dist lib && rollup -c rollup.config.js && tsc --project tsconfig-build.json",
"test": "nyc --reporter=html --reporter=text mocha --require ts-node/register --extension .ts --recursive test",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/wangfengming/djel"
},
"files": [
"src",
"lib",
"dist",
"example.js"
],
"keywords": [
"expression",
"evaluator",
"parser",
"jsep"
],
"authors": [
"Tom Shawver <[email protected]>",
"wangfengming <[email protected]>"
],
"author": "wangfengming <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wangfengming/djel/issues"
},
"homepage": "https://github.com/wangfengming/djel",
"devDependencies": {
"@babel/cli": "^7.18.9",
"@babel/core": "^7.18.9",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-typescript": "^8.4.0",
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"chai": "^4.3.6",
"eslint": "^7.32.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"rollup": "^2.79.0",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "^4.8.4"
}
}