-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.85 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
63
64
65
66
67
68
69
70
71
72
{
"name": "ts-template",
"version": "0.0.0",
"private": true,
"type": "module",
"main": "main.js",
"module": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "eslint . --ext .ts --quiet --ignore-path .gitignore --ignore-path .eslintignore",
"test": "c8 --all --reporter=lcov mocha --recursive --extension ts test",
"prepare": "husky install",
"prepack": "tsc",
"release": "changeset publish"
},
"files": [
"*.js",
"*.d.ts"
],
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@babel/register": "^7.16.0",
"@changesets/cli": "^2.18.1",
"@tpluscode/eslint-config": "^0.3.0",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/sinon": "^10.0.6",
"@types/sinon-chai": "^3.2.6",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"c8": "^7.10.0",
"chai": "^4.3.4",
"eslint": "^8.4.0",
"eslint-config-standard": "^16.0.3",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"mocha": "^9.1.3",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0",
"standard": "^16.0.3",
"typescript": "^4.3.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tpluscode/ts-template.git"
},
"author": "Tomasz Pluskiewicz",
"license": "MIT",
"bugs": {
"url": "https://github.com/tpluscode/ts-template/issues"
},
"homepage": "https://github.com/tpluscode/ts-template#readme",
"mocha": {
"watch-files": [
"./**/*.ts"
],
"require": [
"mocha-setup.cjs"
]
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix --quiet"
]
}
}