-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.39 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
{
"name": "recheck-web-js",
"version": "1.0.11",
"description": "Javascript package for recheck-web",
"repository": {
"type": "git",
"url": "https://github.com/retest/recheck-web-js"
},
"bugs": {
"url": "https://github.com/retest/recheck-web-js/issues"
},
"main": "dist/script.js",
"types": "dist/script.d.ts",
"files": [
"dist/"
],
"prepublish": "tsc",
"scripts": {
"build": "tsc --sourceMap false -p .",
"test": "mocha -r ts-node/register tests/*.spec.ts",
"coverage": "nyc npm run test"
},
"author": {
"name": "UBS Hainer GmbH",
"email": "info@retest.de",
"url": "https://retest.de/"
},
"license": "AGPL-V3",
"dependencies": {},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.0",
"@types/chai": "^4.2.4",
"@types/jsdom": "^16.1.0",
"@types/jsdom-global": "^3.0.1",
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"chai": "^4.2.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^6.2.1",
"eslint-plugin-prettier": "^4.0.0",
"jsdom": "19.0.0",
"jsdom-global": "3.0.2",
"mocha": "^10.0.0",
"nyc": "^15.0.0",
"prettier": "^2.0.1",
"source-map-support": "^0.5.16",
"ts-node": "^10.0.0",
"typescript": "^4.0.2"
}
}