-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 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
{
"name": "inline-javascript-sandbox",
"version": "0.0.1",
"description": "Inline JavaScript Sandbox",
"author": "Nathaniel M. Capule",
"scripts": {
"build": "stencil build",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate"
},
"devDependencies": {
"@stencil/core": "^2.0.0",
"@stencil/sass": "^1.4.1",
"workbox-build": "^4.3.1"
},
"license": "MIT",
"dependencies": {
"codejar": "^3.3.0",
"highlight.js": "^10.7.1",
"lz-string": "^1.4.4",
"rxjs": "^6.6.7",
"uuid": "^8.3.2"
},
"main": "./dist/index.cjs.js",
"module": "./dist/index.js",
"es2015": "./dist/esm/index.mjs",
"es2017": "./dist/esm/index.mjs",
"types": "./dist/types/components.d.ts",
"unpkg": "./dist/ionic/ionic.js",
"collection:main": "./dist/collection/index.js",
"collection": "./dist/collection/collection-manifest.json",
"files": [
"dist/"
]
}