-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.95 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.95 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
{
"name": "repo-cooker",
"version": "0.0.0-next",
"license": "MIT",
"description": "",
"author": "",
"main": "dist/index.js",
"bin": {
"repo-cooker": "dist/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cerebral/repo-cooker.git"
},
"bugs": {
"url": "https://github.com/cerebral/repo-cooker/issues"
},
"homepage": "https://github.com/cerebral/repo-cooker#readme",
"scripts": {
"start": "babel-watch src/index.js --watch src",
"build": "cross-env BABEL_ENV=production babel src/ --out-dir=dist/ -s",
"commit": "./node_modules/cz-customizable/standalone.js",
"coverage": "nyc --reporter=lcov --reporter=json npm run test",
"format": "eslint --fix . && prettier --write --list-different .",
"lint": "eslint . && prettier --check .",
"prepare": "npm run build",
"pretest": "npm run build && node test/utils/pretest.js",
"release": "npm run build && node ./dist/cli.js --release --no-parallel",
"release:preview": "npm run build && node ./dist/cli.js --dry-run --release --print-release",
"test": "REPO_COOKER_NPM_OTP= jest",
"test:watch": "npm run test -- --watch"
},
"dependencies": {
"axios": "^1.13.2",
"cross-spawn": "^7.0.6",
"function-tree": "^3.3.4",
"globby": "^6.1.0",
"isomorphic-git": "^1.35.1",
"md5": "^2.3.0",
"registry-url": "^5.1.0",
"symlink-dir": "^9.0.0"
},
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@eslint/js": "^9.39.1",
"axios-mock-adapter": "^2.1.0",
"babel-plugin-module-resolver": "^5.0.2",
"babel-watch": "^7.8.1",
"cross-env": "^7.0.3",
"cz-customizable": "^7.5.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"jest": "^30.2.0",
"nyc": "^17.1.0",
"prettier": "^3.7.3"
},
"nyc": {
"exclude": [
"node_modules",
"dist",
"test",
"**/*.test.js"
]
}
}