-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.52 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@swingletree-oss/plugin-testng",
"description": "Swingletree TestNG Plugin",
"repository": {
"type": "git",
"url": "git@github.com:swingletree-oss/plugin-testng.git"
},
"main": "main.js",
"engines": {
"node": ">=10"
},
"scripts": {
"start": "npm run build && node bin/main.js",
"build": "npm run build-ts && npm run tslint",
"test": "ts-mocha --exit",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"debug": "npm run build && npm run watch-debug",
"watch-debug": "nodemon --inspect bin/main.js",
"release": "semantic-release"
},
"mocha": {
"diff": true,
"extension": [
"ts"
],
"package": "./package.json",
"reporter": "spec",
"slow": 75,
"timeout": 2000,
"ui": "bdd",
"watch-files": [
"src/**/*.ts",
"test/**/*.spec.ts"
],
"watch-ignore": [
"lib/vendor"
],
"recursive": true,
"require": [
"reflect-metadata",
"./test/mocha.env.js"
]
},
"dependencies": {
"@swingletree-oss/harness": "^2.0.3",
"@swingletree-oss/scotty-client": "^1.1.6",
"@types/xml2js": "^0.4.5",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"express": "^4.17.1",
"express-xml-bodyparser": "^0.3.0",
"inversify": "^5.0.1",
"js-yaml": "^3.14.0",
"nconf": "^0.11.2",
"nunjucks": "^3.2.2",
"reflect-metadata": "^0.1.13",
"request": "^2.88.2",
"source-map-support": "^0.5.19",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@semantic-release/exec": "^5.0.0",
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.14",
"@types/chai-things": "0.0.34",
"@types/compression": "1.7.0",
"@types/express": "^4.17.8",
"@types/js-yaml": "^3.12.5",
"@types/jsonwebtoken": "^8.5.0",
"@types/mocha": "^7.0.2",
"@types/nconf": "^0.10.0",
"@types/node": "^14.14.6",
"@types/node-cache": "^4.2.5",
"@types/nunjucks": "^3.1.3",
"@types/redis": "^2.8.28",
"@types/request": "^2.48.5",
"@types/sinon": "^9.0.8",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-things": "^0.2.0",
"eslint": "^7.13.0",
"mocha": "^8.2.1",
"mockserver": "^3.1.1",
"nodemon": "^2.0.6",
"npm-check-updates": "^7.1.1",
"semantic-release": "^17.4.3",
"sinon": "^9.2.1",
"sinon-chai": "^3.5.0",
"sinon-express-mock": "^2.2.1",
"ts-mocha": "^7.0.0",
"tslint": "^6.1.3",
"typescript": "^3.9.7"
},
"license": "GPL-3.0",
"private": true
}