forked from vhidvz/vscode-typescript-library-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.02 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
73
74
75
{
"name": "parsimap",
"version": "1.1.0",
"description": "Parsimap software Development Kit",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"debug": "jest --watch",
"prebuild": "rimraf dist",
"doc": "typedoc --out docs src/",
"build": "tsc -p ./tsconfig.json",
"clean": "rm -rf ./dist && rm -rf ./coverage",
"lint": "eslint \"{src,test}/**/*.ts\" --fix",
"format": "prettier --write \"(src|test)/**/*.(ts|js)\"",
"start:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register src/index.ts",
"test": "jest && make-coverage-badge --report-path docs/coverage/coverage-summary.json --output-path coverage-badge.svg"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmRoshani/parsimap"
},
"author": [
{
"name": "mmRoshani",
"email": "mohammadmojtabaroshani@outlook.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mmRoshani/parsimap/issues"
},
"keywords": [
"boilerplate",
"library",
"typescript",
"vscode"
],
"homepage": "https://github.com/mmRoshani/parsimap#readme",
"devDependencies": {
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"dotenv": "^16.0.3",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"jshint": "^2.13.6",
"make-coverage-badge": "^1.2.0",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typedoc": "^0.23.23",
"typescript": "^4.9.4"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=14.21.2",
"npm": ">=6.14.17"
},
"files": [
"/dist"
],
"dependencies": {
"@fullstacksjs/eslint-config": "^9.2.1",
"axios": "^1.4.0",
"log4js": "^6.9.1",
"naming-conventions-modeler": "^1.4.0"
}
}