forked from GoogleChromeLabs/quicklink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.63 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
48
49
50
51
52
{
"name": "quicklink",
"version": "1.0.0",
"description": "Faster subsequent page-loads by prefetching in-viewport links during idle time",
"main": "dist/quicklink.js",
"repository": "https://github.com/GoogleChromeLabs/quicklink.git",
"author": "addyosmani <[email protected]>",
"license": "Apache-2.0",
"module": "dist/quicklink.mjs",
"jsnext:main": "dist/quicklink.mjs",
"umd:main": "dist/quicklink.umd.js",
"unpkg": "dist/quicklink.umd.js",
"scripts": {
"lint": "eslint src/*.mjs test/*.js demos/*.js",
"lint-fix": "eslint src/*.mjs test/*.js --fix demos/*.js",
"start": "http-server .",
"test": "yarn run build && mocha test/bootstrap.js --recursive test",
"build": "microbundle src/index.mjs --no-sourcemap",
"prepare": "yarn run -s build",
"bundlesize": "bundlesize",
"changelog": "yarn conventional-changelog -i CHANGELOG.md -s -r 0",
"release": "cross-var yarn run build -s && cross-var git commit -am $npm_package_version && cross-var git tag $npm_package_version && git push && git push --tags"
},
"keywords": [
"prefetch",
"performance",
"fetch",
"intersectionobserver",
"background",
"speed"
],
"devDependencies": {
"babel-preset-env": "^1.7.0",
"bundlesize": "^0.17.0",
"chai": "^4.2.0",
"conventional-changelog-cli": "^2.0.11",
"cross-var": "^1.1.0",
"eslint": "^5.9.0",
"eslint-config-google": "^0.11.0",
"http-server": "^0.11.1",
"lodash": "^4.17.11",
"microbundle": "^0.9.0",
"mocha": "^5.2.0",
"puppeteer": "^1.10.0"
},
"bundlesize": [
{
"path": "./dist/*.js",
"maxSize": "2 kB"
}
]
}