-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 915 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
{
"name": "mocha-ui-bdd-meta",
"description": "Mocha BDD UI with Metadata",
"version": "0.0.10",
"author": "Oscar Rieken",
"repository": {
"type": "git",
"url": "https://github.com/orieken/mocha-ui-bdd-meta.git"
},
"license": "ISC",
"main": "main.js",
"types": "main.d.ts",
"scripts": {
"lint": "eslint",
"test": "run-p -cln test:*",
"test:js": "mocha --require main.js --ui bdd-meta ./specs/sample.spec.js",
"test:ts": "mocha --require ts-node/register --require main.js --ui bdd-meta ./specs/meta.spec.ts"
},
"peerDependencies": {
"mocha": ">= 7"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^16.4.13",
"eslint": "^7.32.0",
"expect.js": "^0.3.1",
"mocha": "^9.0.3",
"npm-run-all": "^4.1.5",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"escape-string-regexp": "^5.0.0"
}
}