1 | {
|
2 | "name": "@bulmil/core",
|
3 | "version": "0.14.1",
|
4 | "repository": "git@github.com:gomah/bulmil.git",
|
5 | "author": "Gomah <hi@gomah.fr>",
|
6 | "homepage": "https://bulmil.netlify.com/",
|
7 | "license": "MIT",
|
8 | "files": [
|
9 | "bulmil.scss",
|
10 | "src/styles/",
|
11 | "dist/"
|
12 | ],
|
13 | "keywords": [
|
14 | "bulmil",
|
15 | "bulma",
|
16 | "css",
|
17 | "stencil",
|
18 | "stenciljs",
|
19 | "storybook",
|
20 | "angular",
|
21 | "vue",
|
22 | "react",
|
23 | "ember",
|
24 | "vanilla",
|
25 | "ui-framework",
|
26 | "custom-elements",
|
27 | "webcomponents",
|
28 | "web-components"
|
29 | ],
|
30 | "main": "dist/index.cjs.js",
|
31 | "module": "dist/custom-elements/index.js",
|
32 | "es2015": "dist/custom-elements/index.js",
|
33 | "es2017": "dist/custom-elements/index.js",
|
34 | "jsnext:main": "dist/custom-elements/index.js",
|
35 | "collection": "dist/collection/collection-manifest.json",
|
36 | "collection:main": "dist/collection/index.js",
|
37 | "types": "dist/custom-elements/index.d.ts",
|
38 | "unpkg": "dist/bulmil/bulmil.js",
|
39 | "style": "dist/css/bulmil.min.css",
|
40 | "sass": "bulmil.scss",
|
41 | "publishConfig": {
|
42 | "access": "public"
|
43 | },
|
44 | "bugs": {
|
45 | "url": "https://github.com/gomah/bulmil/issues"
|
46 | },
|
47 | "scripts": {
|
48 | "build": "yarn build:clean && yarn build:components && yarn build:scss && yarn build:autoprefix && yarn build:min",
|
49 | "build:autoprefix": "postcss --use autoprefixer --map false --output dist/css/bulmil.css dist/css/bulmil.css",
|
50 | "build:min": "cleancss -o dist/css/bulmil.min.css dist/css/bulmil.css",
|
51 | "build:scss": "node-sass --include-path node_modules --include-path ../../node_modules --output-style expanded --source-map true bulmil.scss dist/css/bulmil.css",
|
52 | "build:docs": "node --max_old_space_size=1024 ./node_modules/.bin/stencil build --docs",
|
53 | "build:clean": "rimraf dist",
|
54 | "build:components": "node --max_old_space_size=1024 ./node_modules/.bin/stencil build --prod",
|
55 | "start": "node --max_old_space_size=1024 ./node_modules/.bin/stencil build --dev --watch --serve",
|
56 | "release": "yarn run test && standard-version && git push --follow-tags && npm publish",
|
57 | "watch": "node --max_old_space_size=4096 ./node_modules/.bin/stencil build --watch --recursive --serve",
|
58 | "test:lint:ts": "eslint --ext .ts,.tsx --ignore-path .gitignore --ignore-path .eslintignore src/core/",
|
59 | "test:lint:scss": "stylelint 'src/**/*.scss' --syntax scss",
|
60 | "test:stencil:e2e": "node --max_old_space_size=1024 ./node_modules/.bin/stencil test --e2e",
|
61 | "test:stencil:e2e.watch": "node --max_old_space_size=1024 ./node_modules/.bin/stencil test --e2e --watchAll",
|
62 | "test:stencil:unit": "node --max_old_space_size=1024 ./node_modules/.bin/stencil test --spec",
|
63 | "test:stencil:unit:watch": "node --max_old_space_size=1024 ./node_modules/.bin/stencil test --spec --watch",
|
64 | "test:stencil:snapshots": "node --max_old_space_size=1024 ./node_modules/.bin/stencil test --e2e --screenshot",
|
65 | "test:stencil": "yarn run test:stencil:unit && yarn run test:stencil:e2e",
|
66 | "test": "yarn run test:lint:ts && yarn run test:lint:scss && yarn run test:stencil"
|
67 | },
|
68 | "devDependencies": {
|
69 | "@stencil/angular-output-target": "^0.0.6",
|
70 | "@stencil/core": "^2.5.2",
|
71 | "@stencil/eslint-plugin": "^0.3.1",
|
72 | "@stencil/postcss": "^2.0.0",
|
73 | "@stencil/react-output-target": "^0.0.9",
|
74 | "@stencil/sass": "^1.4.1",
|
75 | "@stencil/svelte-output-target": "^0.0.3",
|
76 | "@stencil/vue-output-target": "^0.0.3",
|
77 | "@types/autoprefixer": "^10.2.0",
|
78 | "@types/jest": "26.0.22",
|
79 | "@types/node": "^14.14.41",
|
80 | "@types/puppeteer": "5.4.3",
|
81 | "@typescript-eslint/eslint-plugin": "^4.22.0",
|
82 | "@typescript-eslint/parser": "^4.22.0",
|
83 | "babel-loader": "^8.2.2",
|
84 | "clean-css-cli": "^5.2.2",
|
85 | "css-loader": "^5.2.4",
|
86 | "eslint": "^7.24.0",
|
87 | "eslint-config-prettier": "^8.2.0",
|
88 | "eslint-plugin-prettier": "^3.4.0",
|
89 | "eslint-plugin-react": "^7.23.2",
|
90 | "jest": "26.6.3",
|
91 | "jest-cli": "26.6.3",
|
92 | "node-sass": "^5.0.0",
|
93 | "postcss": "^8.2.12",
|
94 | "postcss-cli": "^8.3.1",
|
95 | "prettier": "^2.2.1",
|
96 | "puppeteer": "8.0.0",
|
97 | "rimraf": "^3.0.2",
|
98 | "sass-loader": "^10.1.1",
|
99 | "standard-version": "^9.2.0",
|
100 | "style-loader": "^2.0.0",
|
101 | "stylelint": "^13.12.0",
|
102 | "stylelint-a11y": "^1.2.3",
|
103 | "stylelint-config-recommended": "^4.0.0",
|
104 | "stylelint-prettier": "^1.2.0",
|
105 | "stylelint-scss": "^3.19.0",
|
106 | "workbox-build": "^6.1.5"
|
107 | },
|
108 | "dependencies": {
|
109 | "@creativebulma/bulma-badge": "^1.0.1",
|
110 | "@creativebulma/bulma-divider": "^1.1.0",
|
111 | "bulma-scss": "^0.9.2",
|
112 | "bulma-slider": "^2.0.4",
|
113 | "bulma-switch": "^2.0.0"
|
114 | },
|
115 | "gitHead": "7893309e9446208cf3a98c43cc16c4de97190d3d"
|
116 | }
|