-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.55 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
59
60
61
62
{
"name": "redux-action-schema",
"version": "0.7.3",
"description": "better action management for redux",
"main": "dist/index.js",
"scripts": {
"lint": "node_modules/.bin/eslint --ignore-pattern dist/ .",
"tape": "npm run build && node test/index.js | node_modules/.bin/faucet",
"test": "npm run lint && npm run tape",
"build": "mkdir -p dist && node_modules/.bin/rollup -c",
"prepublish": "npm run build",
"deploy": "npm test && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/modernserf/redux-action-schema.git"
},
"keywords": [
"redux"
],
"author": "Justin Falcone <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/modernserf/redux-action-schema/issues"
},
"homepage": "https://github.com/modernserf/redux-action-schema#readme",
"devDependencies": {
"buble": "^0.11.5",
"eslint": "^2.13.0",
"eslint-config-standard": "^5.3.1",
"eslint-plugin-promise": "^1.3.2",
"eslint-plugin-standard": "^1.3.2",
"faucet": "0.0.1",
"redux": "^3.5.2",
"redux-saga": "^0.10.5",
"redux-thunk": "^2.1.0",
"rollup": "^0.32.0",
"rollup-plugin-buble": "^0.11.0",
"tape": "^4.5.1"
},
"eslintConfig": {
"extends": "standard",
"rules": {
"quotes": [
2,
"double",
{
"avoidEscape": true,
"allowTemplateLiterals": true
}
],
"comma-dangle": [
2,
"always-multiline"
],
"indent": [
2,
4
]
}
}
}