-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.77 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
{
"name": "is-json-request",
"version": "1.0.1",
"description": "Check if the current request is json, express js, next js, any node js server side code.",
"main": "index.js",
"type": "module",
"exports": {
"import": "./index.js",
"require": "./index.cjs"
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "c8 mocha ./tests/index.spec.js",
"buildcjs": "npx rollup ./index.js --file ./index.cjs --format cjs",
"build": "npm run buildcjs && npm run document",
"document": "jsdoc ./index.js -c .jsdoc.json -d ./docs -R README.md -p",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/shadiabuhilal/is-json-request.git"
},
"keywords": [
"json",
"request",
"is",
"json",
"check",
"detect",
"express",
"express js",
"js",
"next",
"next js",
"server",
"node",
"node js",
"module",
"commonJS",
"cjs"
],
"author": "Shadi Abu Hilal <[email protected]> (http://github.com/shadiabuhilal)",
"license": "MIT",
"bugs": {
"url": "https://github.com/shadiabuhilal/is-json-request/issues"
},
"homepage": "https://github.com/shadiabuhilal/is-json-request#readme",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^12.1.0",
"c8": "^8.0.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"docdash": "^2.0.2",
"eslint": "^8.55.0",
"expect.js": "^0.3.1",
"jsdoc": "^4.0.2",
"mocha": "^10.2.0",
"rollup": "^4.6.1",
"semantic-release": "^22.0.10"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}