forked from no23reason/react-geolocated
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.03 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 3.03 KB
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
{
"name": "react-geolocated",
"description": "React.js Higher–Order Component for using Geolocation API",
"author": "Dan Homola",
"user": "no23reason",
"version": "0.0.0-semantic-release",
"scripts": {
"dist": "rimraf ./dist-modules && babel ./src --out-dir ./dist-modules",
"gh-pages": "npm run gh-pages:build && npm run gh-pages:deploy",
"gh-pages:build": "npm run docz:build",
"gh-pages:deploy": "gh-pages -d .docz/dist",
"prepublishOnly": "npm run dist",
"prepush": "npm run test:lint && npm run test:js",
"precommit": "pretty-quick --staged",
"semantic-release": "semantic-release",
"start": "npm run docz:dev",
"test:js": "jest --coverage --testPathPattern './tests'",
"test:lint": "eslint . --ext .js --ext .jsx --ignore-path .gitignore --ignore-pattern dist --ignore-pattern docs --cache",
"test:tdd": "jest --watch",
"test:ts": "typings-tester --config ./tests/typescript/tsconfig.json ./tests/typescript/index.tsx",
"test": "npm run test:lint && npm run test:js && npm run test:ts",
"docz:dev": "docz dev",
"docz:build": "docz build"
},
"main": "dist-modules",
"typings": "./index.d.ts",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-destructuring": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@types/react": "^16.8.19",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.0",
"babel-jest": "^25.1.0",
"cz-conventional-changelog": "^3.0.2",
"docz": "^2.0.0-rc.35",
"eslint": "^6.0.1",
"eslint-plugin-react": "^7.7.0",
"gatsby-plugin-mdx": "^1.0.39",
"gh-pages": "^2.0.0",
"husky": "^3.0.0",
"jest": "^25.1.0",
"prettier": "^1.11.1",
"pretty-quick": "^2.0.0",
"purecss": "^1.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-github-corner": "^2.1.0",
"react-test-renderer": "^16.8.6",
"rimraf": "^3.0.0",
"semantic-release": "^15.1.6",
"typescript": "^3.6.2",
"typings-tester": "^0.3.2"
},
"peerDependencies": {
"react": ">= 0.11.2 < 17.0.0"
},
"dependencies": {
"prop-types": "^15.5.8"
},
"repository": {
"type": "git",
"url": "https://github.com/no23reason/react-geolocated.git"
},
"homepage": "https://no23reason.github.io/react-geolocated/",
"bugs": {
"url": "https://github.com/no23reason/react-geolocated/issues"
},
"keywords": [
"react",
"reactjs",
"geolocation"
],
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}