generated from vhidvz/vscode-typescript-library-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 1.91 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
{
"name": "@rahkarsanat/kiz-sdk",
"version": "2.8.1",
"description": "kiz platform sdk",
"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 . '*/**/*.{js,ts}' --quiet --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/RahkarSanat/kiz-sdk-js.git"
},
"author": {
"name": "Vahid V.",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/RahkarSanat/kiz-sdk-js/issues"
},
"keywords": [
"sdk",
"kiz-sdk",
"platform",
"kiz-platform"
],
"homepage": "https://github.com/RahkarSanat/kiz-sdk-js#readme",
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/long": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"dotenv": "^16.0.3",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.2",
"jshint": "^2.13.6",
"make-coverage-badge": "^1.2.0",
"prettier": "^2.8.4",
"rimraf": "^4.1.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typedoc": "^0.23.25",
"typescript": "^4.9.5"
},
"dependencies": {
"@types/geojson": "^7946.0.10",
"axios": "1.3.4",
"mongoose": "^6.9.1"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"/dist"
]
}