forked from pburtchaell/react-notification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.03 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
{
"name": "react-notification",
"version": "6.4.0",
"description": "Snackbar style notification component for React.",
"main": "dist/index.js",
"scripts": {
"precommit": "echo 'Running pre-commit hooks...' && npm test",
"prepublish": "npm run build",
"prebuild": "npm test",
"build": "`npm bin`/babel src -d dist",
"pretest": "npm run lint",
"test": "NODE_ENV=test `npm bin`/mocha --compilers js:babel-core/register --reporter spec --recursive --timeout 5000 test/setup.js test/**/*.js",
"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",
"snackbar"
],
"author": "Patrick Burtchaell <patrick@pburtchaell.com> (pburtchaell.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pburtchaell/react-notification/issues"
},
"homepage": "https://github.com/pburtchaell/react-notification",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.2",
"babel-eslint": "^6.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.4.1",
"enzyme": "^2.1.0",
"eslint": "^2.5.1",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-react": "^4.2.3",
"express": "^4.13.4",
"express-urlrewrite": "^1.2.0",
"html-webpack-plugin": "^2.10.0",
"immutable": "^3.8.1",
"jsdom": "^8.5.0",
"mocha": "^2.4.5",
"pre-commit": "^1.1.3",
"react": "^0.14.7",
"react-addons-test-utils": "^0.14.7",
"react-dom": "^0.14.7",
"sinon": "^1.17.3",
"webpack": "^1.12.14",
"webpack-dev-middleware": "^1.5.1",
"webpack-dev-server": "^1.14.1"
}
}