-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
31 lines (31 loc) · 834 Bytes
/
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
{
"name": "link-react",
"version": "3.0.0",
"description": "A generalized link <a> component that allows client-side navigation while taking into account exceptions.",
"license": "MIT",
"author": "Baz <baz@thinkloop.com>",
"homepage": "https://github.com/thinkloop/link-react#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/thinkloop/link-react.git"
},
"bugs": {
"url": "https://github.com/thinkloop/link-react/issues"
},
"keywords": [
"link",
"<a>",
"href",
"routing",
"navigation",
"component",
"react"
],
"main": "link.jsx",
"scripts": {
"publish_to_npm": "clear; echo \"* * * * PUBLISH * * * *\"; NODE_ENV=development npm version major && git push --follow-tags && npm publish"
},
"peerDependencies": {
"react": ">=15"
}
}