File tree Expand file tree Collapse file tree 4 files changed +38
-0
lines changed Expand file tree Collapse file tree 4 files changed +38
-0
lines changed Original file line number Diff line number Diff line change
1
+ language : node_js
2
+ node_js :
3
+ - " 4"
4
+ - " 5"
5
+ - " 6"
6
+ script :
7
+ - npm run check:src
8
+ - npm run build
9
+ branches :
10
+ only :
11
+ - master
12
+ cache :
13
+ directories :
14
+ - $HOME/.npm
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ Some guidelines in reading this document:
11
11
12
12
## [ new release]
13
13
14
+ * Adds integration with Travis and adds NPM and Travis badges
14
15
* Implements reducer tests ([ #6 ] ( https://github.com/log-oscon/redux-wpapi/pull/6 ) )
15
16
* Draft on Contributions and the introduction of this ` CHANGELOG.md ` file ([ #5 ] ( https://github.com/log-oscon/redux-wpapi/pull/5 ) )
16
17
* Fix FAILURE handling ([ #3 ] ( https://github.com/log-oscon/redux-wpapi/pull/3 ) )
Original file line number Diff line number Diff line change 1
1
# redux-wpapi
2
2
[ ![ npm version] ( https://img.shields.io/npm/v/redux.svg?style=flat-square )] ( https://www.npmjs.com/package/redux-wpapi )
3
+ [ ![ Build Status] ( https://travis-ci.org/log-oscon/redux-wpapi.svg?branch=master )] ( https://travis-ci.org/log-oscon/redux-wpapi )
3
4
4
5
A [ node-wpapi] ( https://github.com/WP-API/node-wpapi ) integration for a Redux based Application.
5
6
Original file line number Diff line number Diff line change 22
22
"build" : " npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min" ,
23
23
"prepublish" : " npm run clean && npm run check:src && npm run build"
24
24
},
25
+ "repository" : {
26
+ "type" : " git" ,
27
+ "url" : " https://github.com/log-oscon/redux-wpapi.git"
28
+ },
25
29
"author" :
" log.OSCON <[email protected] > (http://www.log.pt/)" ,
26
30
"license" : " MIT" ,
31
+ "bugs" : {
32
+ "url" : " https://github.com/log-oscon/redux-wpapi/issues"
33
+ },
27
34
"dependencies" : {
28
35
"immutable" : " ^3.8.1" ,
29
36
"lodash" : " ^4.15.0" ,
37
+ "loose-envify" : " ^1.2.0" ,
30
38
"qs" : " ^6.2.1" ,
31
39
"reselect" : " ^2.5.3"
32
40
},
50
58
"rimraf" : " ^2.5.4" ,
51
59
"webpack" : " ^1.13.2" ,
52
60
"wpapi" : " ^0.9.1"
61
+ },
62
+ "npmName" : " redux-wpapi" ,
63
+ "npmFileMap" : [
64
+ {
65
+ "basePath" : " /dist/" ,
66
+ "files" : [
67
+ " *.js"
68
+ ]
69
+ }
70
+ ],
71
+ "browserify" : {
72
+ "transform" : [
73
+ " loose-envify"
74
+ ]
53
75
}
54
76
}
You can’t perform that action at this time.
0 commit comments