-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 2.3 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
{
"name": "xpack-build-box",
"version": "0.0.0-0",
"description": "XBB - The xPack Build Box",
"main": "",
"scripts": {
"postversion": "git push origin --all && git push origin --tags",
"test": "echo \"Error: no test specified\" && exit 1",
"generate-top-commons-init": "bash node_modules/@xpack/npm-packages-helper/maintenance-scripts/generate-top-commons.sh --init",
"create-website-init": "bash -x node_modules/@xpack/docusaurus-template-liquid/maintenance-scripts/generate-commons.sh --init",
"npm-install": "npm install",
"npm-link-helpers": "npm link @xpack/npm-packages-helper @xpack/docusaurus-template-liquid",
"npm-link": "npm link",
"npm-outdated": "npm outdated",
"npm-update": "npm update",
"npm-pack": "npm pack",
"npm-version-patch": "npm version patch",
"npm-version-minor": "npm version minor",
"git-log": "git log --pretty='%cd * %h %s' --date=short",
"prepublishOnly": "npm run lint && npm run test",
"postpublish": "git push origin --follow-tags",
"clean": "del-cli cjs 'tests/**/cjs' 'src/**/*.d.ts' 'src/**/*.d.ts.map' 'src/**/*.js' 'src/**/*.js.map' 'tests/**/*.d.ts' 'tests/**/*.d.ts.map' 'tests/**/*.js' 'tests/**/*.js.map' '**/tsconfig.tsbuildinfo' .nyc_output coverage",
"deep-clean": "npm run clean && rm -rf node_modules package-lock.json",
"show-versions": "echo $(which node) $(node --version) && echo $(which npm) $(npm --version)",
"dumpconf": "env | sort | uniq",
"generate-top-commons": "bash node_modules/@xpack/npm-packages-helper/maintenance-scripts/generate-top-commons.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xpack-dev-tools/xpack-build-box.git"
},
"keywords": [
"www",
"xbb",
"xpack",
"build",
"box"
],
"author": {
"name": "Liviu Ionescu",
"email": "[email protected]",
"url": "https://github.com/ilg-ul"
},
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/xpack-dev-tools/xpack-build-box/issues"
},
"homepage": "https://xpack-dev-tools.github.io/xpack-build-box/",
"dependencies": {},
"devDependencies": {
"json": "^11.0.0",
"liquidjs": "^10.18.0",
"del-cli": "^6.0.0"
},
"bundleDependencies": [],
"config": {
"skipTests": "true"
},
"engines": {
"node": " >=18.0.0"
}
}