-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.91 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
{
"name": "nebenan-redux-tools",
"description": "A set of redux helpers",
"author": "Good Hood GmbH <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/goodhood-eu/nebenan-redux-tools#readme",
"repository": "github:goodhood-eu/nebenan-redux-tools",
"bugs": "https://github.com/goodhood-eu/nebenan-redux-tools/issues",
"version": "6.9.0",
"files": [
"lib/*.js",
"lib/*/*.js"
],
"scripts": {
"reinstall": "rm -rf node_modules package-lock.json && npm install",
"check": "npm test && npm run lint && echo \"\\033[0;32mReady to publish\\033[0m\"",
"clean": "rm -rf ./lib/ || exit 1",
"compile": "NODE_ENV=production babel src --out-dir lib --copy-files",
"build": "npm run compile",
"prepublishOnly": "npm run check && npm run clean && npm run build",
"lint": "eslint --ext .es,.js ./",
"lint:tofile": "eslint --ext .es,.js --no-color -o ./eslint-report.log ./",
"test": "npm run compile && TZ='GMT' mocha \"test/**/*.js\"",
"test:tofile": "npm run compile && TZ='GMT' mocha --no-colors -R spec \"test/**/*.js\" 2>&1 | tee test-report.log"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.3",
"@babel/plugin-transform-runtime": "^7.23.3",
"@babel/plugin-transform-strict-mode": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"babel-plugin-add-module-exports": "^1.0.4",
"browserslist-config-nebenan": "^1.0.2",
"chai": "^4.3.10",
"eslint": "^8.53.0",
"eslint-config-nebenan-base": "^2.0.3",
"mocha": "^10.2.0",
"sinon": "^17.0.1"
},
"dependencies": {
"axios": "^1.6.1",
"escape-string-regexp": "4.0.0",
"js-cookie": "^3.0.5",
"local-storage-adapter": "^2.0.0",
"lodash": "^4.17.21",
"qs": "^6.11.2",
"updeep": "^1.2.4"
},
"peerDependencies": {
"@babel/runtime": "^7.12.5",
"react": ">= 16.14.0",
"react-dom": ">= 16.14.0",
"react-redux": "^7.2.6"
}
}