This repository was archived by the owner on Sep 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.51 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.51 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
{
"name": "declarator",
"version": "1.4.2",
"description": "Declaration generator for javascript dependencies",
"main": "./dist/index.js",
"bin": "./dist/core/cli.js",
"scripts": {
"build": "rimraf dist && tsc",
"format": "prettier --write .",
"lint": "tsc --noEmit && eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"generate-schema": "typescript-json-schema src/config/types.ts Configuration -o schema.json --ignoreErrors",
"version": "npm run generate-schema && git add schema.json && auto-changelog -p && git add CHANGELOG.md"
},
"license": "MIT",
"author": "Arthur Fiorette <npm@arthur.place>",
"repository": "https://github.com/arthurfiorette/declarator.git",
"bugs": "https://github.com/arthurfiorette/declarator/issues",
"homepage": "https://github.com/arthurfiorette/declarator#readme",
"dependencies": {
"commander": "^9.0.0",
"resolve-package-path": "^4.0.3",
"rimraf": "^3.0.2",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
},
"devDependencies": {
"@arthurfiorette/prettier-config": "*",
"@types/node": "^18.7.11",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"auto-changelog": "^2.4.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"package-json-type": "^1.0.3",
"prettier": "^2.5.0",
"prettier-plugin-jsdoc": "^0.4.2",
"prettier-plugin-organize-imports": "^2.3.4",
"typescript-json-schema": "^0.54.0"
}
}