forked from anson09/rqcomponents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.47 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
{
"name": "@rqjs/rqcomponents",
"version": "1.0.0",
"description": "A Component Library for Ricequant.",
"main": "./lib/index.js",
"module": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/anson09/rqcomponents.git"
},
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"lib",
".browserslistrc"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"start": "./scripts/updep.sh && PARCEL_AUTOINSTALL=false parcel watch ./demo/index.html --out-dir demo/dist --cache-dir demo/.cache --public-url /rqcomponents/",
"dev": "./scripts/updep.sh && rollup -w -c rollup.config.js",
"build": "./scripts/updep.sh && rm -rf lib && rollup -c rollup.config.js",
"postbuild": "./scripts/postbuild.sh",
"lint": "./scripts/lint.sh",
"clean": "rm -rf demo/.cache demo/dist",
"release": "standard-version --no-verify",
"postinstall": "husky install",
"prepack": "pinst --disable && npm run build && mv .browserslistrc.tpl .browserslistrc",
"postpack": "pinst --enable && mv .browserslistrc .browserslistrc.tpl"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@rollup/plugin-url": "^6.1.0",
"@vue/component-compiler-utils": "^3.2.2",
"autoprefixer": "^10.3.3",
"core-js": "^3.16.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-vue": "^7.17.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"normalize.css": "^8.0.1",
"parcel-bundler": "^1.12.5",
"pinst": "^2.1.6",
"postcss": "^8.3.6",
"postcss-css-variables": "^0.18.0",
"prettier": "^2.3.2",
"regenerator-runtime": "^0.13.9",
"rollup": "^2.56.3",
"rollup-plugin-image-files": "^1.4.2",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-vue": "^5.1.9",
"sass": "^1.38.1",
"standard-version": "^9.3.1",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended-scss": "^4.3.0",
"stylelint-scss": "^3.20.1",
"vue": "^2.6.14",
"vue-hot-reload-api": "^2.3.4",
"vue-template-compiler": "^2.6.14"
},
"dependencies": {
"@rqjs/rqthemes": "^2.0.0",
"axios": "^0.21.1",
"lodash": "^4.17.21"
},
"peerDependencies": {
"vue": "^2.6.11"
}
}