-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.06 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
{
"name": "@remindgmbh/typescript-utility-lib",
"version": "0.4.0",
"description": "Collection of utilities",
"author": "Hauke Schulz <[email protected]>",
"license": "BSD-3-Clause",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/remindgmbh/typescript-utility-lib.git"
},
"scripts": {
"prepare": "tsc",
"build": "tsc",
"lint": "eslint ./index.ts ./src/**.ts",
"test": "nyc mocha"
},
"dependencies": {
"typescript": "^4.5.2"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/jsdom-global": "^3.0.2",
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"chai": "^4.3.4",
"eslint": "^8.0.0",
"jsdom": "^18.1.0",
"jsdom-global": "^3.0.2",
"mocha": "^9.0.0",
"mocha-junit-reporter": "^2.0.2",
"nyc": "^15.1.0",
"ts-node": "^10.4.0"
}
}