-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
81 lines (81 loc) · 2.44 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
{
"name": "@asd14/state-list",
"version": "0.0.1",
"description": "Redux state as list with standard structure and behaviour",
"homepage": "https://github.com/asd-xiv/state-list",
"repository": {
"type": "git",
"url": "git+https://github.com/asd-xiv/state-list.git"
},
"bugs": {
"url": "https://github.com/asd-xiv/state-list/issues"
},
"author": {
"name": "Andrei Dumitrescu",
"url": "https://github.com/andreidmt"
},
"keywords": [
"state-management",
"redux",
"react"
],
"main": "dist/index.js",
"license": "BSD-3-Clause",
"scripts": {
"----UTILS": "",
"presetup": "rm -rf ./node_modules",
"setup": "npm ci --also=dev",
"update": "npm-check --update",
"postupdate": "npm audit fix",
"update:force": "npm-check --update-all && npm audit fix",
"----BUILD": "",
"prebuild": "rm -rf ./dist",
"build": "babel src -d dist",
"----LINT": "",
"lint:js": "eslint src --quiet",
"lint:md": "markdownlint '*.md'",
"lint": "npm run lint:md && npm run lint:js",
"----TEST": "",
"pretest": "npm run build",
"test": "tape 'dist/*.test.js' 'dist/**/*.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": "^5.2.0",
"@babel/runtime-corejs3": "^7.13.10",
"core-js": "^3.9.1"
},
"devDependencies": {
"@asd14/eslint-config": "^5.31.0",
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/eslint-parser": "^7.13.10",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/register": "^7.13.8",
"coveralls": "^3.1.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^32.3.0",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-no-inferred-method-name": "^2.0.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-unicorn": "^29.0.0",
"markdownlint-cli": "^0.27.1",
"nodemon": "^2.0.7",
"npm-check": "^5.9.2",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"redux": "^4.0.5",
"semantic-release": "^17.4.2",
"tap-nirvana": "^1.1.0",
"tape": "^5.2.2"
},
"peerDependencies": {
"redux": "^4.x"
}
}