This repository has been archived by the owner on Jun 6, 2024. It is now read-only.
forked from anupvarghese/redux-notifications-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.51 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
{
"name": "@ordermentum/notifications-widget",
"version": "1.2.0",
"description": "Notification middleware for redux",
"main": "lib/index.js",
"author": "Ordermentum",
"license": "MIT",
"scripts": {
"test": "nyc npm run spec",
"spec": "./node_modules/.bin/_mocha -R spec ./test/test_helper.js --recursive test/**",
"clean": "rm -rf lib dist coverage",
"lint": "eslint src test",
"build": "babel src --out-dir lib",
"prepublish": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ordermentum/notifications-widget.git"
},
"homepage": "https://github.com/ordermentum/notifications-widget.git",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.0",
"babel-istanbul": "^0.11.0",
"babel-loader": "^6.2.7",
"babel-plugin-istanbul": "^2.0.3",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.1",
"enzyme": "^2.7.0",
"eslint": "^3.9.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"nyc": "^8.3.2",
"react-addons-test-utils": "^15.4.2",
"redux": "^3.6.0",
"rimraf": "^2.5.4",
"sinon": "^1.17.6"
},
"peerDependencies": {
"prop-types": "^15.6.2",
"react": "16.4.1",
"react-dom": "^15.4.2",
"redux": ">1.0.0"
}
}