forked from catbei2020/china-lantern
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.77 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
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "china-lantern",
"version": "1.6.0",
"description": "website chinese new year lantern pendant",
"author": "fz6m",
"main": "dist/china-lantern.cjs.js",
"module": "dist/china-lantern.esm.js",
"umd:main": "dist/china-lantern.js",
"unpkg": "dist/china-lantern.min.js",
"jsdelivr": "dist/china-lantern.min.js",
"homepage": "https://github.com/fz6m/china-lantern",
"repository": {
"type": "git",
"url": "https://github.com/fz6m/china-lantern"
},
"keywords": [
"lantern",
"china",
"china-lantern"
],
"files": [
"dist"
],
"scripts": {
"build": "cross-env NODE_ENV=production CSS_STATUS=inline node ./build/index.js",
"deploy": "node ./build/deploy.js",
"lint": "eslint --ext .js,.jsx \"src\"",
"lint:style": "stylelint \"src/**/*.{css,scss,less}\"",
"prettier": "prettier -c --write \"src/**/*.{js,jsx}\"",
"fix": "eslint --fix --ext .js,.jsx \"src\"",
"fix:style": "stylelint --fix \"src/**/*.{css,scss,less}\"",
"release": "standard-version --release-as minor",
"release-as": "standard-version",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"changelog-all": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"pre-publish": "yarn release && yarn changelog-all && yarn build"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@emotion/babel-plugin": "^11.1.2",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@rollup/plugin-replace": "^2.3.4",
"autoprefixer": "^9.8.6",
"chalk": "^4.1.0",
"conventional-changelog-cli": "^2.1.1",
"cross-env": "^7.0.3",
"cssnano": "^4.1.10",
"cssnano-preset-default": "^4.0.7",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"html-minifier": "^4.0.0",
"husky": "^4.3.7",
"less": "^4.0.0",
"lint-staged": "^10.5.3",
"lodash": "^4.17.20",
"node-sass": "^5.0.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"rollup": "^2.36.1",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-terser": "^7.0.2",
"runjs": "^4.4.2",
"standard-version": "^9.1.0",
"stylelint": "^13.8.0",
"stylelint-config-standard": "^20.0.0"
},
"standard-version": {
"skip": {
"changelog": true
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier -c --write"
],
"*.{css,scss,less}": [
"stylelint --fix"
]
},
"engines": {
"node": ">=10.0.0"
},
"license": "MIT"
}