-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 896 Bytes
/
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
{
"name": "mocha-perfecto-ts-sample",
"version": "1.0.0",
"description": "Sample Mocha Perfecto integrated project in Typescript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"compile": "tsc --declaration",
"lint": "tslint --project tsconfig.json",
"prepublish": "npm run compile",
"test": "mocha"
},
"directories": {
"lib": "./lib",
"src": "./src",
"test": "./src"
},
"author": "Jack Deng, Perfecto PS",
"license": "ISC",
"dependencies": {
"moch": "0.0.1",
"perfecto-reporting": "^2.5.3"
},
"devDependencies": {
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.23",
"assert": "^2.0.0",
"chai": "^4.2.0",
"mocha": "latest",
"selenium-webdriver": "^4.0.0-alpha.5",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.2.4"
},
"engines": {
"node": ">=10.0.0"
}
}