-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.35 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "root",
"private": true,
"description": "Minimal abstract task manager",
"packageManager": "pnpm@7.2.1",
"scripts": {
"build": "tsc --build tsconfig.packages.json",
"build:dev": "tsc --build tsconfig.packages.dev.json",
"build:diagnostics": "tsc --build tsconfig.packages.json --diagnostics",
"build:clean": "node ./scripts/removeTypescriptCompiledFiles.mjs",
"commit": "commit",
"format": "prettier --write ./packages",
"lint": "eslint --ext ts --ignore-path .gitignore .",
"packages:ts-config:generate": "node ./scripts/generateTypescriptConfig.mjs",
"prebuild": "pnpm run build:clean",
"prebuild:diagnostics": "pnpm run prebuild",
"prepare": "husky install",
"prepublish:packages": "pnpm run build && pnpm run test",
"test:coverage": "pnpm run test --coverage",
"test:e2e": "cucumber-js --config=config/cucumber/cucumber.ts.config.mjs",
"test:e2e:js": "cucumber-js --config=config/cucumber/cucumber.js.config.mjs",
"test:integration": "jest --config=config/jest/jest.config.mjs --selectProjects Integration",
"test:integration:js": "jest --config=config/jest/jest.js.config.mjs --selectProjects Integration",
"test:master": "pnpm run test --changedSince=origin/master",
"test:js": "jest --config=config/jest/jest.js.config.mjs --selectProjects Unit Integration",
"test:js:ci": "pnpm run test:js --ci",
"test:js:coverage": "pnpm run test:js --coverage",
"test:js:ci:coverage": "pnpm run test:js --ci --coverage",
"test:package:js:ci": "jest --config=config/jest/jest.js.config.mjs --ci",
"test:package:js:ci:coverage": "pnpm run test:package:js:ci --coverage",
"test:previous": "pnpm run test --changedSince=HEAD~1",
"test:unit": "jest --config=config/jest/jest.config.mjs --selectProjects Unit",
"test:unit:js": "jest --config=config/jest/jest.js.config.mjs --selectProjects Unit",
"test": "jest --config=config/jest/jest.config.mjs --selectProjects Unit Integration"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cuaklabs/cuaktask.git"
},
"keywords": [
"task",
"manager",
"typescript"
],
"author": "Cuak McCuackl <cuak.mccuakl@cuaklabs.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cuaklabs/cuaktask/issues"
},
"homepage": "https://github.com/cuaklabs/cuaktask#readme",
"devDependencies": {
"@commitlint/cli": "17.0.2",
"@commitlint/config-conventional": "17.0.2",
"@commitlint/prompt-cli": "17.0.0",
"@cucumber/cucumber": "8.3.0",
"@types/chai": "4.3.1",
"@types/jest": "27.5.2",
"@types/node": "16.11.39",
"@types/sinon": "10.0.11",
"@types/sinon-chai": "3.2.8",
"@typescript-eslint/eslint-plugin": "5.28.0",
"@typescript-eslint/parser": "5.28.0",
"chai": "4.3.6",
"eslint": "8.17.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.5.3",
"eslint-plugin-prettier": "4.0.0",
"husky": "8.0.1",
"jest": "27.5.1",
"lint-staged": "13.0.1",
"prettier": "2.6.2",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"sinon": "14.0.0",
"sinon-chai": "3.7.0",
"sqlite3": "5.0.8",
"ts-jest": "27.1.5",
"ts-node": "10.8.1",
"typeorm": "0.3.6",
"typescript": "4.7.3"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts": [
"prettier --write",
"eslint"
]
}
}