forked from bramus/scroll-timeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.49 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-setup": "node test/setup/checkout-wpt.mjs",
"test:wpt": "npm run test-setup && cd test && cd wpt && python wpt run --headless -y --log-wptreport ../report/data.json --log-wptscreenshot=../report/screenshots.txt --log-html=../report/index.html --inject-script ../../dist/scroll-timeline.js chrome scroll-animations",
"test:simple": "npm run test-setup && cd test && cd wpt && python wpt serve --inject-script ../../dist/scroll-timeline.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.13.1",
"run-all": "^1.0.1",
"saucelabs": "^7.2.0",
"selenium-webdriver": "^4.0.0-alpha.7",
"serve": "^13.0.2",
"tiny-glob": "^0.2.6"
}
}