-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 1.79 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
{
"name": "horizon-redux",
"version": "2.3.0",
"description": "A small library that helps you connect Horizon.io with Redux in a flexible, non-intrusive way.",
"main": "lib/index.js",
"files": [
"dist",
"lib",
"src",
"types"
],
"scripts": {
"clean": "rimraf lib dist es",
"build": "npm run build:commonjs && npm run build:umd && npm run build:umd:min && npm run build:es",
"prepublish": "npm run clean && npm run build",
"lint": "eslint src",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib --copy-files",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es --copy-files",
"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack"
},
"repository": {
"type": "git",
"url": "https://github.com/shanecav/horizon-redux.git"
},
"keywords": [
"redux",
"action",
"state",
"horizon.io",
"horizon",
"@horizon/client"
],
"author": "Shane Cavaliere <shane@shanecavaliere.com> (https://github.com/shanecav)",
"license": "MIT",
"bugs": {
"url": "https://github.com/shanecav/horizon-redux/issues"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-istanbul": "^1.0.3",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"cross-env": "^2.0.0",
"eslint": "^3.1.1",
"eslint-config-standard": "^5.3.5",
"eslint-plugin-flowtype": "^2.3.1",
"eslint-plugin-promise": "^2.0.0",
"eslint-plugin-standard": "^2.0.0",
"flow-bin": "^0.30.0",
"rimraf": "^2.5.4",
"webpack": "^1.13.1"
}
}