-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.2 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
{
"name": "<package-name>",
"version": "1.0.0",
"description": "<package-description>",
"main": "dist/index.js",
"type": "commonjs",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha --require ts-node/register tests/**/*.test.ts",
"build": "tsc -b",
"lint": "prettier --check . && eslint . --ext .ts",
"lint-fix": "prettier --write . && eslint . --ext .ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PythonCoderAS/<package-name>.git"
},
"keywords": [],
"author": "PythonCoderAS",
"license": "MIT",
"bugs": {
"url": "https://github.com/PythonCoderAS/<package-name>/issues"
},
"homepage": "https://github.com/PythonCoderAS/<package-name>#readme",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/chai": "^5.2.1",
"@types/chai-as-promised": "^8.0.2",
"@types/mocha": "^10.0.10",
"@types/node": "^22.14.1",
"chai": "^5.2.0",
"chai-as-promised": "^8.0.1",
"eslint": "^9.25.0",
"eslint-config-prettier": "^10.1.2",
"eslint-config-pythoncoderas-combo": "^1.1.3",
"mocha": "^11.1.0",
"prettier": "^3.5.3",
"ts-node": "^10.9.1",
"typescript": "^5.8.3"
}
}