-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 996 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 996 Bytes
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
{
"name": "simr",
"version": "0.1.1",
"description": "write common redux actions and reducers quick and simply",
"main": "lib/index.js",
"devDependencies": {
"browserify": "^13.0.0",
"eslint": "^2.9.0",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-redux": "^4.4.5",
"redux": "^3.5.2"
},
"dependencies": {
"lodash": "^4.11.2"
},
"scripts": {
"build": "mkdir -p public && browserify lib/export.js -o public/simr.js",
"test": "mocha",
"lint": "eslint 'lib/*.js' && npm run lint-success -s",
"lint-success": "echo '\n\u001b[32m✓ 0 problems (0 errors, 0 warnings)\u001b[30m\n'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dalexj/simr.git"
},
"keywords": [
"redux",
"actions",
"reducers",
"simple",
"framework"
],
"author": "dalexj",
"license": "MIT",
"bugs": {
"url": "https://github.com/dalexj/simr/issues"
},
"homepage": "https://github.com/dalexj/simr"
}