-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
35 lines (35 loc) · 899 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
34
35
{
"name": "animation-frame",
"description": "An even better requestAnimationFrame",
"version": "0.3.0",
"author": {
"name": "Oleg Slobodskoi",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "[email protected]:kof/animation-frame.git"
},
"keywords": [
"animationFrame",
"RAF",
"requestAnimationFrame",
"cancelAnimationFrame"
],
"main": "index.js",
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"devDependencies": {
"uglify-js": "^2.6.2",
"browserify": "^13.0.1"
},
"scripts": {
"build": "npm run build:browserify && npm run build:uglify",
"build:browserify": "browserify -e ./index.js -o ./AnimationFrame.js -s AnimationFrame",
"build:uglify": "uglifyjs < ./AnimationFrame.js > ./AnimationFrame.min.js --comments license"
}
}