forked from Chimeejs/chimee-plugin-gesture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.51 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
{
"name": "chimee-plugin-gesture",
"version": "0.0.1",
"description": "Gestrue for chimee.",
"main": "lib/index.mjs",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "npm run b-common && npm run b-es && npm run b-umd && npm run b-min",
"b-common": "rollup -c build/rollup.config.common.js",
"b-es": "rollup -c build/rollup.config.es.js",
"b-umd": "rollup -c build/rollup.config.umd.js",
"b-min": "rollup -c build/rollup.config.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Chimeejs/chimee-plugin-gesture.git"
},
"keywords": [
"chimee",
"mobile",
"gesture"
],
"author": "yandeqiang",
"license": "ISC",
"bugs": {
"url": "https://github.com/Chimeejs/chimee-plugin-gesture/issues"
},
"homepage": "https://github.com/Chimeejs/chimee-plugin-gesture#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chimee": "^0.5.1",
"chimee-helper": "^0.2.6",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^2.0.1"
},
"dependencies": {
"chimee-helper": "^0.2.6"
}
}