-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathpackage.json
73 lines (73 loc) · 1.84 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
{
"name": "mini-ali-ui-rpx",
"version": "1.4.1",
"description": "小程序版AntUI rpx 版本",
"repository": {
"type": "git",
"url": "git@github.com:Alibaba-mp/mini-ali-ui.git"
},
"files": [
"es"
],
"keywords": [
"antui",
"mini-program",
"mini-ali-ui",
"ali-ui"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
"@typescript-eslint/parser": "^2.17.0",
"alipay-style": "^0.1.0",
"eslint": "^5.16.0",
"eslint-config-ali": "^3.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-typescript": "^0.14.0",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.0.0",
"gulp-if": "^2.0.2",
"gulp-inject-envs": "^1.1.1",
"gulp-less": "^4.0.1",
"gulp-rename": "^1.2.3",
"lint-staged": "^8.2.0",
"mini-types": "^0.0.1",
"pre-commit": "^1.2.2",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.2.0",
"typescript": "^3.6.4"
},
"dependencies": {
"@babel/runtime": "^7.11.2"
},
"scripts": {
"lint-staged": "lint-staged",
"build": "yarn && NODE_ENV=production node scripts/compiler.js",
"pub": "npm run build && node scripts/pub.js",
"dev": "yarn && node scripts/compiler.js",
"build:rpx": "yarn && NODE_ENV=production node scripts/compiler.js --rpx",
"pub:rpx": "npm run build:rpx && node scripts/pub.js --rpx",
"dev:rpx": "yarn && node scripts/compiler.js --rpx"
},
"pre-commit": [
"lint-staged"
],
"lint-staged": {
"*.ts": [
"eslint --ext .ts",
"git add"
],
"*.js": [
"eslint",
"git add"
],
"*.less": [
"stylelint --syntax less"
]
}
}