-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
125 lines (125 loc) · 4.89 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@dollarshaveclub/react-passage",
"version": "2.1.2",
"description": "Link and Redirect to routes safely in your react applications",
"author": "Jacob Kelley <jacob.kelley@dollarshaveclub.com>",
"license": "MIT",
"repository": "dollarshaveclub/react-passage",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"unpkg": "dist/index.js",
"types": "types/index.d.ts",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"chore:delete-changelog-branch": "if git show-ref --quiet refs/heads/chore-changelog; then git branch -D chore-changelog; fi",
"chore:branch": "git checkout -b chore-changelog",
"chore:changelog": "conventional-changelog -p eslint -i CHANGELOG.md -s -r 0",
"chore:setup-next-work": "git checkout master && npm run chore:delete-changelog-branch",
"chore:pr": "git add . && git commit -m '[chore] updates changelog' --no-verify && git push origin chore-changelog -f",
"chore:setup-changelog": "git checkout master && git pull",
"chore": "npm run chore:delete-changelog-branch && npm run chore:branch && npm run chore:changelog && npm run chore:pr && npm run chore:setup-next-work",
"eslint": "eslint . --fix",
"eslint:ci": "eslint .",
"grammar": "write-good *.md --no-passive",
"markdownlint": "markdownlint *.md",
"prepush": "npm run build && npm test",
"pre-commit-msg": "Echo 'Running pre-commit checks...' && exit 0",
"postpublish": "git tag $npm_package_version && git push origin --tags && npm run chore",
"posttest": "npm run eslint",
"test": "jest",
"test:docs": "npm run grammar && npm run markdownlint && npm run spelling",
"test:docs:ci": "npm run grammar && npm run markdownlint && npm run spelling:ci",
"test:watch": "jest --watch",
"build": "rollup -c",
"start": "rollup -c -w",
"spelling": "mdspell '**/*.md' '!**/node_modules/**/*.md' --ignore-numbers",
"spelling:ci": "mdspell '**/*.md' '!**/node_modules/**/*.md' --ignore-numbers --report",
"prepare": "npm run build",
"prepublish": "npm test && npm run build",
"deploy": "gh-pages -d example/build"
},
"peerDependencies": {
"prop-types": "^15.5.4",
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0",
"react-router": ">=4",
"react-router-dom": ">=4"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.1.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@types/react": "^16.7.13",
"@types/react-router-dom": "^5.1.3",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^25.3.0",
"babel-polyfill": "^6.26.0",
"conventional-changelog-cli": "^2.0.11",
"cross-env": "^7.0.2",
"eslint": "^5.16.0",
"eslint-config-dollarshaveclub": "^8.0.1",
"eslint-config-prettier": "^6.9.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jest": "^22.19.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^2.3.0",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-typescript-filenames": "^8.0.0",
"gh-pages": "^2.0.1",
"husky": "^4.2.3",
"jest": "^24.9.0",
"markdown-spellcheck": "^1.3.1",
"markdownlint-cli": "^0.22.0",
"prettier": "^1.19.1",
"prettier-config-dollarshaveclub": "^8.0.0",
"prettier-eslint": "^9.0.1",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-is": "^16.13.1",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-test-renderer": "^16.6.0",
"rollup": "^2.3.4",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-url": "^3.0.1",
"write-good": "^1.0.2"
},
"files": [
"dist",
"src",
"types"
],
"dependencies": {
"history": "^4.10.1"
}
}