-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.41 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.41 KB
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
61
62
{
"name": "ctxexp-parser",
"version": "1.3.0",
"main": "libs/ctxexp-parser.cjs.js",
"module": "libs/ctxexp-parser.esm.js",
"types": "./libs/index.d.ts",
"description": "A parser that can execute JS in an environment that cannot execute JS dynamically.",
"directories": {
"lib": "libs",
"test": "test"
},
"author": "Lydanne",
"homepage": "https://github.com/Lydanne/ctxexp-parser#readme",
"bugs": {
"url": "https://github.com/Lydanne/ctxexp-parser/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lydanne/ctxexp-parser.git"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.0",
"babel-jest": "^30.2.0",
"jest": "^30.2.0",
"rollup": "^4.53.2",
"ts-jest": "^29.4.5",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typescript": "^5.9.3"
},
"keywords": [
"dynamic",
"$",
"expression",
"lang",
"parser",
"context",
"ctxexp",
"JSONPath",
"jsonpath",
"json-path",
"object",
"traversal",
"json",
"path",
"data",
"state machine",
"lexer"
],
"scripts": {
"test": "jest",
"build": "rollup -c",
"dev": "rollup -cw"
}
}