-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·49 lines (49 loc) · 1.28 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
{
"name": "@outofsync/request-utils",
"version": "4.0.1",
"description": "A library to process HTTP Request parameters and processes",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "npm run lint && npm run test:only",
"test:only": "nyc mocha --config .mocharc.js --exit",
"test:watch": "nodemon --exec mocha --bail",
"coverage": "nyc --reporter=lcov mocha --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OutofSyncStudios/request-utils.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"lodash",
"extension",
"utility"
],
"author": "Jay Reardon",
"license": "MIT",
"bugs": {
"url": "https://github.com/OutofSyncStudios/request-utils/issues"
},
"homepage": "https://github.com/OutofSyncStudios/request-utils#readme",
"dependencies": {
"@outofsync/localize": "^1.2.0",
"@outofsync/validation-helper": "^1.3.1",
"implies": "^1.0.3",
"lodash.assign": "^4.2.0",
"lodash.isnil": "^4.0.0",
"lodash.merge": "^4.6.2",
"lodash.omit": "^4.5.0"
},
"devDependencies": {
"@types/node": "^17.0.32",
"chai": "^4.3.4",
"eslint": "^8.15.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0"
}
}