-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.19 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
{
"name": "mocha-typescript-template",
"version": "1.0.0",
"description": "mocha-typescript",
"main": "index.js",
"scripts": {
"test": "run-s lint test:*",
"test:ts": "mocha",
"prelint": "npm run prettier",
"lint": "eslint . --ext .ts --fix",
"prettier": "prettier --config .prettierrc 'specs/**/*.ts' --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orieken/mocha-typescript-template.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/orieken/mocha-typescript-template/issues"
},
"homepage": "https://github.com/orieken/mocha-typescript-template#readme",
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^16.6.0",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-clean-code": "^0.1.12",
"eslint-plugin-prettier": "^3.4.0",
"mocha": "^9.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"ts-node": "^10.2.0",
"typescript": "^4.3.5"
},
"dependencies": {}
}