-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1023 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
36
37
38
39
{
"name": "peekaboo-anim",
"version": "1.0.4",
"description": "JavaScript helper for viewport based CSS animations",
"main": "dist/peekaboo.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/anacoelhovicente/peekaboo.git"
},
"scripts": {
"uglify": "mkdir -p dist && ./node_modules/.bin/uglifyjs ./src/peekaboo.js -o ./dist/peekaboo.min.js --comments -m -c ",
"prepublishOnly": "npm run-script build",
"prepare": "npm run-script build",
"build": "npm run uglify"
},
"keywords": [
"intersectionobserver",
"viewport",
"animation",
"javascript",
"CSS",
"scroll"
],
"author": "Ana Vicente <[email protected]> (https://anavicente.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/anacoelhovicente/peekaboo/issues"
},
"homepage": "https://anavicente.me/peekaboo/",
"devDependencies": {
"uglify-js": "^3.3.28"
},
"publishConfig": {
"access": "public",
"branches": [
"master"
]
}
}