forked from ionic-team/create-stencil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.5 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
{
"name": "create-stencil",
"version": "1.8.1",
"description": "Quickly create a new stencil application: npm init stencil",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"build.tsc": "tsc",
"build.bundle": "rollup -c",
"minify": "terser --compress --mangle --toplevel --output dist/index.js -- dist/index.js",
"build": "npm run build.tsc && npm run build.bundle && npm run minify",
"build.dev": "npm run build.tsc && npm run build.bundle",
"dev": "npm run build.dev && npm start",
"lint": "tslint -p .",
"version": "npm build",
"release": "np"
},
"files": [
"dist/index.js"
],
"engines": {
"node": ">=8.9.0",
"npm": ">=6.0.0"
},
"bin": {
"create-stencil": "dist/index.js"
},
"devDependencies": {
"@types/cli-spinner": "^0.2.0",
"@types/node": "^12.0.2",
"@types/yauzl": "^2.9.1",
"cli-spinner": "^0.2.10",
"np": "^5.0.2",
"replace-in-file": "^4.1.0",
"rollup": "^1.12.3",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.0.0",
"sisteransi": "^1.0.0",
"terser": "^4.0.0",
"tslint": "^5.16.0",
"tslint-ionic-rules": "0.0.21",
"turbocolor": "^2.4.5",
"typescript": "^3.4.5",
"yauzl": "^2.10.0"
},
"author": "Ionic Team & William M. Riley",
"license": "MIT",
"keywords": [
"stencil",
"stenciljs",
"web components",
"pwa",
"create-app",
"cli",
"progress web app",
"ionic"
]
}