-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.48 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.48 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
72
73
74
{
"name": "root",
"private": true,
"license": "MIT",
"version": "0.0.3",
"workspaces": [
"packages/*"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=10.0.0",
"yarn": ">= 1.20.0",
"npm": "Please use Yarn instead of NPM to install dependencies. See: https://yarnpkg.com/lang/en/docs/install/"
},
"scripts": {
"tsc": "./node_modules/.bin/tsc",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"changelog:all": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"eslint": "eslint \"packages/**/*.ts\" -c .eslintrc.js",
"format": "prettier --check --parser typescript \"{packages,tools,examples,scripts}/**/*.{t,j}s?(x)\"",
"prettify": "prettier --write --parser typescript \"{packages,tools,examples,scripts}/**/*.{t,j}s?(x)\"",
"lint": "yarn eslint && yarn format",
"build": "node scripts/build.js",
"check:license": "license-check-and-add check",
"clean": "yarn workspaces run clean",
"test": "jest --runInBand --detectOpenHandles --forceExit",
"test:ci": "jest --runInBand --detectOpenHandles --forceExit --coverage",
"prerelease": "yarn build",
"release": "node scripts/release.js",
"release:alpha": "node scripts/release.js --preId alpha",
"release:beta": "node scripts/release.js --preId beta",
"prepare": "npx husky install",
"publish-npm": "node scripts/publish.js"
},
"dependencies": {
"tslib": "^2.4.0"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@ls-lint/ls-lint": "^1.11.2",
"@types/jest": "^27.4.1",
"@types/node": "^18.11.10",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.40.1",
"@typescript-eslint/parser": "^5.20.0",
"colors": "1.4.0",
"conventional-changelog-cli": "^2.2.2",
"enquirer": "^2.3.6",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unicorn": "^42.0.0",
"fs-extra": "^10.1.0",
"husky": "^8.0.1",
"jest": "^27.5.1",
"license-check-and-add": "^4.0.5",
"lint-staged": "^13.0.3",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"semver": "^7.3.7",
"shelljs": "^0.8.5",
"ts-jest": "^27.1.4",
"tslint": "^6.1.3",
"typescript": "^4.7.3"
},
"resolutions": {
"**/**/axios": ">=0.21.1"
}
}