This repository has been archived by the owner on Feb 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.64 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
{
"name": "redux-wordpress",
"description": "Redux actions and reducer to work with WordPress REST API",
"license": "MIT",
"author": "Eugene Manuilov <[email protected]>",
"homepage": "https://github.com/eugene-manuilov/redux-wordpress#readme",
"bugs": {
"url": "https://github.com/eugene-manuilov/redux-wordpress/issues"
},
"version": "1.1.0",
"main": "lib/index",
"files": [
"*.md",
"dist",
"LICENSE",
"lib",
"src"
],
"keywords": [
"redux",
"wordpress",
"wordpress-rest-api"
],
"repository": {
"type": "git",
"url": "[email protected]:eugene-manuilov/redux-wordpress.git"
},
"scripts": {
"build": "npm run build:commonjs & npm run build:umd & npm run build:umd:min",
"build:commonjs": "mkdir -p lib && babel ./src -d lib",
"build:umd": "webpack dist/redux-wordpress.js",
"build:umd:min": "NODE_ENV=production webpack dist/redux-wordpress.min.js",
"test": "jest",
"prepublish": "npm run build"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^19.0.0",
"babel-loader": "^6.4.1",
"babel-preset-env": "^1.4.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"faker": "^4.1.0",
"jest": "^19.0.2",
"jest-fetch-mock": "^1.1.1",
"redux": "^3.6.0",
"redux-mock-store": "^1.2.3",
"redux-thunk": "^2.2.0",
"webpack": "^2.4.1"
},
"peerDependencies": {
"redux": "^2.0.0 || ^3.0.0",
"redux-thunk": "^2.0.0"
},
"jest": {
"automock": false,
"setupFiles": [
"./jestrc.js"
]
}
}