-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 1.54 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
{
"name": "tasty-api",
"version": "0.5.2",
"description": "API testing framework",
"main": "index.js",
"author": "Yegor Litvyakov <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "[email protected]:tasty-api/tasty.git"
},
"keywords": [
"API",
"testing",
"test",
"contract",
"load",
"framework",
"cli",
"runner"
],
"scripts": {
"commit": "commit",
"test": "nyc mocha",
"lint": "eslint ./src",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"bin": {
"tasty": "./cli.js"
},
"dependencies": {
"ajv": "^6.12.4",
"ansi-to-html": "^0.6.14",
"async": "^3.2.0",
"axios": "^0.20.0",
"chai": "^4.2.0",
"commander": "^6.1.0",
"deepmerge": "^4.2.2",
"form-data": "^3.0.0",
"generate-schema": "^2.6.0",
"jsonpath": "^1.0.2",
"lodash": "^4.17.20",
"mkdirp": "^1.0.4",
"mocha": "8.2.0",
"mochawesome": "^6.1.1",
"nconf": "^0.10.0",
"recursive-readdir": "^2.2.2",
"require-dir": "^1.2.0",
"rimraf": "^3.0.2",
"uuid": "^8.3.0",
"winston": "^3.3.3",
"yl-artillery": "^1.6.0-26"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/prompt-cli": "^10.0.0",
"conventional-changelog-cli": "^2.1.0",
"eslint": "^7.8.1",
"husky": "^4.3.0",
"nyc": "^15.1.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}