This repository was archived by the owner on Mar 29, 2025. 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
71 lines (71 loc) · 2.24 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.24 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@culur/ts-lib",
"version": "0.0.1",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"description": "Typescript Starter",
"repository": "https://github.com/culur/ts-lib",
"license": "MIT",
"keywords": [],
"scripts": {
"build": "run-p build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"watch:build": "tsc -p tsconfig.json -w",
"clean": "run-s clean:*",
"clean:build": "rimraf build",
"fix": "run-s fix:*",
"fix:md": "markdownlint **/*.md --fix",
"fix:prettier": "prettier ** --write",
"test": "run-s test:*",
"test:md": "markdownlint **/*.md",
"test:prettier": "prettier ** --list-different",
"test:spelling": "cspell **",
"doc": "run-s doc:html && open-cli build\\docs\\index.html",
"doc:html": "typedoc src/ --exclude **/*.test.ts --target ES6 --mode file --out build/docs",
"doc:json": "typedoc src/ --exclude **/*.test.ts --target ES6 --mode file --json build/docs/typedoc.json",
"release": "semantic-release",
"release:dry": "dotenv semantic-release --dry-run"
},
"engines": {
"node": ">=12"
},
"files": [
"build/main",
"build/module",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"dependencies": {},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/npm": "^7.0.9",
"cspell": "^5.1.1",
"cspell-dict-vi-vn": "^1.1.1",
"cz-conventional-changelog": "^3.3.0",
"dotenv-cli": "^4.0.0",
"eslint": "^7.16.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^7.1.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-only-warn": "^1.0.2",
"eslint-plugin-prettier": "^3.3.0",
"markdownlint-cli": "^0.26.0",
"npm-run-all": "^4.1.5",
"open-cli": "^6.0.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.3.1",
"typedoc": "^0.20.5",
"typescript": "^4.1.3"
}
}