generated from seb-cr/ts-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.46 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.46 KB
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
{
"name": "@sebalon/scripting",
"version": "1.0.0",
"description": "Useful tools for automating stuff with Node",
"author": "Seb Aebischer",
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/seb-cr/node-scripting.git"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"prepare": "npm run clean && npm run build",
"build": "tsc -p tsconfig-build.json",
"clean": "rm -rf dist",
"lint": "eslint src tests",
"mocha": "mocha --require ts-node/register --require tests/setup.ts",
"test": "npm run mocha -- 'tests/**/*.spec.ts'",
"coverage": "nyc npm test"
},
"devDependencies": {
"@comicrelief/eslint-config": "^2.0.3",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.14",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.1",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^39.9.1",
"mocha": "^10.3.0",
"nyc": "^15.1.0",
"semantic-release": "^23.0.6",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.3"
},
"dependencies": {
"glob": "^10.3.10",
"yaml": "^2.4.1"
}
}