-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.98 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
65
66
67
{
"name": "espression-rx",
"version": "0.3.14",
"description": "ESpression extension to perform reactive evaluation of expressions",
"author": "Adrian Panella <[email protected]>",
"license": "MIT",
"repository": "https://github.com/ianchi/ESpression-rx.git",
"main": "dist/bundle/espression-rx.cjs.js",
"module": "dist/esm2015/espression-rx.js",
"es2015": "dist/esm2015/espression-rx.js",
"types": "dist/src/main.d.ts",
"private": false,
"dependencies": {
"is-plain-object": "^5.0.0"
},
"peerDependencies": {
"tslib": "^2.0.0",
"rxjs": "^6.5.4",
"espression": "^1.8.2"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.0.1",
"@types/jasmine": "^3.6.2",
"@types/node": "^13.13.39",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"chalk": "^4.1.0",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-notice": "^0.9.10",
"espression": "^1.8.3",
"jasmine": "^3.6.3",
"prettier": "^2.2.1",
"rollup": "^2.36.1",
"rollup-plugin-typescript2": "^0.29.0",
"rxjs": "^6.6.3",
"standard-version": "^9.1.0",
"ts-node": "^9.1.1",
"tslib": "^2.1.0",
"typedoc": "^0.20.14",
"typedoc-plugin-markdown": "^3.4.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 && git push --follow-tags && npm publish"
},
"keywords": [
"expression",
"reactive expression",
"reactive eval",
"dynamic eval",
"dynamic expression",
"static-eval",
"eval",
"rx",
"espression"
]
}