forked from asd-xiv/state-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.56 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
{
"name": "just-a-list.redux",
"version": "0.0.1",
"description": "Redux state as list with standard structure and behaviour",
"homepage": "https://github.com/andreidmt/just-a-list-redux",
"repository": {
"type": "git",
"url": "git+https://github.com/andreidmt/just-a-list.redux.git"
},
"bugs": {
"url": "https://github.com/andreidmt/just-a-list.redux/issues"
},
"author": {
"name": "Andrei Dumitrescu",
"url": "https://github.com/andreidmt"
},
"keywords": [
"state-management",
"redux",
"react"
],
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"----UTILS": "",
"setup": "rm -rf ./node_modules && npm i && npm audit fix",
"setup:ci": "npm ci && npm audit fix",
"update": "npm-check --update",
"----BUILD": "",
"build": "rm -rf ./dist && babel src -d dist",
"prepare": "npm audit fix && npm test && npm run lint && npm run build",
"prepublishOnly": "npm run coverage",
"----LINT": "",
"lint:js": "eslint ./src",
"lint:md": "markdownlint *.md",
"lint": "npm run lint:md && npm run lint:js",
"----TEST": "",
"test": "tape -r @babel/register src/*.test.js src/**/*.test.js | tap-nirvana",
"tdd": "nodemon --watch src --exec \"npm run test\"",
"coverage:report": "NODE_ENV=test nyc npm test && nyc report --reporter=html",
"coverage": "NODE_ENV=test nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"dependencies": {
"@asd14/m": "^4.1.2",
"@babel/runtime-corejs3": "^7.12.5",
"core-js": "^3.8.1",
"regenerator-runtime": "^0.13.7",
"socket.io-client": "^3.0.4"
},
"devDependencies": {
"@asd14/eslint-config": "^5.18.2",
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@babel/register": "^7.12.10",
"babel-eslint": "^10.1.0",
"coveralls": "^3.1.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.7.8",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-no-inferred-method-name": "^2.0.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-unicorn": "^23.0.0",
"markdownlint-cli": "^0.25.0",
"nodemon": "^2.0.6",
"npm-check": "^5.9.2",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"redux": "^4.0.5",
"semantic-release": "^17.3.0",
"socket.io": "^3.0.4",
"tap-nirvana": "^1.1.0",
"tape": "^5.0.1"
},
"peerDependencies": {
"redux": "4.x"
}
}