-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 966 Bytes
/
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
{
"name": "horux",
"version": "4.0.3",
"description": "A library of simple everyday reducer utility functions ",
"keywords": [
"redux",
"reducer",
"compose",
"higher-order functions"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/Nehle/horux.git"
},
"scripts": {
"lint": "eslint src test",
"test": "jest",
"tdd": "jest --watch",
"compile": "tsc",
"prepublish": "npm run lint && npm run compile"
},
"devDependencies": {
"@babel/helper-function-name": "^7.19.0",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.38.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
}
}