-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.41 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
{
"name": "jmespath-edit",
"version": "0.3.2",
"description": "A JMESPath expression editor and preview web component",
"author": {
"name": "Glen van Ginkel"
},
"homepage": "https://glenveegee.github.io/jmespath-edit",
"license": "MPL-2.0",
"repository": "https://github.com/glenveegee/jmespath-edit",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/jmespath-edit/jmespath-edit.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build --docs",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test:watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate",
"build:prerender": "rm -rf ./www && stencil build --prerender"
},
"devDependencies": {
"@stencil/core": "^2.5.2",
"@stencil/sass": "^1.4.1",
"@types/jest": "^26.0.23",
"@types/puppeteer": "5.4.3",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"puppeteer": "7.0.4"
},
"peerDependencies": {
"@metrichor/jmespath": "^0.3.0"
},
"dependencies": {
"@metrichor/jmespath-plus": "^0.5.3",
"jmespath": "^0.15.0",
"jmespath-plus": "^0.1.7",
"rxjs": "^6.6.7"
}
}