forked from ply-ct/ply
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.95 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
{
"name": "ply-ct",
"version": "2.1.1",
"description": "REST API Automated Testing",
"main": "dist/src",
"bin": {
"ply": "dist/src/cli.js"
},
"files": [
"dist/src"
],
"types": "dist/src",
"repository": {
"type": "git",
"url": "git+https://github.com/ply-ct/ply.git"
},
"keywords": [
"REST APIs",
"Continuous Testing",
"Automated Testing"
],
"author": "Donald Oakes",
"license": "MIT",
"bugs": {
"url": "https://github.com/ply-ct/ply/issues"
},
"engines": {
"node": ">=12"
},
"scripts": {
"build": "tsc",
"start-movies": "ply-movies start &",
"pretest": "npm run start-movies",
"mocha": "mocha --require ts-node/register test/mocha/**/*.ts",
"ply": "dist/src/cli.js",
"stop-movies": "ply-movies stop",
"test": "npm-run-all mocha ply stop-movies --continue-on-error"
},
"homepage": "https://github.com/ply-ct/ply#readme",
"dependencies": {
"deepmerge": "^4.2.2",
"diff-match-patch": "^1.0.4",
"find-up": "^4.1.0",
"glob": "^7.1.6",
"js-yaml": "^3.13.1",
"json-stable-stringify": "^1.0.1",
"minimatch": "^3.0.4",
"mkdirp": "^1.0.3",
"node-fetch": "^2.6.0",
"os-locale": "^5.0.0",
"stacktracey": "^1.2.127",
"ts-node": "^8.10.2",
"typescript": "^3.9.6",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/deepmerge": "^2.2.0",
"@types/diff-match-patch": "^1.0.32",
"@types/glob": "^7.1.3",
"@types/js-yaml": "^3.12.3",
"@types/json-stable-stringify": "^1.0.32",
"@types/minimatch": "^3.0.3",
"@types/mkdirp": "^1.0.0",
"@types/mocha": "^8.0.0",
"@types/node": "^13.7.4",
"@types/node-fetch": "^2.5.5",
"@types/yargs": "^15.0.4",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"chai": "^4.2.0",
"eslint": "^7.4.0",
"mocha": "^8.1.1",
"npm-run-all": "^4.1.5",
"ply-movies": "^1.0.9"
}
}