-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 1.07 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
{
"name": "drag-tracker",
"version": "1.0.0",
"description": "A simple library for dragging things around. Tracks dragging with touch or mouse.",
"main": "dist/drag-tracker.js",
"module": "src/drag-tracker.js",
"files": [
"src/",
"dist/"
],
"scripts": {
"prepublish": "bash ./scripts/prepub.sh",
"postpublish": "bash ./scripts/postpub.sh",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sphinxxxx/drag-tracker.git"
},
"author": "Andreas Borgen",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sphinxxxx/drag-tracker/issues"
},
"homepage": "https://github.com/Sphinxxxx/drag-tracker#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"gulp": "^4.0.0",
"gulp-file": "^0.4.0",
"gulp-header": "^2.0.1",
"gulp-rename": "^1.2.2",
"gulp-strip-comments": "^2.5.2",
"gulp-uglify": "^3.0.0",
"rollup": "^0.56.2",
"rollup-plugin-babel": "^3.0.3"
}
}