-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
40 lines (40 loc) · 1.09 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
{
"name": "data-prefetch-link",
"version": "1.1.4",
"description": "Extends Next.js <Link> to allow invoking getInitialProps when prefetching a page",
"main": "./dist/link.js",
"scripts": {
"build": "babel src --presets=@babel/preset-react,@babel/preset-env --plugins=@babel/plugin-proposal-class-properties --out-dir dist",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scaleapi/data-prefetch-link.git"
},
"keywords": [
"nextjs",
"caching",
"prefetch",
"react"
],
"author": "Scale",
"license": "MIT",
"bugs": {
"url": "https://github.com/scaleapi/data-prefetch-link/issues"
},
"homepage": "https://github.com/scaleapi/data-prefetch-link#readme",
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "7.0.0"
},
"peerDependencies": {
"next": ">= 3.0.2"
},
"dependencies": {
"prop-types": "^15.6.1",
"prop-types-exact": "^1.1.2"
}
}