-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
157 lines (157 loc) · 4.06 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "xpm",
"version": "0.20.5",
"description": "The xPack project manager command line tool",
"type": "module",
"exports": {
"request": "./index.cjs",
"import": "./index.mjs"
},
"directories": {
"bin": "./bin",
"lib": "./lib",
"test": "./tests"
},
"bin": {
"xpm": "bin/xpm.js"
},
"scripts": {
"fix": "standard --fix lib tests",
"dev-cycle": "npm run fix && npm run test",
"npm-install": "npm install",
"npm-link-deps": "npm link @ilg/cli-start-options",
"npm-link-helpers": "npm link @xpack/npm-packages-helper @xpack/docusaurus-template-liquid",
"npm-outdated": "npm outdated",
"npm-update": "npm update",
"npm-version-patch": "npm version patch",
"npm-version-minor": "npm version minor",
"npm-pack": "npm pack",
"npm-link": "npm link",
"postversion": "git push origin --all && git push origin --tags",
"git-log": "git log --pretty='%cd * %h %s' --date=short",
"lint": "standard lib",
"prepare": "npm run lint",
"pretest-coverage": "npm run lint",
"pretest-no-coverage": "npm run lint",
"test-coverage": "tap --show-full-coverage",
"test-no-coverage": "tap --disable-coverage",
"tap": "tap --reporter=tap",
"test": "npm run test-no-coverage",
"test-ci": "npm run test-no-coverage",
"prepublishOnly": "npm run lint && npm run test",
"postpublish": "git push origin --follow-tags",
"dumpconf": "env | sort | uniq",
"show-versions": "echo $(which node) $(node --version) && echo $(which npm) $(npm --version)",
"compile": "echo nothing to compile",
"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",
"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/xpm-js.git"
},
"keywords": [
"xpack",
"xpm",
"project",
"manager",
"cli",
"npm"
],
"author": {
"name": "Liviu Ionescu",
"email": "ilg@livius.net",
"url": "https://github.com/ilg-ul"
},
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/xpack/xpm-js/issues"
},
"homepage": "https://xpack.github.io/xpm/",
"homepagePreview": "https://xpack.github.io/xpm-js/",
"dependencies": {
"@ilg/cli-start-options": "^0.8.2",
"@npmcli/arborist": "^7.4.0",
"@xpack/cmd-shim": "^4.1.0-2",
"@xpack/xpm-liquid": "^2.0.0",
"cacache": "^18.0.2",
"copy-file": "^11.0.0",
"cross-spawn": "^7.0.3",
"decompress": "^4.2.1",
"del": "^8.0.0",
"https-proxy-agent": "^7.0.4",
"is-windows": "^1.0.2",
"json": "^11.0.0",
"liquidjs": "^10.18.0",
"make-dir": "^5.0.0",
"mz": "^2.7.0",
"node-fetch": "^3.3.2",
"pacote": "^17.0.6",
"parse-git-config": "^3.0.0",
"proxy-from-env": "^1.1.0",
"semver": "^7.6.0",
"tar": "^7.4.3"
},
"devDependencies": {
"del-cli": "^6.0.0",
"json": "^11.0.0",
"liquidjs": "^10.19.1",
"standard": "^17.1.2",
"tap": "^21.0.1"
},
"bundleDependencies": [
"@ilg/cli-start-options",
"@npmcli/arborist",
"@xpack/cmd-shim",
"@xpack/xpm-liquid",
"cacache",
"copy-file",
"cross-spawn",
"decompress",
"del",
"https-proxy-agent",
"is-windows",
"liquidjs",
"make-dir",
"mz",
"node-fetch",
"pacote",
"parse-git-config",
"proxy-from-env",
"semver",
"tar"
],
"tap": {
"files": [
"tests/tap/*.js"
],
"reporter": "base"
},
"standard": {
"ignore": [
"/website/"
]
},
"eslintConfig": {
"rules": {
"max-len": [
"error",
80,
{
"ignoreUrls": true
}
]
}
},
"ts-standard": {
"ignore": [
"**/*.d.ts",
"**/*.js"
]
},
"engines": {
"node": " >=18.0.0"
}
}