-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.54 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
{
"name": "onli-reducer",
"version": "0.3.1",
"description": "One line reducer. Simple state management without boilerplate.",
"source": "src/index.js",
"main": "dist/index.js",
"module": "dist/index.module.js",
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"test": "jest",
"test:dev": "jest --watchAll",
"test:single": "jest",
"test:coverage": "jest --coverage",
"test:coveralls": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ericdouglas/onli-reducer.git"
},
"keywords": [
"onli",
"reducer",
"one",
"line",
"state",
"management",
"react"
],
"author": "Eric Douglas <eric.douglas.mail@gmail.com> (https://github.com/ericdouglas)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ericdouglas/onli-reducer/issues"
},
"homepage": "https://github.com/ericdouglas/onli-reducer#readme",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-jest": "^26.0.1",
"coveralls": "^3.0.6",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-prettier": "^3.1.4",
"git-commit-msg-linter": "^2.4.4",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.9",
"microbundle": "^0.12.2",
"prettier": "^2.0.5"
}
}