This repository has been archived by the owner on Sep 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathpackage.json
53 lines (53 loc) · 1.83 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
53
{
"name": "gatsby-plugin-transition-link",
"version": "1.20.5",
"description": "A link component for page transitions in gatsby.",
"repository": "https://github.com/TylerBarnes/gatsby-plugin-transition-link",
"homepage": "https://gatsby-plugin-transition-link.netlify.com/",
"bugs": {
"url": "https://github.com/TylerBarnes/gatsby-plugin-transition-link/issues"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"animation",
"page transitions",
"gsap",
"css",
"react animation"
],
"main": "index.js",
"author": "Tyler Barnes <tyler@known.design>",
"license": "MIT",
"scripts": {
"release": "standard-version",
"copy-files": "mkdir lib || true && cp readme.md package.json lib",
"copy-files-src": "mkdir src || true && cp readme.md package.json src",
"build": "yarn copy-files && babel src --out-dir lib --copy-files --ignore **/__tests__ --extensions \".ts,.js,.tsx\" --source-maps",
"watch": "yarn copy-files && babel -w src --out-dir lib --copy-files --ignore **/__tests__ --verbose --extensions \".ts,.js,.tsx\" --source-maps",
"npm-publish": "git push --follow-tags origin master && yarn build && cd lib && npm publish && cd ../",
"release-publish": "npm run release && npm run npm-publish"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"rimraf": "^2.6.2",
"standard-version": "^5.0.2"
},
"dependencies": {
"@babel/plugin-proposal-private-methods": "^7.12.1",
"babel-plugin-root-import": "^6.5.0",
"babel-preset-gatsby-package": "^0.1.2",
"color-convert": "^1.9.3",
"json-bump": "^0.1.3",
"polyfill-array-includes": "^1.0.0",
"react-transition-group": "^2.5.0",
"requestanimationframe-timer": "^1.0.4"
},
"peerDependencies": {
"react": "^16.8.5"
}
}