forked from ServeRest/ServeRest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.37 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "serverest",
"version": "2.24.0",
"description": "Servidor REST local de forma rápida e simples para estudo de testes de API",
"author": "Paulo Gonçalves <[email protected]> (https://www.linkedin.com/in/paulo-goncalves/)",
"license": "GPL-3.0",
"main": "./src/server.js",
"bin": {
"serverest": "src/server.js"
},
"files": [
"docs/",
"src/"
],
"repository": {
"type": "git",
"url": "https://github.com/ServeRest/ServeRest.git"
},
"homepage": "https://serverest.dev",
"funding": {
"type": "Open Collective",
"url": "https://opencollective.com/serverest"
},
"keywords": [
"testing",
"server",
"rest",
"api"
],
"scripts": {
"prepare": "is-ci || husky install",
"commit": "cz",
"start": "node ./src/server.js",
"dev": "cross-env NODE_ENV=serverest-development nodemon ./src/server.js --nodoc",
"test:mutation": "cross-env NODE_ENV=serverest-test stryker run ./test/stryker.conf.js",
"test:mutation:diff": "cross-env NODE_ENV=serverest-test stryker-diff-runner --path ./test/stryker.conf.js --branch trunk",
"test": "cross-env NODE_ENV=serverest-test nyc mocha --config test/integration/.mocharc.js",
"lint": "standard",
"lint:fix": "standard --fix",
"lint:staged": "lint-staged",
"generate-doc": "aglio -i docs/serverest.apib --theme-variables flatly --theme-template triple",
"generate-doc:serverest": "npm run generate-doc -- -o docs/serverest.dev.html",
"generate-doc:local": "npm run generate-doc -- -o docs/localhost.html",
"generate-doc:agilizei": "npm run generate-doc -- -o docs/agilizei.html"
},
"dependencies": {
"colors": "^1.4.0",
"connect-timeout": "^1.9.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-query-int": "^3.0.0",
"express-status-monitor": "^1.3.3",
"express-validation": "^3.0.8",
"jsonwebtoken": "^8.5.1",
"moesif-nodejs": "^3.1.5",
"morgan": "^1.10.0",
"nedb": "^1.8.0",
"open": "^8.0.6",
"yargs": "^16.2.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@hapi/joi": "^17.1.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.1",
"@semantic-release/npm": "^7.1.1",
"@semantic-release/release-notes-generator": "^9.0.2",
"@stryker-mutator/core": "^4.6.0",
"aglio": "^2.3.0",
"chai": "^4.3.4",
"commitizen": "^4.2.3",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"faker": "^5.5.3",
"husky": "^6.0.0",
"is-ci": "^3.0.0",
"lint-staged": "^10.5.4",
"mocha": "^8.3.2",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"semantic-release-docker": "^2.2.0",
"sinon": "^10.0.0",
"standard": "^16.0.3",
"stryker-diff-runner": "^2.3.5",
"supertest": "^6.1.3"
},
"engines": {
"node": ">= 10"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"standard": {
"globals": [
"afterEach",
"beforeEach",
"describe",
"it",
"request"
]
},
"lint-staged": {
"*.js": [
"npm run lint:fix"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}