-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.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
{
"name": "modular-test-framework",
"version": "1.0.0",
"description": "A low code, write once test framework using test actions as instructions",
"main": "index.js",
"scripts": {
"test": "mocha --config .mocharc.ts.json ./test/scenarios/specs/*.spec.ts",
"build": "tsc",
"start": "nodemon src/index.js"
},
"author": "Chris Enitan",
"dependencies": {
"chai": "^4.3.6",
"chai-exclude": "^2.0.3",
"chai-json-schema": "^1.5.1",
"hjs": "^0.0.6",
"hogan-middleware": "^0.2.2",
"mocha": "^9.1.1",
"mustache": "^4.2.0",
"nodemon": "^2.0.20",
"npm": "^8.11.0",
"puppeteer": "^10.2.0"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/nightmare": "^2.10.5",
"@types/node": "^16.11.26",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.18.1",
"glob": "^7.1.7",
"prettier": "^2.3.2",
"process-env": "^1.1.0",
"rimraf": "^3.0.2",
"ts-node": "^10.2.1",
"typescript": "~4.4.2"
}
}