-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.9 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
{
"name": "@jyunzn/zzsper",
"version": "0.0.0-alpha.2",
"description": "This is @jyunzn/zz's plugin to picker single date",
"main": "dist/zzsper.min.js",
"jsdelivr": "dist/zzsper.min.js",
"unpkg": "dist/zzsper.min.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jyunzn/zzsper.git"
},
"homepage": "https://github.com/jyunzn/zzsper#readme",
"bugs": {
"url": "https://github.com/jyunzn/zzsper/issues"
},
"author": "jyunzn <[email protected]> (https://github.com/jyunzn)",
"files": [
"dist/",
"LICENSE",
"README.md",
"CHANGELOG.md",
"examples/"
],
"keywords": [
"zz",
"zzscript",
"plugin",
"calendar",
"browser"
],
"scripts": {
"help": "webpack --help",
"dev": "webpack serve --env m=dev --config ./build",
"build": "webpack --env m=build --mode development --config ./build",
"build:prod": "webpack --env m=build --mode production --output-filename 'zzsper.min.js' --config ./build"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@jyunzn/zz": "0.0.0-alpha.3",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"babel-loader": "^8.1.0",
"core-js": "^3.6.5",
"css-loader": "^5.0.1",
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"html-webpack-plugin": "^4.5.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"node-sass": "^5.0.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"webpack": "^5.3.2",
"webpack-cli": "^4.1.0",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.3.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint"
}
}