This repository has been archived by the owner on Feb 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.98 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
{
"bin": {
"inpyjamas-scripts": "dist/cli.js"
},
"name": "@inpyjamas/scripts",
"version": "1.0.0",
"description": "common config and scripts",
"scripts": {
"test": "ts-node src/cli.ts test",
"dev": "ts-node src/cli.ts dev",
"dev:test": "ts-node src/cli.ts dev test/dev-run-script.ts",
"build": "tsc -p .",
"prebuild": "npm run clean",
"watch": "tsc -p . --watch",
"clean": "rimraf dist/*",
"prepare": "npm run build",
"lint-staged": "lint-staged"
},
"author": "Fabian Morón Zirfas",
"license": "MIT",
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "9.0.2",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/node": "18.16.19",
"cz-conventional-changelog": "3.3.0"
},
"dependencies": {
"@types/cross-spawn": "6.0.2",
"@types/is-ci": "3.0.0",
"@types/jest": "28.1.4",
"@types/lodash.merge": "4.6.7",
"@typescript-eslint/eslint-plugin": "5.30.5",
"@typescript-eslint/parser": "5.30.5",
"cross-env": "7.0.3",
"cross-spawn": "7.0.3",
"eslint": "8.19.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jest": "26.5.3",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.1",
"is-ci": "3.0.1",
"jest": "28.1.2",
"lint-staged": "13.0.3",
"lodash.merge": "4.6.2",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"ts-jest": "28.0.5",
"ts-node": "10.8.2",
"ts-node-dev": "2.0.0",
"typescript": "4.7.4"
},
"main": ".eslintrc.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inpyjamas/scripts.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/inpyjamas/scripts/issues"
},
"homepage": "https://github.com/inpyjamas/scripts#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}