forked from kickstand-ui/kickstand-ui
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
89 lines (89 loc) · 2.96 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "kickstand-ui",
"version": "2.18.4",
"description": "Kickstand UI is a Design system and pattern library built with Web Components, so you can use them everywhere!",
"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/kickstand-ui/kickstand-ui.js",
"files": [
"dist/",
"loader/",
"src/scss/",
"dist/custom-elements.json"
],
"scripts": {
"build:icons": "svgo src/scripts/components/icon/icons/*.svg && node icon_loader.js",
"build": "npm run build:icons && stencil build",
"deploy": "stencil build && npm publish",
"deploy:beta": "stencil build && npm publish --tag beta",
"serve": "stencil build --dev --watch --serve",
"dev": "run-p start storybook",
"generate": "stencil generate",
"start": "stencil build --watch",
"storybook": "start-storybook -p 9009 -s www",
"test": "stencil test --spec --e2e",
"test:watch": "stencil test --spec --e2e --watchAll"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@open-wc/webpack-import-meta-loader": "^0.4.7",
"@stencil/core": "2.7.0",
"@stencil/postcss": "^2.1.0",
"@stencil/sass": "^1.5.2",
"@storybook/addon-a11y": "^6.3.7",
"@storybook/addon-actions": "^6.3.7",
"@storybook/addon-knobs": "^6.2.9",
"@storybook/addon-viewport": "^6.3.7",
"@storybook/addons": "^6.3.7",
"@storybook/html": "^6.3.7",
"@storybook/theming": "^6.3.7",
"@types/autoprefixer": "^9.7.2",
"autoprefixer": "^10.3.2",
"babel-loader": "^8.1.0",
"css-loader": "^3.6.0",
"cssnano": "^5.0.8",
"fs-extra": "^9.0.1",
"glob-promise": "^3.4.0",
"lit-html": "^1.3.0",
"npm-run-all": "^4.1.5",
"react-docgen-typescript-loader": "^3.7.2",
"sass": "^1.38.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"svgson": "^5.2.1",
"ts-loader": "^7.0.5"
},
"author": "Burton Smith <burton@breakstuff.io>",
"repository": {
"type": "git",
"url": "git+https://github.com/break-stuff/kickstand-ui.git"
},
"bugs": {
"url": "https://github.com/break-stuff/kickstand-ui/issues"
},
"homepage": "https://kickstand-ui.com",
"license": "MIT",
"keywords": [
"design system",
"components",
"web components",
"component library",
"ui library",
"ui framework",
"stenciljs",
"css",
"sass",
"mobile-first",
"responsive",
"front-end",
"framework",
"mobile-first",
"clarion"
]
}