-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.18 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.18 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
{
"name": "plugin-engine",
"version": "0.0.0",
"description": "Patch engine to bootstrap a project",
"main": "build/index.js",
"author": "Cyril Bonaccini",
"license": "MIT",
"private": false,
"type": "module",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"start": "node --es-module-specifier-resolution=node build/index.js",
"test": "yarn test:lint && yarn test:types && yarn test:unit",
"test:lint": "eslint . --max-warnings=0",
"test:types": "tsc --noEmit",
"test:unit": "vitest",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@types/jest": "^28.1.4",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"c8": "^7.11.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "2.7.1",
"typescript": "^4.7.4",
"vitest": "^0.16.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"commander": "^9.3.0",
"fs-extra": "^10.1.0",
"xstate": "^4.32.1",
"zx": "^7.0.4"
}
}