-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.19 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
{
"name": "redux-reducer-side-effects",
"version": "1.1.2",
"description": "Easy to follow side effect library for redux reducers",
"main": "lib/index.js",
"files": [
"/lib"
],
"repository": "https://github.com/danrigsby/redux-reducer-side-effects",
"author": "Dan Rigsby <danrigsby@gmail.com>",
"license": "MIT",
"keywords": [],
"scripts": {
"start": "npm run lint:fix && npm run build",
"build": "rimraf lib && babel src --out-dir lib --copy-files --ignore __test__",
"lint:fix": "npm run lint -- --fix",
"lint": "eslint src",
"test": "mocha \"src/**/*.test.js\" --compilers js:babel-core/register",
"test:watch": "npm run test -- --watch"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-lodash": "^3.2.11",
"babel-preset-env": "^1.5.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"chai": "^4.0.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.1.0",
"mocha": "^3.4.2",
"mocha-circleci-reporter": "^0.0.2",
"reporter": "^0.1.0",
"rimraf": "^2.6.1"
}
}