forked from NervJS/taro-plugin-platform-lark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.75 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
{
"name": "@tarojs/plugin-platform-lark",
"version": "1.1.0",
"description": "taro platform plugin for lark",
"main": "index.js",
"files": [
"index.js",
"dist",
"types"
],
"types": "types/index.d.ts",
"scripts": {
"build": "rimraf ./dist & rollup -c",
"dev": "rimraf ./dist & rollup -c -w",
"eslint": "eslint --fix .",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NervJS/taro-plugin-platform-lark.git"
},
"keywords": [
"taro",
"plugin",
"lark"
],
"author": "changcllong",
"homepage": "https://github.com/NervJS/taro-plugin-platform-lark",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@tarojs/components": "^3.3.0",
"@tarojs/service": "^3.3.0",
"@tarojs/shared": "^3.3.0",
"@types/node": "^16.0.1",
"@types/react": "17.0.1",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^5.1.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"rollup": "^2.40.0",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.2.3"
},
"peerDependencies": {
"@tarojs/components": "^3.3.0",
"@tarojs/service": "^3.3.0",
"@tarojs/shared": "^3.3.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run eslint",
"prettier .prettierrc.js --write",
"git add ."
]
}
}