-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
68 lines (68 loc) · 2.05 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
{
"name": "@l3-lib/ui-style",
"version": "0.0.29",
"description": "L3vels UI CSS",
"main": "dist/index.css",
"scripts": {
"auto:bump-patch": "node scripts/autobump_patch.js",
"auto:bump-minor": "node scripts/autobump_minor.js",
"auto:bump-major": "node scripts/autobump_major.js",
"test": "npm run build && npm run test:without-build",
"test:without-build": "jest",
"validate-icons": "node scripts/validate-meta.js",
"generate-meta": "node scripts/generate-meta.js",
"compile-styles": "sass --style=expanded ./src/index.scss dist/index.css",
"copy-files": "cp -r src/files/ dist/",
"css-minify": "cleancss --level 1 --format breaksWith=lf --output dist/index.min.css dist/index.css",
"build": "npm run compile-styles && npm run css-minify && npm run copy-files",
"plop": "plop",
"stylelint": "stylelint \"**/*.scss\"",
"stylelint:fix": "stylelint \"**/*.scss\" --fix"
},
"peerDependencies": {
"prop-types": "^15.7.2",
"react": ">=16.9.0",
"stylelint": "^14.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/l3vels/l3-ui-style.git"
},
"keywords": [
"CSS",
"THEMES"
],
"author": "l3vels.xyz",
"license": "MIT",
"files": [
"src/",
"dist/",
"stylelint-config/"
],
"bugs": {
"url": "https://github.com/l3vels/l3-ui-style/issues"
},
"homepage": "https://github.com/l3vels/l3-ui-style#readme",
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@types/jest": "^27.4.1",
"clean-css-cli": "^4.3.0",
"husky": "^8.0.3",
"jest": "^27.5.1",
"node-plop": "^0.26.2",
"plop": "^2.7.4",
"prettier": "^2.0.5",
"sass": "^1.51.0",
"stylelint": "^14.2.0",
"stylelint-config-recommended": "^7.0.0",
"stylelint-config-recommended-scss": "^6.0.0",
"stylelint-config-standard": "^24.0.0",
"stylelint-config-standard-scss": "^3.0.0"
},
"dependencies": {
"postcss": "8.4.4",
"postcss-scss": "^4.0.3",
"postcss-value-parser": "4.1.0"
}
}