-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.56 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.56 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
75
76
77
78
79
80
{
"name": "@emulsify/cli",
"productName": "Emulsify CLI",
"version": "2.0.0",
"description": "Command line interface for Emulsify",
"repository": "git@github.com:emulsify-ds/emulsify-cli.git",
"author": "Patrick Coffey <patrickcoffey48@gmail.com>",
"license": "GPL-2.0",
"private": false,
"type": "module",
"engines": {
"node": ">=24"
},
"bin": {
"emulsify": "dist/index.js"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run build-schema-types && npm run build-ts",
"build-ts": "tsc --build tsconfig.dist.json",
"build-schema-types": "node --import ./src/register.mjs ./src/scripts/jsonSchemaToTs.ts",
"watch": "nodemon --watch src --ext ts,json --ignore src/types --exec npm run build",
"watch-ts": "nodemon --watch src --ext ts,json --ignore src/types --exec npm run build-ts",
"format": "prettier --write './src/**/*.{js,ts}'",
"husky:commit-msg": "commitlint --edit $1",
"husky:pre-commit": "lint-staged",
"husky:pre-push": "npm run test",
"test": "jest --coverage --silent",
"lint": "npm run test",
"type": "tsc --noEmit",
"twatch": "jest --no-coverage --watch --verbose",
"semantic-release": "semantic-release --config ./release.config.cjs",
"prepare": "husky install",
"postbuild": "cp package.json dist/package.json && cd dist && npm install --only=production --ignore-scripts"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/github": "^11.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.9",
"@types/jest": "^29.5.12",
"@types/node": "^22.18.8",
"@types/ramda": "^0.31.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"json-schema-to-typescript": "^15.0.4",
"lint-staged": "^15.5.2",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"semantic-release": "^25.0.3",
"ts-jest": "^29.4.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@inquirer/prompts": "^8.4.1",
"@types/progress": "^2.0.5",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"boxen": "^8.0.1",
"colorette": "^2.0.20",
"commander": "^12.1.0",
"consola": "^2.15.3",
"cosmiconfig": "^9.0.0",
"fs-extra": "^11.3.2",
"inquirer": "^13.4.1",
"progress": "^2.0.3",
"ramda": "^0.27.2",
"simple-git": "^3.28.0"
}
}