forked from hug-sun/mini-element
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.14 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": "mini-element",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --runInBand",
"build:next": "rollup -c",
"build:theme": "gulp build --gulpfile packages/theme-chalk/gulpfile.js && cp-cli packages/theme-chalk/lib lib/theme-chalk",
"lint": "eslint --no-error-on-unmatched-pattern --ext .vue --ext .js --ext .jsx packages/**/ src/**/ --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/su37josephxia/mini-element.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/su37josephxia/mini-element/issues"
},
"homepage": "https://github.com/su37josephxia/mini-element#readme",
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "node scripts/verifyCommit.js",
"pre-push": "npm run test",
"codecov": "codecov"
}
},
"dependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-replace": "^2.3.4",
"@vue/babel-plugin-jsx": "^1.0.0-rc.3",
"@vue/compiler-sfc": "3.0.2",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "^2.0.0-beta.9",
"babel": "^6.23.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-preset-env": "^1.7.0",
"codecov": "^3.8.1",
"cp-cli": "^2.0.0",
"eslint": "^7.13.0",
"eslint-formatter-pretty": "^4.0.0",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^7.1.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"rollup": "^2.33.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-scss": "^2.6.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^6.0.0-beta.11",
"tslib": "^2.0.3",
"typescript": "^4.0.5",
"vue": "^3.0.2",
"vue-jest": "5.0.0-alpha.5"
}
}