-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.42 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
{
"name": "wxue",
"version": "1.0.0-alpha.8",
"description": "跟 vue 的 composition-api 类似,小程序端的逻辑复用的解决方案。",
"main": "dist/wxue.min.js",
"scripts": {
"build": "rollup -c",
"lint": "eslint --ext .js ./",
"fix": "eslint --ext .js ./ --fix",
"test": "jest",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kouchao/wxue.git"
},
"keywords": [
"wxapp",
"wxue",
"vue"
],
"files": [
"dist"
],
"author": "kouchao",
"license": "ISC",
"bugs": {
"url": "https://github.com/kouchao/weapp-composition/issues"
},
"homepage": "https://kouchao.github.com/wxue",
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-angular": "^17.0.3",
"@rollup/plugin-inject": "^4.0.4",
"@rollup/plugin-node-resolve": "^13.3.0",
"babel-jest": "^28.1.3",
"eslint": "^8.22.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"rollup": "^2.78.0",
"rollup-plugin-terser": "^7.0.2",
"vuepress": "^1.9.7"
},
"dependencies": {
"@vue/reactivity": "^3.2.37"
}
}