forked from songyijian/DragDOM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.5 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
{
"name": "dragdomjs",
"version": "1.2.0",
"description": "兼容手机触控屏的DOM拖拽",
"main": "./src/index.js",
"keywords": [
"drag",
"dragdom",
"dragdomjs",
"DragDOM",
"Drag",
"html5",
"mobile",
"touchdrag"
],
"author": {
"name": "yijian.song",
"email": "[email protected]",
"url": "https://github.com/songyijian"
},
"directories": {
"test": "test"
},
"scripts": {
"dev": "rollup -w -c ./build/rollup.config.dev.js",
"build": "rollup -c ./build/rollup.config.prod.js",
"pushnpm": "npm run build && git add . && git commit -m 'npm publish' && git push && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/songyijian/DragDOM.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/songyijian/DragDOM/issues"
},
"homepage": "https://github.com/songyijian/DragDOM#readme",
"devDependencies": {
"@babel/cli": "^7.11.5",
"@babel/core": "^7.11.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"babel-loader": "^8.1.0",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-livereload": "^1.3.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-uglify": "^6.0.4"
},
"dependencies": {
"rollup-plugin-clear": "^2.0.7"
}
}