-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
33 lines (33 loc) · 948 Bytes
/
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
{
"name": "impetus",
"version": "0.8.8",
"main": "dist/impetus.js",
"homepage": "http://chrisbateman.github.io/impetus/",
"description": "Add momentum to anything. It's like iScroll, except not for scrolling. Supports mouse and touch events.",
"scripts": {
"prebuild": "rm -rf dist && mkdir dist",
"build": "babel src/Impetus.js --modules umd -o dist/impetus.js && uglifyjs dist/impetus.js --comments -cmo dist/impetus.min.js",
"postbuild": "cp dist/impetus.min.js docs",
"version": "npm run build && git add dist docs -f"
},
"keywords": [
"momentum",
"touch"
],
"author": "Chris Bateman",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:chrisbateman/impetus.git"
},
"bugs": {
"url": "https://github.com/chrisbateman/impetus/issues"
},
"devDependencies": {
"babel": "^5.8.23",
"uglify-js": "^2.4.24"
},
"engines": {
"npm": ">=2.13.0"
}
}