-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.02 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.02 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
{
"name": "@cuaklabs/nx-plugin",
"version": "0.1.4",
"description": "Cuaklabs nx plugin",
"bugs": {
"url": "https://github.com/cuaklabs/nx-plugin/issues"
},
"packageManager": "pnpm@8.7.1",
"scripts": {
"build:clean": "rimraf lib",
"build": "tsc",
"commit": "commit",
"lint": "eslint --ext ts --ignore-path .gitignore ./src",
"prebuild": "pnpm run build:clean",
"prepare": "husky install",
"test:js:ci:coverage": "jest --config=config/jest/jest.js.config.mjs --ci --coverage",
"test:js": "jest --config=config/jest/jest.js.config.mjs --selectProjects Unit Integration",
"test:master": "pnpm run test --changedSince=origin/master",
"test:uncommitted": "pnpm run test --changedSince=HEAD",
"test": "jest --config=config/jest/jest.config.mjs --selectProjects Unit Integration"
},
"keywords": [
"nx",
"plugin"
],
"author": "Cuak McCuackl <cuak.mccuakl@cuaklabs.com>",
"license": "See license in \"LICENSE\" file",
"devDependencies": {
"@commitlint/cli": "17.7.1",
"@commitlint/config-conventional": "17.7.0",
"@commitlint/prompt-cli": "17.7.1",
"@jest/globals": "29.6.4",
"@types/node": "18.17.14",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.48.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.2.3",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"jest": "29.6.4",
"jest-mock": "29.6.3",
"lint-staged": "13.3.0",
"nx": "16.7.4",
"prettier": "3.0.3",
"rimraf": "5.0.1",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.0.4"
},
"main": "lib/index.js",
"dependencies": {
"@nrwl/devkit": "16.7.4"
},
"executors": "./executors.json",
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts": [
"prettier --write",
"eslint"
]
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cuaklabs/nx-plugin.git"
}
}