-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
89 lines (89 loc) · 2.19 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
{
"name": "react-select-places",
"version": "1.1.8",
"description": "A Select control for places built from React-Select and Google Places.",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"build": "nwb build-react-component",
"clean": "nwb clean-module",
"test": "jest --silent=true --colors",
"test:coverage": "nwb test-react --coverage",
"test:watch": "nwb test-react --server",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages",
"prepublishOnly": "npm run clean && npm test && npm run build",
"lint": "eslint \"src/**/*.js\"",
"format": "prettier --single-quote --write \"src/**/*.js\""
},
"peerDependencies": {
"react": "15.x",
"react-dom": "15.x",
"react-select": "1.0.0-rc.3"
},
"devDependencies": {
"@kadira/react-storybook-addon-info": "^3.4.0",
"@kadira/storybook": "^2.21.0",
"@kadira/storybook-deployer": "^1.2.0",
"babel-eslint": "^7.2.2",
"babel-jest": "^19.0.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"eslint": "^3.19.0",
"eslint-config-prettier": "^1.7.0",
"eslint-plugin-prettier": "^2.0.1",
"eslint-plugin-react": "^6.10.3",
"jest": "^19.0.2",
"nwb": "^0.15.x",
"prettier": "^1.2.2",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-select": "1.0.0-rc.3",
"react-test-renderer": "^15.4.2",
"regenerator-runtime": "0.10.3",
"storyshots": "^3.2.2"
},
"babel": {
"presets": [
"react",
"es2015",
"stage-0"
],
"plugins": [
[
"transform-runtime",
{
"polyfill": false,
"regenerator": true
}
]
]
},
"jest": {
"verbose": true,
"moduleNameMapper": {
"^.+\\.css$": "<rootDir>/tests/CSSStub.js"
}
},
"author": "Alexis Kofman",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/akofman/react-select-places.git"
},
"keywords": [
"places",
"react",
"react-component",
"select",
"ui"
]
}