-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
51 lines (51 loc) · 1.5 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
{
"name": "redux-timer-middleware",
"version": "1.0.0",
"description": "redux-timer-middleware",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib dist",
"build": "babel src --out-dir lib",
"build:umd": "webpack src/index.js dist/redux-timer-middleware.js && NODE_ENV=production webpack src/index.js dist/redux-timer-middleware.min.js",
"lint": "eslint src test",
"test": "NODE_ENV=test jest",
"test:watch": "NODE_ENV=test npm test -- --watch",
"prepublish": "npm run test && npm run clean && npm run build && npm run build:umd"
},
"repository": {
"type": "git",
"url": "https://github.com/matpaul/redux-timer-middleware.git"
},
"keywords": [
"redux-timer-middleware",
"timer",
"middleware"
],
"author": "Matyukov Pavel",
"license": "MIT",
"bugs": {
"url": "https://github.com/matpaul/redux-timer-middleware/issues"
},
"homepage": "https://github.com/matpaul/redux-timer-middleware",
"devDependencies": {
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-jest": "^17.0.2",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"eslint": "^3.10",
"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",
"expect": "^1.6.0",
"jest": "^17.0.3",
"redux-mock-store": "^1.2.1",
"redux": "^3.6.0",
"rimraf": "^2.3.4",
"webpack": "^1.9.6"
},
"dependencies": {
"invariant": "^2.0.0"
}
}