-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.79 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": "espression",
"version": "1.8.5",
"description": "Small and customizable EcmaScript expression parser and static eval, with support for most ES6 expression syntax and jsonPath.",
"author": "Adrian Panella <[email protected]>",
"license": "MIT",
"repository": "https://github.com/ianchi/ESpression.git",
"main": "dist/bundle/espression.cjs.js",
"module": "dist/esm2015/espression.js",
"es2015": "dist/esm2015/espression.js",
"types": "dist/src/main.d.ts",
"private": false,
"sideEffects": false,
"dependencies": {
"tslib": "^2.1.0"
},
"devDependencies": {
"@types/jasmine": "^3.7.7",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"acorn": "~7.2.0",
"chalk": "^4.1.0",
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-notice": "^0.9.10",
"jasmine": "^3.7.0",
"jsep": "^0.3.5",
"prettier": "^2.3.1",
"rollup": "^2.36.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.30.0",
"standard-version": "^9.1.0",
"ts-node": "^10.1.0",
"typescript": "^4.1.3",
"variable-diff": "^2.0.2"
},
"scripts": {
"prebuild": "rm -rf dist",
"build": "rollup -c",
"dev": "rollup -w",
"test": "ts-node --project spec/tsconfig.json ./node_modules/jasmine/bin/jasmine --config=spec/support/jasmine.json",
"lint": "eslint src spec",
"prerelease": "npm run lint && npm run test && npm run build",
"release": "standard-version && npm publish && git push --follow-tags"
},
"keywords": [
"parser",
"expression",
"static-eval",
"eval",
"jsonpath",
"ast",
"reactive eval",
"rx-eval",
"reactive"
]
}