forked from PrivateSky/cardinal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 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
{
"name": "cardinal",
"version": "0.1.2",
"description": "Cardinal is a PrivateSky sub-project. Cardinal framework empowers web components capabilities to be used in Self-Sovereign Applications (SSApps).",
"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/cardinal/cardinal.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build --docs",
"build-dev": "stencil build --dev",
"build-prod": "stencil build --prod",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate",
"dist": "node ./bin/build_dist.js",
"build-dossier": "node ./bin/build_dossier.js"
},
"dependencies": {
"@stencil/router": "^1.0.1",
"prismjs": "^1.21.0"
},
"devDependencies": {
"@stencil/core": "^1.17.3",
"octopus": "git+http://github.com/privatesky/octopus.git#1.0.3"
},
"license": "MIT"
}