-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.49 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "incrudable",
"version": "0.2.1",
"description": "Crud utilities for redux based applications",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"scripts": {
"format": "prettier --write \"**/*.{js,md}\"",
"format:check": "prettier --list-different \"**/*.{js,md}\"",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:umd": "cross-env NODE_ENV=development webpack",
"build:umd:min": "cross-env NODE_ENV=production webpack",
"build": "run-s clean && run-p build:**",
"clean": "rimraf lib es",
"lint": "xo",
"prepublishOnly": "run-s build",
"test": "mocha --recursive --require babel-core/register tests/"
},
"files": [
"es",
"lib",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ryansukale/incrudable.git"
},
"author": "Ryan Sukale <ryansukale@gmail.com> (https://github.com/ryansukale)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ryansukale/incrudable/issues"
},
"homepage": "https://github.com/ryansukale/incrudable#readme",
"keywords": [
"redux",
"crud",
"redux-crud",
"thunk",
"observable",
"redux-observable",
"redux-thunk"
],
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"cross-env": "^5.1.6",
"eslint-plugin-prettier": "^2.6.1",
"mocha": "^5.1.1",
"npm-run-all": "^4.1.3",
"prettier": "^1.13.7",
"rimraf": "^2.6.2",
"sinon": "^5.0.10",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15",
"xhr-mock": "2.4.1-preview.1",
"xo": "^0.20.3"
},
"dependencies": {
"batarang": "^2.0.12",
"redux-actions": "^2.4.0",
"redux-observable": "^1.0.0",
"rx-lite-dom-ajax": "^7.0.3",
"rxjs": "^6.2.1",
"whatwg-fetch": "^2.0.4"
},
"xo": {
"prettier": true,
"space": true,
"rules": {
"prefer-promise-reject-errors": 0,
"unicorn/filename-case": [
"error",
{
"case": "camelCase"
}
]
},
"overrides": [
{
"files": "test/**/*.js",
"env": [
"jest"
]
}
]
},
"prettier": {
"singleQuote": true,
"bracketSpacing": true,
"trailingComma": "none"
}
}