forked from MakhBeth/native-elements
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.9 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.9 KB
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
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@native-elements/core",
"version": "1.6.7",
"description": "Native HTML Elements with CSS superpowers.",
"main": "native-elements.css",
"repository": "https://github.com/n-elements/core",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/n-elements/core/issues"
},
"homepage": "https://native-elements.dev",
"author": {
"name": "Mattia Astorino",
"url": "http://equinusocio.dev"
},
"engines": {
"node": ">=12"
},
"scripts": {
"clean": "yarn rimraf ./props ./elements ./native-elements.css .cache",
"watch": "parcel demo/index.html --out-dir ./.dev --no-source-maps",
"dev": "run-s clean watch",
"prebuild": "yarn clean",
"build:css": "parcel build ./src/elements/core/core.pcss --out-dir ./ -o native-elements.css --no-source-maps",
"copy:source": "copyfiles -u 2 ./src/elements/**/* ./elements",
"copy:props": "copyfiles -u 1 ./src/props/**/* ./",
"build": "run-s build:css",
"postbuild": "run-s copy:source copy:props size",
"release": "git pull && standard-version --release-as patch && git push --follow-tags",
"release:minor": "git pull && standard-version --release-as minor && git push --follow-tags",
"prepack": "run-s build",
"size": "size-limit",
"update:deps": "yarn upgrade-interactive --latest && yarn upgrade",
"update:cssdb": "npx browserslist@latest --update-db"
},
"files": [
"props",
"elements",
"native-elements.css"
],
"keywords": [
"elements",
"components",
"html",
"css",
"native",
"npm",
"ui",
"library"
],
"size-limit": [
{
"webpack": false,
"limit": "20 KB",
"path": "./native-elements.css"
}
],
"devDependencies": {
"@babel/core": "7.11.6",
"@babel/preset-env": "7.11.5",
"@size-limit/preset-small-lib": "4.6.0",
"babel-eslint": "10.1.0",
"babel-plugin-root-import": "6.5.0",
"eslint": "7.8.1",
"eslint-plugin-standard": "4.0.1",
"npm-run-all": "4.1.5",
"parcel-bundler": "1.12.4",
"postcss-cli": "7.1.2",
"postcss-dark-theme-class": "0.4.0",
"rimraf": "3.0.2",
"size-limit": "4.6.0",
"standard-version": "9.0.0",
"stylelint": "13.7.0",
"stylelint-config-standard": "20.0.0"
},
"browserslist": [
"last 1 Chrome versions",
"last 1 Firefox versions",
"last 1 Safari versions",
"last 1 Edge versions"
],
"dependencies": {
"camelcase": "6.0.0",
"copyfiles": "2.3.0",
"cssnano": "4.1.10",
"cssnano-preset-advanced": "4.0.7",
"postcss-easy-import": "3.0.0",
"postcss-mixins": "6.2.3",
"postcss-preset-env": "6.7.0",
"serialize-to-js": "3.1.1"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/native-elements",
"logo": "https://rawcdn.githack.com/n-elements/core/968a7e27f8152f077e1e227604a58ed5ca708a1e/logo.txt"
},
"resolutions": {
"node-forge": "^0.10.0"
}
}