forked from gribnoysup/react-yandex-maps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.9 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.9 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
90
91
92
93
94
95
{
"name": "react-yandex-maps",
"version": "2.1.5",
"description": "Yandex Maps API bindings for React",
"main": "main/index.js",
"module": "es/index.js",
"files": [
"es",
"main",
"umd",
"README.md",
"LICENSE"
],
"scripts": {
"prepublish": "npm run build",
"postpublish": "npm run publish:examples",
"precommit": "lint-staged",
"examples": "webpack-dev-server --config ./examples/webpack.config.js",
"build:examples": "rm -rf ./examples/build && NODE_ENV=production webpack -p --config ./examples/webpack.config.js",
"build": "NODE_ENV=production node ./tools/build.js",
"dev": "babel src -w -d main --ignore __tests__",
"prettier": "npm run prettier:src && npm run prettier:examples",
"prettier:src": "prettier --single-quote --trailing-comma es5 --write \"./src/**/*.js\"",
"prettier:examples": "prettier --single-quote --trailing-comma es5 --write \"./examples/src/**/*.js\"",
"prettier:staged": "prettier --single-quote --trailing-comma es5 --write",
"publish:examples": "npm run build:examples && gh-pages -d ./examples/build"
},
"lint-staged": {
"*.js": [
"npm run prettier:staged",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/gribnoysup/react-yandex-maps.git"
},
"peerDependencies": {
"react": "^0.14.9 || ^15.3.0 || ^16.0.0"
},
"dependencies": {
"prop-types": "^15.6.1"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.3.2",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-react-remove-prop-types": "^0.3.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-1": "^6.22.0",
"brace": "^0.10.0",
"eslint": "^3.8.1",
"eslint-config-react-app": "^0.5.1",
"eslint-plugin-flowtype": "^2.21.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"file-loader": "^0.10.0",
"fs-extra": "^2.0.0",
"gh-pages": "^0.12.0",
"gzip-size": "^3.0.0",
"html-webpack-plugin": "^2.28.0",
"husky": "^0.13.2",
"in-publish": "^2.0.0",
"invariant": "^2.2.2",
"json-loader": "^0.5.4",
"lint-staged": "^4.0.1",
"lodash": "^4.17.4",
"prettier": "^1.5.2",
"pretty-bytes": "^4.0.2",
"raw-loader": "^0.5.1",
"react": "^16.0.0",
"react-ace": "^5.4.0",
"react-dom": "^16.0.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"source-map-loader": "^0.1.6",
"styled-components": "^2.2.1",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
},
"keywords": [
"react",
"react-component",
"yandex",
"maps",
"yandex-maps"
],
"author": "Sergey Petushkov <petushkov.sergey@gmail.com>",
"license": "MIT"
}