-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.17 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
{
"name": "@kravc/dos",
"version": "1.8.7",
"description": "Convention-based, easy-to-use library for building API-driven serverless services.",
"keywords": [
"Service",
"Swagger",
"Open API",
"JSON API",
"Serverless",
"Specification",
"Lambda Function"
],
"main": "src/index.js",
"repository": {
"type": "git",
"url": "http://github.com/alexkravets/dos.git"
},
"directories": {
"src": "src"
},
"scripts": {
"test": "eslint src/ examples/ && NODE_APP_INSTANCE=test NODE_PATH=./ nyc --skip-full mocha \"./src/**/*.spec.js\""
},
"author": "Alexander Kravets <[email protected]>",
"license": "ISC",
"dependencies": {
"@kravc/schema": "^2.7.1",
"cookie": "^1.0.1",
"js-yaml": "^4.1.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"pluralize": "^8.0.0",
"ulid": "^2.3.0",
"uuid": "^9.0.1",
"z-schema": "^6.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"chai": "^5.1.2",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"mocha": "^10.8.2",
"nyc": "^17.1.0"
},
"nyc": {
"include": "src",
"exclude": "**/*.spec.js"
}
}