-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1.29 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
{
"name": "xlayers-lite",
"version": "1.0.0",
"description": "xLayers Lite",
"main": "dist/index.js",
"module": "dist/index.mjs",
"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/xlayers-lite/xlayers-lite.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build --docs",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec",
"test.watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate",
"lint": "tslint --project .",
"lint.fix": "tslint --project . --fix"
},
"devDependencies": {
"@stencil/core": "1.7.5",
"tslint": "^5.20.1",
"tslint-ionic-rules": "^0.0.21",
"tslint-react": "^4.1.0",
"@types/jest": "24.0.22",
"@types/puppeteer": "1.20.2",
"jest": "24.9.0",
"jest-cli": "24.9.0",
"puppeteer": "1.20.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-node-resolve": "^5.2.0"
},
"license": "MIT",
"dependencies": {
"big-integer": "^1.6.44",
"buffer": "^5.4.0",
"jszip": "^3.2.2",
"param-case": "^2.1.1",
"pascal-case": "^2.0.1"
}
}