-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
59 lines (59 loc) · 1.55 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
{
"name": "lottie-miniapp",
"version": "1.9.1",
"main": "lib/index.js",
"scripts": {
"build:debug": "gulp",
"build": "rollup -c",
"build:mini": "rollup -c rollup.config.min.js ",
"lint": "eslint --fix src",
"prepublish": "rimraf ./lib && npm run lint && gulp publish && npm run build:mini"
},
"miniprogram": "lib",
"repository": {
"type": "git",
"url": "git@github.com:landn172/lottie-miniapp.git"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/landn172/lottie-miniapp",
"files": [
"lib"
],
"keywords": [
"lottie",
"miniapp",
"minapp",
"小程序",
"weapp"
],
"author": {
"name": "landn172",
"email": "landn172@gmail.com"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"eslint": "^6.7.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"gulp": "4.0.2",
"gulp-babel": "7",
"gulp-cached": "^1.1.1",
"gulp-if": "^3.0.0",
"gulp-replace": "^1.0.0",
"rollup": "^1.27.5",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^6.0.3"
}
}