-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
78 lines (78 loc) · 2.51 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
{
"name": "@emulsify/cli",
"version": "1.11.4",
"description": "Command line interface for Emulsify",
"repository": "[email protected]:emulsify-ds/emulsify-cli.git",
"author": "Patrick Coffey <[email protected]>",
"license": "GPL-2.0",
"private": false,
"engines": {
"node": ">=16.13"
},
"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": "ts-node ./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}' && npm run lint --fix",
"husky:commit-msg": "commitlint --edit $1",
"husky:pre-commit": "lint-staged",
"husky:pre-push": "lint-staged && npm run test",
"lint": "eslint --ext .js,.ts ./src",
"test": "jest --coverage --silent",
"type": "tsc --noEmit",
"twatch": "jest --no-coverage --watch --verbose",
"semantic-release": "semantic-release",
"prepare": "husky install",
"postbuild": "cp package.json dist/package.json && cd dist && npm install --only=production --ignore-scripts"
},
"devDependencies": {
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@semantic-release/github": "^10.0.3",
"@semantic-release/npm": "^12.0.0",
"@types/chalk": "^2.2.0",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@types/ramda": "^0.27.38",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-security": "^3.0.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"json-schema-to-typescript": "^14.0.0",
"lint-staged": "^15.2.2",
"nodemon": "^2.0.7",
"prettier": "^3.2.5",
"semantic-release": "^23.0.8",
"ts-jest": "^29.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"dependencies": {
"@types/progress": "^2.0.5",
"ajv": "^7.2.4",
"ajv-formats": "^2.1.1",
"chalk": "^4.1.0",
"commander": "^12.0.0",
"consola": "^2.15.3",
"fs-extra": "^11.2.0",
"progress": "^2.0.3",
"ramda": "^0.27.1",
"simple-git": "^3.24.0"
}
}