-
Notifications
You must be signed in to change notification settings - Fork 112
/
package.json
80 lines (80 loc) · 2.08 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
{
"name": "@blaze/atoms",
"version": "13.1.0",
"description": "Open Source UI Toolkit - Atoms",
"author": "Gregory Pratt",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BlazeSoftware/atoms.git"
},
"bugs": {
"url": "https://github.com/BlazeSoftware/atoms/issues"
},
"homepage": "https://www.blazeui.com",
"keywords": [
"html",
"sass",
"scss",
"css",
"bem",
"itcss",
"bemit",
"ui",
"ux",
"framework",
"components",
"webcomponents",
"stencil",
"stenciljs"
],
"publishConfig": {
"access": "public"
},
"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",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/atoms/atoms.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build",
"docs": "stencil build --docs",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate",
"stylelint": "stylelint \"src/**/*.scss\"",
"prettier": "prettier --write './**/*'",
"preversion": "npm run prettier && npm run stylelint && npm test && npm run build",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"@blaze/css": "12.0.0",
"@stencil/core": "2.17.3",
"@stencil/postcss": "2.1.0",
"@stencil/router": "1.0.1",
"@stencil/sass": "1.5.2",
"@types/cssnano": "5.1.0",
"@types/jest": "27.4.1",
"@types/puppeteer": "5.4.5",
"cssnano": "5.1.13",
"jest": "27.5.1",
"jest-cli": "27.5.1",
"postcss": "8.4.16",
"prettier": "2.7.1",
"puppeteer": "13.5.1",
"stylelint": "14.11.0",
"stylelint-config-rational-order": "0.1.2",
"stylelint-config-standard": "28.0.0",
"stylelint-config-standard-scss": "^5.0.0",
"stylelint-scss": "4.3.0"
},
"dependencies": {}
}