This repository was archived by the owner on Jul 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.84 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.84 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
86
87
88
89
{
"private": false,
"license": "MIT",
"version": "0.0.8",
"name": "@dc0de/react-google-maps",
"description": "Google Maps integration with React",
"repository": "https://github.com/dcodeteam/react-google-maps.git",
"author": "Umidbek Karimov <uma.karimov@gmail.com>",
"engines": {
"node": ">=8.3.0"
},
"main": "index.js",
"module": "index.es.js",
"es2015": "index.es2015.js",
"typings": "typings/index.d.ts",
"files": [
"typings/**",
"index.js",
"index.es.js",
"index.es2015.js"
],
"scripts": {
"ci": "yarn lint && yarn tsc && yarn cover --ci --runInBand",
"ci-fix": "yarn lint --fix && yarn tsc && yarn cover",
"lint": "stylotron lint",
"test": "jest --watch",
"cover": "jest --coverage",
"codecov": "codecov -f ./coverage/lcov.info",
"start": "docz dev",
"build": "yarn build:bundle && yarn build:typings && yarn build:docs",
"build:docs": "docz build",
"build:bundle": "rollup -c rollup.config.js",
"build:typings": "rimraf typings && tsc --project tsconfig.typings.json"
},
"peerDependencies": {
"react": "^16.8.0-alpha.0",
"react-dom": "^16.8.0-alpha.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@dc0de/eslint-config": "^0.5.2",
"@dc0de/eslint-config-base": "^0.5.0",
"@dc0de/eslint-config-node": "^0.5.1",
"@dc0de/eslint-config-react": "^0.5.4",
"@dc0de/jest-preset": "^0.0.8",
"@emotion/core": "^10.0.6",
"@types/googlemaps": "^3.30.14",
"@types/jest": "^23.3.13",
"@types/react": "^16.7.20",
"@types/react-dom": "^16.0.9",
"@typescript-eslint/eslint-plugin": "^1.1.0",
"@typescript-eslint/parser": "^1.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"codecov": "^3.1.0",
"docz": "^0.13.7",
"docz-theme-default": "^0.13.7",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.4.0",
"eslint-import-resolver-typescript": "^1.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-react": "^7.11.0",
"eslint-plugin-react-hooks": "^0.0.0",
"import-sort": "^5.2.0",
"import-sort-parser-typescript": "^5.0.0",
"import-sort-style-module": "^5.0.0",
"jest": "^23.0.0",
"jest-circus": "^23.6.0",
"jest-dom": "^3.0.0",
"prettier": "^1.16.1",
"react": "16.8.0-alpha.0",
"react-dom": "16.8.0-alpha.0",
"react-testing-library": "^5.4.4",
"rimraf": "^2.6.2",
"rollup": "1.1.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-size-snapshot": "^0.8.0",
"stylotron": "^0.0.13",
"typescript": "~3.2.1"
}
}