-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.4 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.4 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
{
"name": "@ithaka/backstage-action-string-replace",
"version": "0.1.0",
"repository": "https://github.com/backstage-action-string-replace.git",
"description": "A Backstage scaffolder action for string replacement in a template",
"keywords": [],
"author": "ITHAKA",
"license": "MIT",
"bugs": {
"url": "https://github.com/ithaka/backstage-action-string-replace/issues"
},
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"test": "jest src --maxWorkers=50%",
"format": "prettier . --write",
"lint": "tsc --noEmit",
"build": "tsc --project tsconfig.build.json",
"clean": "rm -rf ./lib/",
"ci:test:format": "prettier . --check",
"ci:test:lint": "tsc --noEmit",
"ci:test:unit": "jest src --runInBand --coverage",
"prepack": "yarn clean && yarn build && pinst --disable",
"postpack": "pinst --enable",
"postinstall": "husky install"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.14",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.5.0",
"pinst": "^3.0.0",
"prettier": "^3.5.3",
"ts-jest": "^29.3.0",
"typescript": "^5.8.2"
},
"packageManager": "yarn@4.6.0",
"dependencies": {
"@backstage/plugin-scaffolder-node": "^0.11.2",
"@backstage/types": "^1.2.1",
"fs-extra": "^11.3.0"
}
}