-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.85 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.85 KB
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
70
71
72
73
74
75
76
{
"name": "semantic-test",
"version": "3.1.11",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "node .",
"start:dev": "LOG_PRETTY=true nodemon --watch src -e js,json --exec npm start",
"test:spec": "LOG_LEVEL=fatal NODE_ENV=test mocha --recursive",
"test:lint": "eslint -f stylish .",
"test:cover": "nyc --reporter=lcov --reporter=text-summary npm run test:spec",
"test": "npm run test:lint && npm run test:cover"
},
"author": "Sagacify",
"license": "ISC",
"dependencies": {
"@openapi-contrib/json-schema-to-openapi-schema": "^1.2.0",
"@sagacify/autoroute": "^1.2.0",
"body-parser": "^1.19.0",
"config": "^3.3.3",
"express": "^4.17.1",
"express-openapi-validator": "^4.10.2",
"saga-logger": "^3.1.0",
"saga-managed-error": "^3.1.0"
},
"nyc": {
"include": [
"src/**/*.js"
]
},
"eslintConfig": {
"ignorePatterns": [
"src/docs/**/*"
],
"extends": [
"standard",
"@sagacify"
]
},
"devDependencies": {
"@sagacify/eslint-config": "^1.1.0",
"chai": "^4.2.0",
"eslint": "^7.18.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"mocha": "^8.2.1",
"nodemon": "^2.0.6",
"nyc": "^15.1.0",
"snazzy": "^9.0.0",
"supertest": "^6.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/Sagacify/semantic-test.git"
},
"release": {
"branches": [
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
"@semantic-release/git",
"@semantic-release/github"
]
}
}