-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.51 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
{
"name": "ts-package-template",
"version": "1.0.0",
"description": "A template for TypeScript packages",
"author": "Seb Aebischer",
"license": "MIT",
"type": "module",
"exports": "./dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/seb-cr/ts-package-template.git"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prepare": "npm run clean && npm run build",
"build": "tsc -p tsconfig-build.json",
"clean": "rm -rf dist",
"lint": "eslint src tests",
"mocha": "mocha --node-option loader=@istanbuljs/esm-loader-hook --node-option loader=./tests/loader.js --require tests/setup.ts",
"test": "npm run mocha -- 'tests/**/*.spec.ts'",
"coverage": "nyc npm test"
},
"devDependencies": {
"@comicrelief/eslint-config": "^2.0.3",
"@istanbuljs/esm-loader-hook": "^0.2.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@octokit/rest": "^20.0.2",
"@types/chai": "^4.3.14",
"@types/inquirer": "^9.0.7",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"chai": "^5.1.0",
"chalk": "^5.3.0",
"es-main": "^1.3.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^39.9.1",
"inquirer": "^9.2.16",
"mocha": "^10.3.0",
"nyc": "^15.1.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.3"
}
}