forked from flackr/scroll-timeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
{
"name": "scroll-timeline-polyfill",
"version": "1.0.0",
"description": "A polyfill for scroll-driven animations on the web via ScrollTimeline",
"source": "src/index.js",
"main": "dist/scroll-timeline.js",
"scripts": {
"build": "microbundle -f iife",
"dev": "run-all \"serve\" \" microbundle watch -f iife \"",
"deploy": "npm run build",
"test:simple": "./test/setup/wpt-repo.sh && node ./test/webdriver/wpt-server-cli.js",
"test:webdriver": "./test/setup/wpt-repo.sh && node test/webdriver/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flackr/scroll-timeline.git"
},
"files": [
"src",
"dist"
],
"keywords": [
"waapi",
"scrolltimeline",
"parallax",
"animations",
"web",
"animations"
],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/flackr/scroll-timeline/issues"
},
"homepage": "https://github.com/flackr/scroll-timeline#readme",
"devDependencies": {
"dotenv": "^8.2.0",
"kleur": "^3.0.3",
"microbundle": "^0.12.2",
"run-all": "^1.0.1",
"saucelabs": "^4.4.1",
"selenium-webdriver": "^4.0.0-alpha.7",
"serve": "^11.3.2",
"tiny-glob": "^0.2.6"
},
"dependencies": {}
}