-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.92 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.92 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
{
"name": "taylored",
"version": "8.2.4",
"description": "Make changes to a branch a plugin. A command-line tool to manage and apply plugins '.taylored'. Supports applying, removing, verifying plugins, and generating them from branch (GIT).",
"keywords": [
"plugins",
"sourcecode"
],
"homepage": "https://github.com/tailot/taylored#readme",
"bugs": {
"url": "https://github.com/tailot/taylored/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/tailot/taylored.git"
},
"license": "MIT",
"author": "tailot@gmail.com",
"type": "commonjs",
"files": [
"dist/",
"LICENSE",
"README.md"
],
"main": "dist/index.js",
"bin": {
"taylored": "dist/index.js"
},
"scripts": {
"build": "tsc",
"postbuild": "node -e \"require('fs-extra').copySync('templates/backend-in-a-box', 'dist/templates/backend-in-a-box', { overwrite: true })\"",
"prepublishOnly": "npm run build",
"prepublish:lite": "./scripts/prepublish-lite.js",
"publish:full": "npm run build && npx ts-node index.ts --remove scripts && npm publish",
"publish:lite": "npm publish --ignore-scripts",
"test": "jest --runInBand",
"test:e2e:core:initial-setup": "jest --runInBand tests/e2e/core/initial-setup.test.ts",
"test:e2e:core:list": "jest --runInBand tests/e2e/core/list.test.ts",
"test:e2e:core:verify-add": "jest --runInBand tests/e2e/core/verify-add.test.ts",
"test:e2e:core:add": "jest --runInBand tests/e2e/core/add.test.ts",
"test:e2e:core:verify-remove": "jest --runInBand tests/e2e/core/verify-remove.test.ts",
"test:e2e:core:remove": "jest --runInBand tests/e2e/core/remove.test.ts",
"test:e2e:core:save": "jest --runInBand tests/e2e/core/save.test.ts",
"test:e2e:core:offset": "jest --runInBand tests/e2e/core/offset.test.ts",
"test:e2e:core": "jest --runInBand tests/e2e/core/",
"test:e2e:automatic:json": "jest --runInBand tests/e2e/compute-blocks-json.test.ts",
"test:e2e:automatic:compute": "jest --runInBand tests/e2e/automatic-compute.test.ts",
"test:e2e:automatic:git": "jest --runInBand tests/e2e/automatic-git.test.ts",
"test:e2e:automatic": "jest --runInBand tests/e2e/automatic-compute.test.ts tests/e2e/automatic-git.test.ts",
"test:e2e": "jest --runInBand tests/e2e/",
"format": "prettier --write \"**/*.ts\"",
"check-format": "prettier --check \"**/*.ts\""
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.8",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.29",
"babel-jest": "^29.7.0",
"babel-plugin-transform-import-meta": "^2.3.3",
"jest": "^29.7.0",
"prettier": "^3.6.2",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"fs-extra": "^11.3.0",
"inquirer": "^12.6.3",
"open": "^10.1.2",
"parse-diff": "^0.11.1"
}
}