UNPKG

2.05 kBJSONView Raw
1{
2 "name": "redux-actions",
3 "version": "1.2.2",
4 "description": "Flux Standard Action utlities for Redux",
5 "main": "lib/index.js",
6 "module": "es/index.js",
7 "jsnext:main": "es/index.js",
8 "scripts": {
9 "build:es": "cross-env BABEL_ENV=es babel src --out-dir es --ignore *-test.js",
10 "build:commonjs": "babel src --out-dir lib --ignore *-test.js",
11 "build:umd": "cross-env NODE_ENV=development webpack",
12 "build:umd:min": "cross-env NODE_ENV=production webpack",
13 "build": "npm run clean && npm run build:es && npm run build:commonjs && npm run build:umd && npm run build:umd:min",
14 "clean": "rimraf lib es",
15 "lint": "esw build src webpack.config --color",
16 "lint:fix": "npm run lint -- --fix",
17 "lint:watch": "npm run lint -- --watch",
18 "prepublish": "npm run lint && npm run test && npm run build",
19 "test": "mocha --compilers js:babel-register src/**/*-test.js",
20 "test:watch": "npm run test -- --watch src/**/*-test.js"
21 },
22 "files": [
23 "es",
24 "lib",
25 "dist"
26 ],
27 "keywords": [
28 "flux",
29 "redux",
30 "fsa",
31 "actions"
32 ],
33 "author": "Andrew Clark <acdlite@me.com>",
34 "bugs": {
35 "url": "https://github.com/acdlite/redux-actions/issues"
36 },
37 "homepage": "https://github.com/acdlite/redux-actions",
38 "repository": {
39 "type": "git",
40 "url": "https://github.com/acdlite/redux-actions.git"
41 },
42 "license": "MIT",
43 "devDependencies": {
44 "babel-cli": "^6.7.7",
45 "babel-core": "^6.7.7",
46 "babel-eslint": "^6.1.1",
47 "babel-loader": "^6.2.4",
48 "babel-preset-es2015": "^6.6.0",
49 "babel-preset-stage-0": "^6.5.0",
50 "babel-register": "^6.7.2",
51 "chai": "^3.0.0",
52 "cross-env": "^2.0.0",
53 "eslint": "^2.8.0",
54 "eslint-config-airbnb-base": "^1.0.3",
55 "eslint-plugin-import": "^1.5.0",
56 "eslint-watch": "^2.1.13",
57 "flux-standard-action": "^1.0.0",
58 "mocha": "^2.2.5",
59 "rimraf": "^2.5.3",
60 "webpack": "^1.13.1"
61 },
62 "dependencies": {
63 "invariant": "^2.2.1",
64 "lodash": "^4.13.1",
65 "reduce-reducers": "^0.1.0"
66 }
67}