-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.48 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
{
"name": "redux-reducer2",
"version": "0.1.2",
"description": "A javascript library to simplify writing redux reducers",
"homepage": "http://chetanism.github.io/redux-reducer",
"repository": "chetanism/redux-reducer",
"author": "Chetan Verma <[email protected]> (https://github.com/chetanism)",
"contributors": [
"Chetan Verma <[email protected]>"
],
"license": "MIT",
"main": "lib/index.js",
"dependencies": {},
"devDependencies": {
"autoprefixer": "^6.0.3",
"babel": "^5.8.23",
"babel-eslint": "^4.1.3",
"babelify": "^6.3.0",
"browser-sync": "^2.9.3",
"browserify": "^11.1.0",
"chai": "^3.2.0",
"cssnano": "^3.0.3",
"del": "^2.0.2",
"eslint": "^1.5.0",
"eslint-config-airbnb": "0.0.8",
"eslint-plugin-react": "^3.4.2",
"front-matter": "^1.0.0",
"gaze": "^0.5.1",
"highlight.js": "^8.8.0",
"lodash.template": "^3.6.2",
"markdown-it": "^4.4.0",
"mkdirp": "^0.5.1",
"mocha": "^2.3.2",
"moment": "^2.10.6",
"normalize.css": "^3.0.3",
"postcss": "^5.0.5",
"postcss-cssnext": "^2.1.0",
"postcss-import": "^7.0.0",
"postcss-nested": "^1.0.0",
"sinon": "^1.16.1"
},
"keywords": [
"redux",
"reducer",
"redux-reducer",
"redux-reducer2"
],
"scripts": {
"lint": "eslint src docs/js tools",
"test": "mocha test --compilers js:babel/register",
"build": "babel-node --eval \"require('./tools/build')().catch(err => console.error(err.stack))\""
}
}