-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.64 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
{
"name": "omnibelt",
"description": "A utility belt that normalizes and wraps `Ramda` and `Lodash/FP`.",
"version": "4.0.0",
"license": "MIT",
"main": "src/index.js",
"repository": "[email protected]/Losant/omnibelt.git",
"author": "@Losant",
"contributors": [
{
"name": "Rob Hilgefort",
"email": "[email protected]",
"web": "rob.hilgefort.me"
}
],
"engines": {
"node": ">=14"
},
"scripts": {
"reinstall": "rm -rf node_modules && yarn install",
"lint": "esw . --ext .js",
"lint:fix": "yarn lint --fix",
"lint:watch": "yarn lint --watch",
"lint:staged": "lint-staged",
"test": "jest --verbose",
"test:watch": "yarn test --watch -o",
"ramda:index": "node ./scripts/gen-ramda-index-file.js",
"docs": "yarn docs:open",
"predocs:build": "./scripts/gen-3rd-party-docs.js",
"docs:build": "jsdoc -c jsdoc.json",
"docs:open": "open ./docs/index.html"
},
"lint-staged": {
"*.js": "esw"
},
"dependencies": {
"lodash": "^4.17.21",
"ramda": "^0.30.1",
"string-format": "^2.0.0",
"stringify-object": "^3.3.0"
},
"devDependencies": {
"@losant/eslint-config-losant": "^1.6.1",
"docdash": "^2.0.2",
"expect": "^29.7.0",
"fs-extra": "^11.2.0",
"handlebars": "^4.7.8",
"husky": "^9.1.5",
"jest": "^29.7.0",
"jsdoc": "^4.0.3",
"lint-staged": "^15.2.9",
"present": "^1.0.0",
"taffydb": "^2.7.3",
"treis": "^2.6.0"
},
"eslintConfig": {
"extends": "@losant/eslint-config-losant/env/node",
"env": {
"jest": true
},
"rules": {
"valid-jsdoc": 0
}
},
"eslintIgnore": [
"docs"
]
}