-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.37 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
60
{
"name": "@casbin/expression-eval",
"version": "5.3.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": "git+https://github.com/node-casbin/expression-eval.git"
},
"scripts": {
"dev": "microbundle watch",
"build": "microbundle",
"test": "jest",
"prepublish": "yarn lint && yarn build",
"release": "standard-version",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts",
"coverage": "jest --coverage"
},
"keywords": [
"expression",
"eval",
"evaluation",
"parser",
"ast",
"abstract",
"syntax",
"tree",
"math"
],
"author": "Node-Casbin",
"license": "MIT",
"dependencies": {
"jsep": "^0.3.0"
},
"devDependencies": {
"@types/jest": "24.9.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"jest": "24.9.0",
"ts-jest": "24.3.0",
"microbundle": "^0.13.0",
"source-map-support": "^0.5.19",
"tap-spec": "^5.0.0",
"typescript": "^4.1.3"
},
"files": [
"dist/",
"index.js",
"README.md",
"LICENSE",
"package.json",
"package-lock.json"
]
}