forked from pburtchaell/react-notification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.2 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
{
"name": "react-notification",
"version": "6.6.2",
"description": "Snackbar style notification component for React",
"main": "dist/index.js",
"scripts": {
"prepublish": "npm run build",
"precommit": "echo 'Running pre-commit hooks...' && npm test",
"prebuild": "npm test",
"build": "`npm bin`/babel src -d dist",
"pretest": "npm run lint",
"test": "./bin/test.sh",
"lint": "`npm bin`/eslint src/**/*.js test/**/*.js",
"start": "node examples/server.js"
},
"pre-commit": [
"precommit"
],
"repository": {
"type": "git",
"url": "https+git://github.com/pburtchaell/react-notification"
},
"keywords": [
"react",
"component",
"react-component",
"components",
"ui",
"notify",
"notification",
"notification stack",
"snackbar"
],
"author": "Patrick Burtchaell <[email protected]> (pburtchaell.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pburtchaell/react-notification/issues"
},
"homepage": "https://github.com/pburtchaell/react-notification",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-loader": "^6.4.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.0",
"cheerio": "^0.22.0",
"enzyme": "^2.8.2",
"eslint": "^3.10.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"express": "^4.15.2",
"express-urlrewrite": "^1.2.0",
"html-webpack-plugin": "^2.28.0",
"immutable": "^3.8.1",
"jsdom": "^9.12.0",
"mocha": "^3.2.0",
"pre-commit": "^1.2.2",
"react": "^15.5.4",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"sinon": "^1.17.3",
"webpack": "^1.12.14",
"webpack-dev-middleware": "^1.10.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"prop-types": "^15.5.8"
}
}