-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.8 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.8 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
{
"name": "native-elements",
"version": "0.0.0",
"description": "Native HTML Elements with CSS superpowers.",
"license": "Apache-2.0",
"repository": "equinusocio/native-elements",
"private": true,
"workspaces": [
"elements/*"
],
"bugs": {
"url": "https://github.com/equinusocio/native-elements/issues"
},
"paths": {
"elements": "./elements",
"scripts": "./scripts",
"demo": "./demo"
},
"homepage": "https://github.com/equinusocio/native-elements",
"author": {
"name": "Equinusocio",
"url": "http://equinsuocha.io"
},
"engines": {
"node": ">=8"
},
"scripts": {
"build": "yarn clean && yarn lint && yarn postcss && yarn minify",
"dev": "yarn clean && yarn postcss watch",
"lint": "stylelint elements/**/*.pcss",
"clean": "node scripts/clean",
"minify": "minify elements/**/**/ne-*.css --template {{filename}}.{{ext}} && minify elements/native-elements/dist/native-elements.css --template {{filename}}.{{ext}}",
"postcss": "node scripts/postcss",
"release": "git pull && standard-version"
},
"files": [
"elements"
],
"keywords": [
"elements",
"components",
"html",
"css",
"native",
"npm",
"ui",
"kit"
],
"devDependencies": {
"autoprefixer": "7.2.1",
"chalk": "2.3.0",
"chokidar": "1.7.0",
"del": "3.0.0",
"glob-fs": "0.1.7",
"husky": "0.14.3",
"minifier": "0.8.1",
"postcss": "6.0.14",
"postcss-cli": "4.1.1",
"postcss-custom-media": "6.0.0",
"postcss-discard-comments": "2.0.4",
"postcss-easy-import": "3.0.0",
"postcss-loader": "^2.0.9",
"postcss-mixins": "6.2.0",
"postcss-nesting": "4.2.1",
"postcss-selector-not": "3.0.1",
"standard-version": "4.2.0",
"stylelint": "8.3.1",
"stylelint-config-standard": "18.0.0"
}
}