-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.44 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
{
"name": "redux-push",
"version": "1.1.0",
"description": "Redux middleware for push notifications in the browser",
"main": "/lib/index.js",
"scripts": {
"compile": "babel --source-maps -d lib/ src/",
"prepublish": "npm run test ; npm run compile",
"precommit": "lint-staged",
"test": "NODE_ENV=test jest"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js}"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|PNG|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/jest/__mocks__/fileMock.js"
}
},
"lint-staged": {
"*.js": [
"prettier --print-width 120 --tab-width 4 --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/nialloc9/redux-push.git"
},
"keywords": [
"redux",
"push",
"notifications"
],
"author": "Niall O' Connor",
"license": "ISC",
"bugs": {
"url": "https://github.com/nialloc9/redux-push/issues"
},
"homepage": "https://github.com/nialloc9/redux-push#readme",
"dependencies": {
"push.js": "^1.0.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"husky": "^0.14.3",
"jest": "^23.1.0",
"jest-fetch-mock": "^1.6.5",
"lint-staged": "^7.2.0",
"nock": "^9.3.3",
"prettier": "^1.13.5"
}
}