-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json5
269 lines (246 loc) · 5.75 KB
/
package.json5
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
// vim:syntax=javascript
{
/*
* Main info
*/
name: 'yapm',
description: 'package manager for io.js (npm fork)',
// upstream npm@2.4.1 commit 51b2fd1974
// upstream tj/npm commit bbcb826fbe
version: '2.4.1',
npm_version: '2.4.1',
author: {
// forked from npm, author: Isaac Z. Schlueter <i@izs.me>
name: 'Alex Kocharin',
email: 'alex@kocharin.ru',
},
/*
* WWW Links
*/
repository: {
type: 'git',
url: 'https://github.com/rlidwka/yapm',
},
bugs: {
url: 'http://github.com/rlidwka/yapm/issues',
},
/*
* File structure
*/
directories: {
doc: './doc',
lib: './lib',
bin: './bin',
// not providing any man pages since they
// seem to conflict with npm installation
//man: './man',
},
main: './lib/npm.js',
bin: './bin/npm-cli.js',
scripts: {
'test-legacy': 'node ./test/run.js',
test : 'tap --timeout 120 test/tap/*.js',
tap : 'tap --timeout 120 test/tap/*.js',
'test-all' : 'node ./test/run.js && tap test/tap/*.js',
prepublish : 'node bin/npm-cli.js prune --prefix=. --no-global && rm -rf test/*/*/node_modules && make -j8 doc',
dumpconf : 'env | grep npm | sort | uniq',
},
/*
* Dependencies list
*/
dependencies: {
// npm/npm deps (unchanged)
'abbrev': '~1.0.5',
'ansi': '~0.3.0',
'ansicolors': '~0.3.2',
'ansistyles': '~0.1.3',
'async-some': '~1.0.1',
'archy': '~1.0.0',
'block-stream': '0.0.7',
'char-spinner': '~1.0.1',
'child-process-close': '~0.1.1',
'chmodr': '~0.1.0',
'chownr': '0',
'cmd-shim': '~2.0.1',
'columnify': '~1.3.2',
'config-chain': '~1.1.8',
'dezalgo': '~1.0.1',
'editor': '~0.1.0',
'fs-vacuum': '~1.2.5',
'fs-write-stream-atomic': '~1.0.2',
'fstream': '~1.0.4',
'fstream-npm': '~1.0.1',
'github-url-from-git': '~1.4.0',
'github-url-from-username-repo': '~1.0.2',
'glob': '~4.3.5',
'graceful-fs': '~3.0.5',
'inflight': '~1.0.4',
'inherits': '~2.0.1',
'ini': '~1.3.2',
'lockfile': '~1.0.0',
'lru-cache': '~2.5.0',
'minimatch': '~2.0.1',
'mkdirp': '~0.5.0',
'node-gyp': '~1.0.2',
'nopt': '~3.0.1',
'normalize-git-url': '~1.0.0',
'npm-cache-filename': '~1.0.1',
'npm-install-checks': '~1.0.5',
'npm-user-validate': '~0.1.1',
'once': '~1.3.1',
'opener': '~1.4.0',
'osenv': '~0.1.0',
'path-is-inside': '~1.0.0',
'read': '~1.0.4',
'readable-stream': '~1.0.33',
'request': '~2.51.0',
'retry': '~0.6.1',
'rimraf': '~2.2.8',
'semver': '~4.2.0',
'sha': '~1.3.0',
'slide': '~1.1.6',
'sorted-object': '~1.0.0',
'tar': '~1.0.3',
'text-table': '~0.2.0',
'uid-number': '0.0.6',
'umask': '~1.1.0',
'which': '~1.0.8',
'wrappy': '~1.0.1',
'write-file-atomic': '~1.1.0',
// visionmedia/npm deps
'chalk': '~0.4.0',
'printf': '~0.1.2',
// our own deps
'js-yaml': '*', // optional?
'through': '*', // can be dropped in node 0.10+
'jju': '~1.1.0',
'yaml-update': '*',
},
bundleDependencies: [
'abbrev',
'ansi',
'ansicolors',
'ansistyles',
'archy',
'async-some',
'block-stream',
'chalk',
'char-spinner',
'child-process-close',
'chmodr',
'chownr',
'cmd-shim',
'columnify',
'config-chain',
'dezalgo',
'editor',
'fs-vacuum',
'fs-write-stream-atomic',
'fstream',
'fstream-npm',
'github-url-from-git',
'github-url-from-username-repo',
'glob',
'graceful-fs',
'inflight',
'inherits',
'jju',
'js-yaml',
'lockfile',
'lru-cache',
'minimatch',
'mkdirp',
'node-gyp',
'nopt',
'normalize-git-url',
'npm-cache-filename',
'npm-install-checks',
'npm-user-validate',
'once',
'opener',
'osenv',
'path-is-inside',
'printf',
'read',
'readable-stream',
'request',
'retry',
'rimraf',
'semver',
'sha',
'slide',
'sorted-object',
'tar',
'text-table',
'through',
'uid-number',
'umask',
'which',
'wrappy',
'write-file-atomic',
'yaml-update',
// these modules don't exist anywhere except for node_modules
'yapm-progress',
'package-yaml',
/*
* These dependencies are modified and different from what npm bundles
* so they shouldn't be updated from npm, instead changes should be
* pulled from npm/npm repo
*
* maybe they'll be forked to separate repositories in the future
*/
// added [whatever."foo.bar".baz] -> whatever["foo.bar"]["baz"] syntax
'ini',
// TODO: sync?
'init-package-json',
// yapm-progress hooks
'npm-registry-client',
// github semver
'npm-package-arg',
// https://github.com/npm/read-installed/pull/18
'read-installed',
// module was rewritten completely, thanks to @visionmedia
'npmlog',
// changes related to preserving source code formatting
'read-package-json',
// removed warning noise in fixer.js
'normalize-package-data',
// https://github.com/segmentio/gh-lookup/pull/3
'gh-lookup',
// changes to support package.yaml's
'realize-package-specifier',
],
devDependencies: {
'marked': '~0.3.2',
'marked-man': '~0.1.4',
'nock': '~0.57.0',
'npm-registry-couchapp': '~2.6.2',
'npm-registry-mock': '~0.6.3',
'require-inject': '~1.1.0',
'tap': '~0.5.0',
},
/*
* Other stuff
*/
publishConfig: {
registry: 'https://registry.npmjs.org/',
},
keywords: [
'package manager',
'modules',
'install',
'package.yaml',
'package.json5',
'yaml',
'json5',
'npm',
],
preferGlobal: true,
config: {
publishtest: false,
},
engines: {
node: '>=0.10',
},
license: 'Artistic-2.0',
}