-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.94 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.94 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "react-redux-notify",
"version": "4.2.1",
"description": "A simple notifications component built for use with React and Redux.",
"main": "./lib/index.js",
"files": [
"dist",
"lib",
"src"
],
"scripts": {
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
"build:umd": "cross-env NODE_ENV=development webpack src/index.js dist/ReactReduxNotify.js",
"build:umd:min": "cross-env NODE_ENV=production webpack src/index.js dist/ReactReduxNotify.min.js",
"build:lib": "cross-env BABEL_DISABLE_CACHE=1 NODE_ENV=lib babel src --out-dir lib",
"test": "cross-env NODE_ENV=test jest --verbose",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"clean": "rimraf dist lib coverage npm-debug.log",
"prepublish": "npm run clean && npm run build",
"start": "opener ./examples/index.html && npm run build:umd -- --watch",
"deploy": "publish",
"postpublish": "PACKAGE_VERSION=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags"
},
"pre-commit": [
"lint",
"test",
"build"
],
"keywords": [
"react-component",
"notifications",
"react",
"reactjs",
"react notifications",
"notify",
"redux notifications"
],
"author": "Deeptesh Chagan <deepteshchagan@gmail.com> (http://github.com/deep-c)",
"repository": {
"type": "git",
"url": "https://github.com/deep-c/react-redux-notify.git"
},
"license": "MIT",
"devDependencies": {
"autoprefixer": "^6.4.1",
"babel-cli": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-jest": "^15.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-es2015-destructuring": "^6.9.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-react-remove-prop-types": "^0.2.9",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-plugin-webpack-loaders": "^0.7.1",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-runtime": "^6.11.6",
"cross-env": "^2.0.1",
"css-loader": "^0.25.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.0",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^7.1.0",
"eslint-import-resolver-webpack": "^0.5.1",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-react": "^6.2.0",
"extract-text-webpack-plugin": "^1.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.1.4",
"node-sass": "^3.9.3",
"opener": "^1.4.2",
"postcss-loader": "^0.13.0",
"pre-commit": "^1.1.3",
"precss": "^1.4.0",
"publish": "^0.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^4.4.5",
"redux": "^3.6.0",
"rimraf": "^2.5.4",
"sass-loader": "^4.0.1",
"style-loader": "^0.13.1",
"webpack": "^1.13.2"
},
"dependencies": {
"classnames": "^2.2.5",
"react-transition-group": "^1.2.1"
},
"peerDependencies": {
"prop-types": ">= 15.0.0 < 16.0.0",
"react": ">= 16.0.0 < 17.0.0",
"react-dom": ">= 16.0.0 < 17.0.0",
"react-redux": ">= 4.0.0 < 6.0.0",
"redux": ">= 3.0.0 < 4.0.0"
},
"bugs": {
"url": "https://github.com/deep-c/react-redux-notify/issues"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"src",
"node_modules"
],
"setupFiles": [
"<rootDir>/scripts/jest/setup.js"
],
"setupTestFrameworkScriptFile": "<rootDir>/scripts/jest/setupFramework.js",
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"roots": [
"<rootDir>/src"
],
"moduleNameMapper": {
"\\.(css|scss|sass)$": "<rootDir>/scripts/jest/styleMock.js"
},
"coverageDirectory": "coverage",
"collectCoverage": true,
"testURL": "http://localhost/"
}
}