-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.48 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
61
62
63
64
{
"name": "ctxexp-parser",
"version": "1.2.2",
"main": "libs/ctxexp-parser.cjs.js",
"module": "libs/ctxexp-parser.esm.js",
"types": "./types/index.d.ts",
"description": "A parser that can execute JS in an environment that cannot execute JS dynamically.",
"directories": {
"lib": "libs",
"test": "test"
},
"author": "WumaCoder",
"homepage": "https://github.com/WumaCoder/ctxexp-parser#readme",
"bugs": {
"url": "https://github.com/WumaCoder/ctxexp-parser/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WumaCoder/ctxexp-parser.git"
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@rollup/plugin-node-resolve": "^13.0.5",
"@rollup/plugin-typescript": "^8.2.5",
"@types/jest": "^27.0.2",
"@types/node": "^16.9.6",
"babel-jest": "^27.2.1",
"jest": "^27.2.1",
"rollup": "^2.57.0",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-uglify": "^6.0.4",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typescript": "^4.4.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"
}
}