-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.83 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.83 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
{
"name": "react-material-snackbar",
"version": "3.0.0",
"description": "A material design snackbar react component.",
"main": "dist/index.js",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"jest": "^18.1.0",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
},
"scripts": {
"server": "./node_modules/.bin/webpack-dev-server --hot --inline",
"watch": "./node_modules/.bin/webpack --watch --config=webpack.build.config.js",
"build": "./node_modules/.bin/webpack --config=webpack.build.config.js -p",
"pre-deploy": "./node_modules/.bin/webpack --config=webpack.config.js",
"deploy": "npm run pre-deploy && git subtree push --prefix demo origin gh-pages",
"start": "npm run build && npm run server",
"test": "jest",
"test-coverage": "yarn run jest -- --coverage"
},
"jest": {
"unmockedModulePathPatterns": [
"/node_modules/react",
"/node_modules/react-dom",
"/node_modules/react-addons-test-utils"
]
},
"peerDependencies": {
"react": "^15.4.2"
},
"keywords": [
"react",
"reactjs",
"material design",
"material",
"material design",
"snackbar",
"react component",
"component",
"react snackbar",
"material snackbar",
"react material snackbar"
],
"homepage": "http://github.com/gokulkrishh/react-snackbar#readme",
"bugs": {
"url": "https://github.com/gokulkrishh/react-snackbar/issues"
},
"author": "Gokulakrishnan Kalaikovan <krishnangokul9@gmail.com> (http://github.com/gokulkrishh)",
"repository": {
"type": "git",
"url": "git+https://github.com/gokulkrishh/react-snackbar.git"
},
"license": "MIT"
}