-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
77 lines (77 loc) · 3.12 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
{
"name": "taro-dynamic-import-weapp",
"version": "0.0.0",
"description": "Taro 3.0 微信小程序动态加载插件",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"start": "yarn run demo",
"demo": "yarn workspace demo run dev:weapp",
"demo:compress": "cross-env NODE_ENV=production yarn workspace demo run dev:weapp",
"compile": "lerna run compile",
"lint": "yarn run lint:es && yarn run lint:prettier && yarn run lint:style",
"lint:es": "eslint --ext .js,.jsx,.ts,.tsx ./ --cache --quiet",
"lint:style": "stylelint \"**/*.{css,less}\" --syntax less",
"lint:prettier": "prettier --list-different \"**/*.{css,less,js,jsx,ts,tsx,json,yml,yaml,md}\"",
"fix": "yarn run fix:es && yarn run fix:prettier && yarn run fix:style",
"fix:es": "eslint --ext .js,.jsx,.ts,.tsx ./ --cache --quiet --fix",
"fix:style": "stylelint \"**/*.{css,less}\" --syntax less --fix",
"fix:prettier": "prettier --write \"**/*.{css,less,js,jsx,ts,tsx,json,yml,yaml,md}\"",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test": "yarn run test:coverage",
"publish": "lerna publish from-git",
"version": "lerna version --conventional-commits --no-changelog --no-push",
"version:prerelease": "yarn run compile && yarn run version -- --conventional-prerelease",
"version:stable": "yarn run compile && yarn run version -- --conventional-graduate",
"version:alpha": "yarn run version:prerelease -- --preid=alpha",
"version:beta": "yarn run version:prerelease -- --preid=beta",
"version:rc": "yarn run version:prerelease -- --preid=rc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JiyuShao/taro-dynamic-import-weapp.git"
},
"author": "Jiyu Shao",
"license": "ISC",
"bugs": {
"url": "https://github.com/JiyuShao/taro-dynamic-import-weapp/issues"
},
"homepage": "https://github.com/JiyuShao/taro-dynamic-import-weapp#readme",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@babel/register": "^7.12.10",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"@typescript-eslint/typescript-estree": "^4.14.0",
"cross-env": "^7.0.3",
"eslint": "^7.16.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lerna": "^3.22.1",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"stylelint": "^13.8.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"typescript": "^4.1.3"
}
}