-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
91 lines (91 loc) · 2.58 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@lotus-ui/tools",
"version": "0.2.5",
"description": "组件库打包工具",
"main": "index.js",
"repository": "https://github.com/lotus-ui/lotus-tools",
"author": "wangxingkang <wangxingkang@sensoro.com>",
"license": "MIT",
"bin": {
"lotus-tools": "lib/cli.js"
},
"keywords": [
"cli",
"tools",
"lotus-ui"
],
"files": [
"lib"
],
"rootDir": "src",
"scripts": {
"bootstrap": "yarn || npm i",
"build": "father-build"
},
"dependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-member-expression-literals": "^7.2.0",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/plugin-transform-property-literals": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/plugin-transform-spread": "^7.2.2",
"@babel/plugin-transform-template-literals": "^7.4.4",
"@babel/plugin-transform-typescript": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"autoprefixer": "^9.6.1",
"babel-plugin-import": "^1.12.1",
"babel-plugin-inline-import-data-uri": "^1.0.1",
"chalk": "^2.4.2",
"commander": "^3.0.0",
"debug": "^4.1.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-less": "^4.0.1",
"gulp-sourcemaps": "^2.6.5",
"gulp-strip-code": "^0.1.4",
"gulp-typescript": "^5.0.1",
"joycon": "^2.2.5",
"less": "^3.10.3",
"less-plugin-npm-import": "^2.1.0",
"lodash": "^4.17.15",
"merge2": "^1.2.4",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"object-assign": "^4.1.1",
"postcss": "^7.0.17",
"require-from-string": "^2.0.2",
"rimraf": "^3.0.0",
"rucksack-css": "^1.0.2",
"through2": "^3.0.1",
"typescript": "^3.5.3"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/gulp": "^4.0.6",
"@types/less": "^3.0.0",
"@types/lodash": "^4.14.137",
"@types/merge2": "^1.1.4",
"@types/mkdirp": "^0.5.2",
"@types/node": "^12.7.2",
"@types/object-assign": "^4.0.30",
"@types/react": "^16.9.2",
"@types/rimraf": "^2.0.2",
"@types/through2": "^2.0.34",
"father-build": "^1.6.1",
"react": "^16.9.0",
"ts-node": "^8.3.0"
},
"engines": {
"node": ">=8.9.0"
},
"publishConfig": {
"access": "public"
}
}