-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.77 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
{
"name": "mocha-runner-hooker",
"version": "1.0.3",
"description": "Additional functionality for each mocha test by hooks",
"main": "./build/index",
"types": "./build/index.d.ts",
"files": [
"build"
],
"license": "MIT",
"homepage": "https://github.com/udarrr/mocha-runner-hooker",
"bugs": {
"url": "https://github.com/udarrr/mocha-runner-hooker/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/udarrr/mocha-runner-hooker.git"
},
"author": {
"name": "Siarhei Kliushnikau",
"email": "sergey.klyshniko2@gmail.com",
"url": "https://github.com/udarrr"
},
"keywords": [
"mocha",
"hook",
"hooks",
"runner",
"test",
"testing",
"before all",
"before each",
"after each",
"after all",
"globalSetup",
"globalTeardown"
],
"scripts": {
"clean": "rimraf ./build",
"build": "npm run clean && tsc",
"test": "mocha ./build/test/testRunner.js ./build/test/test.js",
"testSkipRunner": "mocha ./build/skipRunner.js ./build/test/test.js",
"prepack": "clean-package --remove scripts peerDependencies devDependencies",
"pack": "npm pack",
"postpack": "clean-package restore",
"prepublishOnly": "npm run build",
"publish_tag": "npm publish --tag latest --access=public"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/mocha": "^8.2.3",
"@types/node": "^18.11.17",
"chai": "^4.3.4",
"prettier": "^2.5.1",
"ts-node": "^10.7.0",
"rimraf": "^3.0.2",
"typescript": "^4.6.2"
},
"peerDependencies": {
"mocha": "^8.4.0"
}
}