summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars-Dominik Braun <lars@6xq.net>2023-06-10 10:22:27 +0200
committerLars-Dominik Braun <lars@6xq.net>2023-06-22 13:06:55 +0200
commit15253675714a48adb30d70c782c1aebe4a1b4534 (patch)
treef28dab78621c67fbc6b78bcd4290212333629b54
parent4c7ce20d3e4dd981c7a1750c9052fc1ca3d3ae14 (diff)
rstudio: Upgrade to v2022.12.0+353.
Updates all node packages, moves origin to git repository, moves visual editor into its own package (js-panmirror). Depends on Guix proper commit 37c2e94cec6cb8b5e0e93e7b6c712c3b187ca5db. Co-authored-by: Ricardo Wurmus <rekado@elephly.net>
-rw-r--r--guix-science/packages/rstudio-node.scm26113
-rw-r--r--guix-science/packages/rstudio.scm257
-rw-r--r--rstudio-server-1.4.1103-soci-searchpath.patch33
-rw-r--r--rstudio-server-2021.09.0+351-unbundle.patch38
4 files changed, 14044 insertions, 12397 deletions
diff --git a/guix-science/packages/rstudio-node.scm b/guix-science/packages/rstudio-node.scm
index 1e16a59..6e608c6 100644
--- a/guix-science/packages/rstudio-node.scm
+++ b/guix-science/packages/rstudio-node.scm
@@ -14,1347 +14,7749 @@
14;;; You should have received a copy of the GNU General Public License 14;;; You should have received a copy of the GNU General Public License
15;;; along with this program. If not, see <http://www.gnu.org/licenses/>. 15;;; along with this program. If not, see <http://www.gnu.org/licenses/>.
16 16
17;; Packages in this module have been auto-imported by the npm-binary importer 17;; Packages in this module have been auto-imported by the npm-binary importer.
18;; from wip-node-14. 18
19;; Find duplicates with 19;; Hints to future me:
20;; > grep define-public guix-science/packages/rstudio-node.scm | sort | uniq -c -d 20;; - Find duplicates with
21;; > grep define-public guix-science/packages/rstudio-node.scm | sort | uniq -c -d
22;; - node-fsevents is macos only.
23;; - Get all deps:
24;; jq -r '.dependencies | to_entries | map(.key + " " + .value) | join("\n")' < src/gwt/panmirror/src/editor/package.json| grep -v '^@'
25;; - For failures like this one:
26;; npm ERR! > orderedmap@2.1.1 build
27;; npm ERR! > rollup -c
28;; npm ERR! sh: line 1: rollup: command not found
29;; track down orderedmap and remove rollup from package.json
21 30
22(define-module (guix-science packages rstudio-node) 31(define-module (guix-science packages rstudio-node)
23 #:use-module ((guix licenses) #:prefix license:) 32 #:use-module ((guix licenses) #:prefix license:)
24 #:use-module (guix packages) 33 #:use-module (guix packages)
25 #:use-module (guix git-download) 34 #:use-module (guix git-download)
26 #:use-module (guix download) 35 #:use-module (guix download)
27 #:use-module (guix-science build-system node)) 36 #:use-module (guix utils)
37 #:use-module (guix build-system node)
38 #:use-module (gnu packages node-xyz))
39
40;; Guix built-in, but without version in name. We just prey they will never be updated.
41(define-public node-inherits-2.0.4 node-inherits)
42(define-public node-util-deprecate-1.0.2 node-util-deprecate)
43(define-public node-safe-buffer-5.2.1 node-safe-buffer)
44(define-public node-color-name-1.1.3 node-color-name)
45(define-public node-once-1.4.0 node-once)
46(define-public node-wrappy-1.0.2 node-wrappy)
47(define-public node-ms-2.1.3 node-ms)
48(define-public node-bindings-1.5.0 node-bindings)
49(define-public node-string-decoder-1.3.0 node-string-decoder)
50
51(define-public node-core-js-pure-3.30.2
52 (package
53 (name "node-core-js-pure")
54 (version "3.30.2")
55 (source (origin
56 (method url-fetch)
57 (uri
58 "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.30.2.tgz")
59 (sha256
60 (base32
61 "12f4wp0m1sby4apz0chd60kifmwac4dxijrni1rqz01qiqdz2w5z"))))
62 (build-system node-build-system)
63 (arguments
64 '(#:tests? #f
65 #:phases (modify-phases %standard-phases
66 (delete 'build))))
67 (home-page "https://github.com/zloirock/core-js#readme")
68 (synopsis "Standard library")
69 (description "Standard library")
70 (license license:expat)))
28 71
29(define-public node-acorn-5.7.4 72(define-public node-babel-runtime-corejs3-7.22.5
30 (package 73 (package
31 (name "node-acorn") 74 (name "node-babel-runtime-corejs3")
32 (version "5.7.4") 75 (version "7.22.5")
33 (source 76 (source (origin
34 (origin 77 (method url-fetch)
35 (method url-fetch) 78 (uri
36 (uri "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz") 79 "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.22.5.tgz")
37 (sha256 80 (sha256
38 (base32 81 (base32
39 "1fsw5vbp6p6bqcy1h0g35vgbjb6bjpr65sjs0ln3q212fpkxsz3g")))) 82 "01969ykcjg3yzzv0f7ywaqwhsmlnrm4afxlgcysk4dmzx49m55nq"))))
40 (build-system node-build-system) 83 (build-system node-build-system)
41 (arguments 84 (arguments
42 `(#:tests? 85 '(#:tests? #f
43 #f 86 #:phases (modify-phases %standard-phases
44 #:phases 87 (delete 'build))))
45 (modify-phases 88 (inputs `(("node-regenerator-runtime" ,node-regenerator-runtime-0.13.11)
46 %standard-phases 89 ("node-core-js-pure" ,node-core-js-pure-3.30.2)))
47 (delete 'configure) 90 (home-page "https://www.npmjs.com/package/node-babel-runtime-corejs3")
48 (delete 'build)))) 91 (synopsis "babel's modular runtime helpers with core-js@@3 polyfilling")
49 (home-page "https://github.com/acornjs/acorn") 92 (description "babel's modular runtime helpers with core-js@@3 polyfilling")
50 (synopsis "ECMAScript parser")
51 (description "ECMAScript parser")
52 (license license:expat))) 93 (license license:expat)))
53 94
54(define-public node-acorn-jsx-4.1.1 95(define-public node-xregexp-5.1.1
55 (package 96 (package
56 (name "node-acorn-jsx") 97 (name "node-xregexp")
98 (version "5.1.1")
99 (source (origin
100 (method url-fetch)
101 (uri "https://registry.npmjs.org/xregexp/-/xregexp-5.1.1.tgz")
102 (sha256
103 (base32
104 "1lglgf3ij7vpm9ylas5pfvi84wgxgzsm2iwpkbj4pab8ay0vkx00"))))
105 (build-system node-build-system)
106 (arguments
107 '(#:tests? #f
108 #:phases (modify-phases %standard-phases
109 (delete 'build)
110 (add-after 'patch-dependencies 'delete-dev-dependencies
111 (lambda _
112 (delete-dependencies '("@babel/cli" "@babel/core"
113 "@babel/plugin-proposal-unicode-property-regex"
114 "@babel/plugin-transform-runtime"
115 "@babel/preset-env"
116 "@unicode/unicode-14.0.0"
117 "babel-plugin-add-module-exports"
118 "babel-plugin-array-includes"
119 "babel-plugin-transform-xregexp"
120 "browserify"
121 "dtslint"
122 "eslint"
123 "jasmine"
124 "jsesc"
125 "nyc"
126 "unicode-property-value-aliases")))))))
127 (inputs `(("node-babel-runtime-corejs3" ,node-babel-runtime-corejs3-7.22.5)))
128 (home-page "http://xregexp.com/")
129 (synopsis "Extended regular expressions")
130 (description "Extended regular expressions")
131 (license license:expat)))
132
133(define-public node-biblatex-csl-converter-2.1.0
134 (package
135 (name "node-biblatex-csl-converter")
136 (version "2.1.0")
137 (source (origin
138 (method url-fetch)
139 (uri
140 "https://registry.npmjs.org/biblatex-csl-converter/-/biblatex-csl-converter-2.1.0.tgz")
141 (sha256
142 (base32
143 "0z4vdxmwsbimg7zky9i47gymn27kig4c0ci05683mdsgr94z21n6"))))
144 (build-system node-build-system)
145 (arguments
146 '(#:tests? #f
147 #:phases (modify-phases %standard-phases
148 (delete 'build)
149 (add-after 'patch-dependencies 'delete-dev-dependencies
150 (lambda _
151 (delete-dependencies '("@babel/core"
152 "@babel/plugin-transform-runtime"
153 "@babel/preset-env"
154 "@babel/runtime"
155 "@rollup/plugin-babel"
156 "@rollup/plugin-commonjs"
157 "@rollup/plugin-json"
158 "@rollup/plugin-node-resolve"
159 "@rollup/plugin-typescript"
160 "@typescript-eslint/eslint-plugin"
161 "@typescript-eslint/parser"
162 "babel-plugin-istanbul"
163 "benchmark"
164 "chai"
165 "coveralls"
166 "eslint"
167 "eslint-config-prettier"
168 "eslint-plugin-prettier"
169 "mocha"
170 "nyc"
171 "prettier"
172 "prettier-cli"
173 "rollup"
174 "rollup-plugin-dts"
175 "rollup-plugin-istanbul"
176 "rollup-plugin-node-globals"
177 "rollup-plugin-polyfill-node"
178 "rollup-plugin-terser"
179 "tslib"
180 "typescript"
181 "updates")))))))
182 (inputs `(("node-xregexp" ,node-xregexp-5.1.1)))
183 (home-page "https://github.com/fiduswriter/biblatex-csl-converter#readme")
184 (synopsis
185 "a set of converters: biblatex => json, json => biblatex, json => CSL")
186 (description
187 "a set of converters: biblatex => json, json => biblatex, json => CSL")
188 (license license:lgpl3)))
189
190(define-public node-delegate-3.2.0
191 (package
192 (name "node-delegate")
193 (version "3.2.0")
194 (source (origin
195 (method url-fetch)
196 (uri "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz")
197 (sha256
198 (base32
199 "1ys85812sy02lmz6r4gc5987hr5bnsiagiil8ncggaiaxk76j0vy"))))
200 (build-system node-build-system)
201 (arguments
202 '(#:tests? #f
203 #:phases (modify-phases %standard-phases
204 (delete 'build)
205 (add-after 'patch-dependencies 'delete-dev-dependencies
206 (lambda _
207 (delete-dependencies '("browserify" "chai"
208 "karma"
209 "karma-browserify"
210 "karma-chai"
211 "karma-mocha"
212 "karma-phantomjs-launcher"
213 "karma-sinon"
214 "mocha"
215 "phantomjs-polyfill"
216 "simulant"
217 "sinon")))))))
218 (home-page "https://github.com/zenorocha/delegate#readme")
219 (synopsis "Lightweight event delegation")
220 (description "Lightweight event delegation")
221 (license license:expat)))
222
223(define-public node-good-listener-1.2.2
224 (package
225 (name "node-good-listener")
226 (version "1.2.2")
227 (source (origin
228 (method url-fetch)
229 (uri
230 "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz")
231 (sha256
232 (base32
233 "0xbzaxs3xvmh1sf3qbvd0slp82inlb0gz5fx60vkj94gn31l8s4x"))))
234 (build-system node-build-system)
235 (arguments
236 '(#:tests? #f
237 #:phases (modify-phases %standard-phases
238 (delete 'build)
239 (add-after 'patch-dependencies 'delete-dev-dependencies
240 (lambda _
241 (delete-dependencies '("browserify" "chai"
242 "karma"
243 "karma-browserify"
244 "karma-chai"
245 "karma-mocha"
246 "karma-phantomjs-launcher"
247 "karma-sinon"
248 "mocha"
249 "phantomjs-polyfill"
250 "phantomjs-prebuilt"
251 "simulant"
252 "sinon"
253 "watchify")))))))
254 (inputs `(("node-delegate" ,node-delegate-3.2.0)))
255 (home-page "https://github.com/zenorocha/good-listener#readme")
256 (synopsis "A more versatile way of adding & removing event listeners")
257 (description "A more versatile way of adding & removing event listeners")
258 (license license:expat)))
259
260(define-public node-select-1.1.2
261 (package
262 (name "node-select")
263 (version "1.1.2")
264 (source (origin
265 (method url-fetch)
266 (uri "https://registry.npmjs.org/select/-/select-1.1.2.tgz")
267 (sha256
268 (base32
269 "159mk5g9gjv7qvxwk4yp3h0y3s2wawvvh0ms66fr2z79zdzgi6v6"))))
270 (build-system node-build-system)
271 (arguments
272 '(#:tests? #f
273 #:phases (modify-phases %standard-phases
274 (delete 'build)
275 (add-after 'patch-dependencies 'delete-dev-dependencies
276 (lambda _
277 (delete-dependencies '("browserify" "chai"
278 "karma"
279 "karma-browserify"
280 "karma-chai"
281 "karma-mocha"
282 "karma-phantomjs-launcher"
283 "mocha"
284 "phantomjs")))))))
285 (home-page "https://github.com/zenorocha/select#readme")
286 (synopsis "Programmatically select the text of a HTML element")
287 (description "Programmatically select the text of a HTML element")
288 (license license:expat)))
289
290(define-public node-tiny-emitter-2.1.0
291 (package
292 (name "node-tiny-emitter")
293 (version "2.1.0")
294 (source (origin
295 (method url-fetch)
296 (uri
297 "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz")
298 (sha256
299 (base32
300 "0fki07f4gfncqj8h3zv5rz0cnza0yc0bk6v7bkc6ih0y1jiix32k"))))
301 (build-system node-build-system)
302 (arguments
303 '(#:tests? #f
304 #:phases (modify-phases %standard-phases
305 (delete 'build)
306 (add-after 'patch-dependencies 'delete-dev-dependencies
307 (lambda _
308 (delete-dependencies '("@tap-format/spec" "browserify"
309 "tape" "testling" "uglify-js")))))))
310 (home-page "https://github.com/scottcorgan/tiny-emitter#readme")
311 (synopsis "A tiny (less than 1k) event emitter library")
312 (description "A tiny (less than 1k) event emitter library")
313 (license license:expat)))
314
315(define-public node-clipboard-2.0.11
316 (package
317 (name "node-clipboard")
318 (version "2.0.11")
319 (source (origin
320 (method url-fetch)
321 (uri
322 "https://registry.npmjs.org/clipboard/-/clipboard-2.0.11.tgz")
323 (sha256
324 (base32
325 "0gv53gyv1f6sj3j18fqzdv79jx80723p4wjzxl0n89n7k8g1npvk"))))
326 (build-system node-build-system)
327 (arguments
328 '(#:tests? #f
329 #:phases (modify-phases %standard-phases
330 (delete 'build)
331 (add-after 'patch-dependencies 'delete-dev-dependencies
332 (lambda _
333 (delete-dependencies '("@babel/core" "@babel/preset-env"
334 "babel-loader"
335 "chai"
336 "cross-env"
337 "eslint"
338 "eslint-config-airbnb-base"
339 "eslint-config-prettier"
340 "eslint-plugin-import"
341 "eslint-plugin-prettier"
342 "husky"
343 "karma"
344 "karma-chai"
345 "karma-chrome-launcher"
346 "karma-mocha"
347 "karma-sinon"
348 "karma-webpack"
349 "lint-staged"
350 "mocha"
351 "prettier"
352 "sinon"
353 "tsd"
354 "uglifyjs-webpack-plugin"
355 "webpack"
356 "webpack-cli")))))))
357 (inputs `(("node-tiny-emitter" ,node-tiny-emitter-2.1.0)
358 ("node-select" ,node-select-1.1.2)
359 ("node-good-listener" ,node-good-listener-1.2.2)))
360 (home-page "https://clipboardjs.com")
361 (synopsis "Modern copy to clipboard. No Flash. Just 2kb")
362 (description "Modern copy to clipboard. No Flash. Just 2kb")
363 (license license:expat)))
364
365(define-public node-diff-match-patch-1.0.5
366 (package
367 (name "node-diff-match-patch")
368 (version "1.0.5")
369 (source (origin
370 (method url-fetch)
371 (uri
372 "https://registry.npmjs.org/diff-match-patch/-/diff-match-patch-1.0.5.tgz")
373 (sha256
374 (base32
375 "1av5phlznfsvj4yr01hfh83b5fv6izs6810jq7l9q927yr5d8mpa"))))
376 (build-system node-build-system)
377 (arguments
378 '(#:tests? #f
379 #:phases (modify-phases %standard-phases
380 (delete 'build)
381 (add-after 'patch-dependencies 'delete-dev-dependencies
382 (lambda _
383 (delete-dependencies '("testit")))))))
384 (home-page "https://github.com/JackuB/diff-match-patch#readme")
385 (synopsis "npm package for https://github.com/google/diff-match-patch")
386 (description "npm package for https://github.com/google/diff-match-patch")
387 (license license:asl2.0)))
388
389(define-public node-fuse-js-6.6.2
390 (package
391 (name "node-fuse-js")
392 (version "6.6.2")
393 (source (origin
394 (method url-fetch)
395 (uri "https://registry.npmjs.org/fuse.js/-/fuse.js-6.6.2.tgz")
396 (sha256
397 (base32
398 "0hba84b6s1xg3k81lpa3sf73wylb9q36b6bv2vz24lnkqi2xpc26"))))
399 (build-system node-build-system)
400 (arguments
401 '(#:tests? #f
402 #:phases (modify-phases %standard-phases
403 (delete 'build)
404 (add-after 'patch-dependencies 'delete-dev-dependencies
405 (lambda _
406 (delete-dependencies '("@babel/cli" "@babel/core"
407 "@babel/eslint-parser"
408 "@babel/plugin-proposal-object-rest-spread"
409 "@babel/preset-env"
410 "@babel/preset-typescript"
411 "@commitlint/cli"
412 "@commitlint/config-conventional"
413 "@rollup/plugin-babel"
414 "@rollup/plugin-node-resolve"
415 "@rollup/plugin-replace"
416 "@types/jest"
417 "@vuepress/plugin-google-analytics"
418 "@vuepress/plugin-register-components"
419 "babel-loader"
420 "codemirror"
421 "eslint"
422 "eslint-config-prettier"
423 "eslint-plugin-vue"
424 "faker"
425 "husky"
426 "jest"
427 "prettier"
428 "replace-in-file"
429 "rimraf"
430 "rollup"
431 "rollup-plugin-copy"
432 "standard-version"
433 "terser-webpack-plugin"
434 "typescript"
435 "vue-codemirror"
436 "vue-eslint-parser"
437 "vuepress"
438 "vuepress-plugin-element-tabs"
439 "vuepress-plugin-google-adsense"
440 "vuepress-plugin-smooth-scroll"
441 "vuepress-plugin-social-share"
442 "webpack"
443 "webpack-cli")))))))
444 (home-page "http://fusejs.io")
445 (synopsis "Lightweight fuzzy-search")
446 (description "Lightweight fuzzy-search")
447 (license license:asl2.0)))
448
449(define-public node-argparse-2.0.1
450 (package
451 (name "node-argparse")
452 (version "2.0.1")
453 (source (origin
454 (method url-fetch)
455 (uri "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz")
456 (sha256
457 (base32
458 "133jjyhcr25rf4vy7bca7x06dfmsyy819s1kbbyfc5c2zi3ki417"))))
459 (build-system node-build-system)
460 (arguments
461 '(#:tests? #f
462 #:phases (modify-phases %standard-phases
463 (delete 'build)
464 (add-after 'patch-dependencies 'delete-dev-dependencies
465 (lambda _
466 (delete-dependencies '("@babel/eslint-parser"
467 "@babel/plugin-syntax-class-properties"
468 "eslint" "mocha" "nyc")))))))
469 (home-page "https://github.com/nodeca/argparse#readme")
470 (synopsis "CLI arguments parser. Native port of python's argparse.")
471 (description "CLI arguments parser. Native port of python's argparse.")
472 (license #f)))
473
474(define-public node-js-yaml-4.1.0
475 (package
476 (name "node-js-yaml")
477 (version "4.1.0")
478 (source (origin
479 (method url-fetch)
480 (uri "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz")
481 (sha256
482 (base32
483 "1jpj5j4aiyh9sbcw7y8jjkwkyc6qmwrffw7a4qfb48ngb4jk7bhd"))))
484 (build-system node-build-system)
485 (arguments
486 '(#:tests? #f
487 #:phases (modify-phases %standard-phases
488 (delete 'build)
489 (add-after 'patch-dependencies 'delete-dev-dependencies
490 (lambda _
491 (delete-dependencies '("@rollup/plugin-commonjs"
492 "@rollup/plugin-node-resolve"
493 "ansi"
494 "benchmark"
495 "codemirror"
496 "eslint"
497 "fast-check"
498 "gh-pages"
499 "mocha"
500 "nyc"
501 "rollup"
502 "rollup-plugin-node-polyfills"
503 "rollup-plugin-terser"
504 "shelljs")))))))
505 (inputs `(("node-argparse" ,node-argparse-2.0.1)))
506 (home-page "https://github.com/nodeca/js-yaml#readme")
507 (synopsis "YAML 1.2 parser and serializer")
508 (description "YAML 1.2 parser and serializer")
509 (license license:expat)))
510
511(define-public node-lodash-debounce-4.0.8
512 (package
513 (name "node-lodash-debounce")
514 (version "4.0.8")
515 (source (origin
516 (method url-fetch)
517 (uri
518 "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz")
519 (sha256
520 (base32
521 "180bk3h6nm2kvnn4f6phvcr0qyg5kj30ixrgflng352ndx63h655"))))
522 (build-system node-build-system)
523 (arguments
524 '(#:tests? #f
525 #:phases (modify-phases %standard-phases
526 (delete 'build))))
527 (home-page "https://lodash.com/")
528 (synopsis "The lodash method `_.debounce` exported as a module.")
529 (description "The lodash method `_.debounce` exported as a module.")
530 (license license:expat)))
531
532(define-public node-lodash-orderby-4.6.0
533 (package
534 (name "node-lodash-orderby")
535 (version "4.6.0")
536 (source (origin
537 (method url-fetch)
538 (uri
539 "https://registry.npmjs.org/lodash.orderby/-/lodash.orderby-4.6.0.tgz")
540 (sha256
541 (base32
542 "111qi7i10a9c2yn5p0xgz566rh1ldpa5v6wdv2a4629wlrnpmzfj"))))
543 (build-system node-build-system)
544 (arguments
545 '(#:tests? #f
546 #:phases (modify-phases %standard-phases
547 (delete 'build))))
548 (home-page "https://lodash.com/")
549 (synopsis "The lodash method `_.orderBy` exported as a module.")
550 (description "The lodash method `_.orderBy` exported as a module.")
551 (license license:expat)))
552
553(define-public node-lodash-uniqby-4.7.0
554 (package
555 (name "node-lodash-uniqby")
556 (version "4.7.0")
557 (source (origin
558 (method url-fetch)
559 (uri
560 "https://registry.npmjs.org/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz")
561 (sha256
562 (base32
563 "1zwa038vr31hfyalgv49xrszhwdkfjq0rqi5fx5cpsjxry5pspa8"))))
564 (build-system node-build-system)
565 (arguments
566 '(#:tests? #f
567 #:phases (modify-phases %standard-phases
568 (delete 'build))))
569 (home-page "https://lodash.com/")
570 (synopsis "The lodash method `_.uniqBy` exported as a module.")
571 (description "The lodash method `_.uniqBy` exported as a module.")
572 (license license:expat)))
573
574(define-public node-orderedmap-1.1.8
575 (package
576 (name "node-orderedmap")
577 (version "1.1.8")
578 (source (origin
579 (method url-fetch)
580 (uri
581 "https://registry.npmjs.org/orderedmap/-/orderedmap-1.1.8.tgz")
582 (sha256
583 (base32
584 "1g7dbll33jn21ppsad1mdx02pnahyqfjcgqv08rdw42ys0dhww68"))))
585 (build-system node-build-system)
586 (arguments
587 '(#:tests? #f
588 #:modules
589 ((guix build node-build-system)
590 (srfi srfi-1)
591 (ice-9 match)
592 (guix build utils))
593 #:phases (modify-phases %standard-phases
594 (delete 'build)
595 ;; XXX: Copied from Guix.
596 (add-before 'configure 'avoid-prepare-scripts
597 (lambda _
598 (with-atomic-json-file-replacement "package.json"
599 (match-lambda
600 (('@ . pkg-meta-alist)
601 (cons '@ (map (match-lambda
602 (("scripts" @ . scripts-alist)
603 `("scripts" @ ,@(filter (match-lambda
604 (("prepare" . _)
605 #f)
606 (_
607 #t))
608 scripts-alist)))
609 (other other))
610 pkg-meta-alist)))))))
611 (add-after 'patch-dependencies 'delete-dev-dependencies
612 (lambda _
613 (delete-dependencies '("rollup")))))))
614 (home-page "https://github.com/marijnh/orderedmap#readme")
615 (synopsis "Persistent ordered mapping from strings")
616 (description "Persistent ordered mapping from strings")
617 (license license:expat)))
618
619(define-public node-keypress-0.1.0
620 (package
621 (name "node-keypress")
622 (version "0.1.0")
623 (source (origin
624 (method url-fetch)
625 (uri "https://registry.npmjs.org/keypress/-/keypress-0.1.0.tgz")
626 (sha256
627 (base32
628 "1r9vz0j83pm0fb13yp95gvvjv07aya9ld971fkw7d4gikmzdchrf"))))
629 (build-system node-build-system)
630 (arguments
631 '(#:tests? #f
632 #:phases (modify-phases %standard-phases
633 (delete 'build))))
634 (home-page "https://www.npmjs.com/package/node-keypress")
635 (synopsis "Make any Node ReadableStream emit \"keypress\" events")
636 (description "Make any Node ReadableStream emit \"keypress\" events")
637 (license license:expat)))
638
639(define-public node-commander-1.1.1
640 (package
641 (name "node-commander")
642 (version "1.1.1")
643 (source (origin
644 (method url-fetch)
645 (uri
646 "https://registry.npmjs.org/commander/-/commander-1.1.1.tgz")
647 (sha256
648 (base32
649 "17rss32w98jn6h9sy7880h784pa9a9dxiklpl2wwfr099sbl5yvl"))))
650 (build-system node-build-system)
651 (arguments
652 '(#:tests? #f
653 #:phases (modify-phases %standard-phases
654 (delete 'build)
655 (add-after 'patch-dependencies 'delete-dev-dependencies
656 (lambda _
657 (delete-dependencies '("should")))))))
658 (inputs `(("node-keypress" ,node-keypress-0.1.0)))
659 (home-page "https://www.npmjs.com/package/node-commander")
660 (synopsis "the complete solution for node.js command-line programs")
661 (description "the complete solution for node.js command-line programs")
662 (license #f)))
663
664(define-public node-detect-libc-2.0.1
665 (package
666 (name "node-detect-libc")
667 (version "2.0.1")
668 (source (origin
669 (method url-fetch)
670 (uri
671 "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz")
672 (sha256
673 (base32
674 "1j2nlrp28b2yig0vf96fbdz9favscl60ljz8rx2l9fzhyn5ipvk6"))))
675 (build-system node-build-system)
676 (arguments
677 '(#:tests? #f
678 #:phases (modify-phases %standard-phases
679 (delete 'build)
680 (add-after 'patch-dependencies 'delete-dev-dependencies
681 (lambda _
682 (delete-dependencies '("ava" "nyc" "proxyquire"
683 "semistandard")))))))
684 (home-page "https://github.com/lovell/detect-libc#readme")
685 (synopsis
686 "Node.js module to detect the C standard library (libc) implementation family and version")
687 (description
688 "Node.js module to detect the C standard library (libc) implementation family and version")
689 (license license:asl2.0)))
690
691(define-public node-agent-base-6.0.2
692 (package
693 (name "node-agent-base")
694 (version "6.0.2")
695 (source (origin
696 (method url-fetch)
697 (uri
698 "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz")
699 (sha256
700 (base32
701 "0cg85gngrap12xzz8ibdjw98hcfhgcidg2w7ll7whsrf59ps0vdw"))))
702 (build-system node-build-system)
703 (arguments
704 '(#:tests? #f
705 #:phases (modify-phases %standard-phases
706 (delete 'build)
707 (add-after 'patch-dependencies 'delete-dev-dependencies
708 (lambda _
709 (delete-dependencies '("@types/debug" "@types/mocha"
710 "@types/node"
711 "@types/semver"
712 "@types/ws"
713 "@typescript-eslint/eslint-plugin"
714 "@typescript-eslint/parser"
715 "async-listen"
716 "cpy-cli"
717 "eslint"
718 "eslint-config-airbnb"
719 "eslint-config-prettier"
720 "eslint-import-resolver-typescript"
721 "eslint-plugin-import"
722 "eslint-plugin-jsx-a11y"
723 "eslint-plugin-react"
724 "mocha"
725 "rimraf"
726 "semver"
727 "typescript"
728 "ws")))))))
729 (inputs `(("node-debug" ,node-debug-4.3.4)))
730 (home-page "https://github.com/TooTallNate/node-agent-base#readme")
731 (synopsis "Turn a function into an `http.Agent` instance")
732 (description "Turn a function into an `http.Agent` instance")
733 (license license:expat)))
734
735(define-public node-ms-2.1.2
736 (package
737 (name "node-ms")
738 (version "2.1.2")
739 (source (origin
740 (method url-fetch)
741 (uri "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz")
742 (sha256
743 (base32
744 "0j7vrqxzg2fxip3q0cws360wk3cz2nprr8zkragipziz1piscmqi"))))
745 (build-system node-build-system)
746 (arguments
747 '(#:tests? #f
748 #:phases (modify-phases %standard-phases
749 (delete 'build)
750 (add-after 'patch-dependencies 'delete-dev-dependencies
751 (lambda _
752 (delete-dependencies '("eslint" "expect.js" "husky"
753 "lint-staged" "mocha")))))))
754 (home-page "https://github.com/zeit/ms#readme")
755 (synopsis "Tiny millisecond conversion utility")
756 (description "Tiny millisecond conversion utility")
757 (license license:expat)))
758
759(define-public node-debug-4.3.4
760 (package
761 (name "node-debug")
762 (version "4.3.4")
763 (source (origin
764 (method url-fetch)
765 (uri "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz")
766 (sha256
767 (base32
768 "1kwbyb5m63bz8a2bvhy4gsnsma6ks5wa4w5qya6qb9ip5sdjr4h4"))))
769 (build-system node-build-system)
770 (arguments
771 '(#:tests? #f
772 #:phases (modify-phases %standard-phases
773 (delete 'build)
774 (add-after 'patch-dependencies 'delete-dev-dependencies
775 (lambda _
776 (delete-dependencies '("brfs" "browserify"
777 "coveralls"
778 "istanbul"
779 "karma"
780 "karma-browserify"
781 "karma-chrome-launcher"
782 "karma-mocha"
783 "mocha"
784 "mocha-lcov-reporter"
785 "xo")))))))
786 (inputs `(("node-ms" ,node-ms-2.1.2)))
787 (home-page "https://github.com/debug-js/debug#readme")
788 (synopsis "Lightweight debugging utility for Node.js and the browser")
789 (description "Lightweight debugging utility for Node.js and the browser")
790 (license license:expat)))
791
792(define-public node-https-proxy-agent-5.0.1
793 (package
794 (name "node-https-proxy-agent")
795 (version "5.0.1")
796 (source (origin
797 (method url-fetch)
798 (uri
799 "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz")
800 (sha256
801 (base32
802 "0690f44jaazg21wii9vxzva1lk4kma0gh6yj1g9ybwii8fs6z8bd"))))
803 (build-system node-build-system)
804 (arguments
805 '(#:tests? #f
806 #:phases (modify-phases %standard-phases
807 (delete 'build)
808 (add-after 'patch-dependencies 'delete-dev-dependencies
809 (lambda _
810 (delete-dependencies '("@types/debug" "@types/node"
811 "@typescript-eslint/eslint-plugin"
812 "@typescript-eslint/parser"
813 "eslint"
814 "eslint-config-airbnb"
815 "eslint-config-prettier"
816 "eslint-import-resolver-typescript"
817 "eslint-plugin-import"
818 "eslint-plugin-jsx-a11y"
819 "eslint-plugin-react"
820 "mocha"
821 "proxy"
822 "rimraf"
823 "typescript")))))))
824 (inputs `(("node-debug" ,node-debug-4.3.4)
825 ("node-agent-base" ,node-agent-base-6.0.2)))
826 (home-page "https://github.com/TooTallNate/node-https-proxy-agent#readme")
827 (synopsis "An HTTP(s) proxy `http.Agent` implementation for HTTPS")
828 (description "An HTTP(s) proxy `http.Agent` implementation for HTTPS")
829 (license license:expat)))
830
831(define-public node-semver-6.3.0
832 (package
833 (name "node-semver")
834 (version "6.3.0")
835 (source (origin
836 (method url-fetch)
837 (uri "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz")
838 (sha256
839 (base32
840 "0ib79jd27krndmai3hg1rzr6nzwcj4crbnff4qjvchrq6grlmwbb"))))
841 (build-system node-build-system)
842 (arguments
843 '(#:tests? #f
844 #:phases (modify-phases %standard-phases
845 (delete 'build)
846 (add-after 'patch-dependencies 'delete-dev-dependencies
847 (lambda _
848 (delete-dependencies '("tap")))))))
849 (home-page "https://github.com/npm/node-semver#readme")
850 (synopsis "The semantic version parser used by npm.")
851 (description "The semantic version parser used by npm.")
852 (license license:isc)))
853
854(define-public node-make-dir-3.1.0
855 (package
856 (name "node-make-dir")
857 (version "3.1.0")
858 (source (origin
859 (method url-fetch)
860 (uri "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz")
861 (sha256
862 (base32
863 "1p3larbzfz9nny2m83x9isf5sng6gdc0x1vf6kyn24abln5anm7c"))))
864 (build-system node-build-system)
865 (arguments
866 '(#:tests? #f
867 #:phases (modify-phases %standard-phases
868 (delete 'build)
869 (add-after 'patch-dependencies 'delete-dev-dependencies
870 (lambda _
871 (delete-dependencies '("@types/graceful-fs"
872 "@types/node"
873 "ava"
874 "codecov"
875 "graceful-fs"
876 "nyc"
877 "path-type"
878 "tempy"
879 "tsd"
880 "xo")))))))
881 (inputs `(("node-semver" ,node-semver-6.3.0)))
882 (home-page "https://github.com/sindresorhus/make-dir#readme")
883 (synopsis "Make a directory and its parents if needed - Think `mkdir -p`")
884 (description
885 "Make a directory and its parents if needed - Think `mkdir -p`")
886 (license license:expat)))
887
888(define-public node-safer-buffer-2.1.2
889 (package
890 (name "node-safer-buffer")
891 (version "2.1.2")
892 (source (origin
893 (method url-fetch)
894 (uri
895 "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz")
896 (sha256
897 (base32
898 "1cx383s7vchfac8jlg3mnb820hkgcvhcpfn9w4f0g61vmrjjz0bq"))))
899 (build-system node-build-system)
900 (arguments
901 '(#:tests? #f
902 #:phases (modify-phases %standard-phases
903 (delete 'build)
904 (add-after 'patch-dependencies 'delete-dev-dependencies
905 (lambda _
906 (delete-dependencies '("standard" "tape")))))))
907 (home-page "https://github.com/ChALkeR/safer-buffer#readme")
908 (synopsis "Modern Buffer API polyfill without footguns")
909 (description "Modern Buffer API polyfill without footguns")
910 (license license:expat)))
911
912(define-public node-iconv-lite-0.6.3
913 (package
914 (name "node-iconv-lite")
915 (version "0.6.3")
916 (source (origin
917 (method url-fetch)
918 (uri
919 "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz")
920 (sha256
921 (base32
922 "1x681ziwavjjn09j4858fl3h3xi90vf512k5zwg06kwriwafq9vi"))))
923 (build-system node-build-system)
924 (arguments
925 '(#:tests? #f
926 #:phases (modify-phases %standard-phases
927 (delete 'build)
928 (add-after 'patch-dependencies 'delete-dev-dependencies
929 (lambda _
930 (delete-dependencies '("async" "c8"
931 "errto"
932 "iconv"
933 "mocha"
934 "request"
935 "semver"
936 "unorm")))))))
937 (inputs `(("node-safer-buffer" ,node-safer-buffer-2.1.2)))
938 (home-page "https://github.com/ashtuchkin/iconv-lite")
939 (synopsis "Convert character encodings in pure javascript.")
940 (description "Convert character encodings in pure javascript.")
941 (license license:expat)))
942
943(define-public node-encoding-0.1.13
944 (package
945 (name "node-encoding")
946 (version "0.1.13")
947 (source (origin
948 (method url-fetch)
949 (uri "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz")
950 (sha256
951 (base32
952 "116gipr1y0hc9zvflsvd39psbbf2j62zvpnw099pqf7fl0nb5xbc"))))
953 (build-system node-build-system)
954 (arguments
955 '(#:tests? #f
956 #:phases (modify-phases %standard-phases
957 (delete 'build)
958 (add-after 'patch-dependencies 'delete-dev-dependencies
959 (lambda _
960 (delete-dependencies '("nodeunit")))))))
961 (inputs `(("node-iconv-lite" ,node-iconv-lite-0.6.3)))
962 (home-page "https://github.com/andris9/encoding#readme")
963 (synopsis "Convert encodings, uses iconv-lite")
964 (description "Convert encodings, uses iconv-lite")
965 (license license:expat)))
966
967(define-public node-tr46-0.0.3
968 (package
969 (name "node-tr46")
970 (version "0.0.3")
971 (source (origin
972 (method url-fetch)
973 (uri "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz")
974 (sha256
975 (base32
976 "02ia19bsjr545jlkgv35psmzzr5avic96zxw3dam78yf6bmy2jhn"))))
977 (build-system node-build-system)
978 (arguments
979 '(#:tests? #f
980 #:phases (modify-phases %standard-phases
981 (delete 'build)
982 (add-after 'patch-dependencies 'delete-dev-dependencies
983 (lambda _
984 (delete-dependencies '("mocha" "request")))))))
985 (home-page "https://github.com/Sebmaster/tr46.js#readme")
986 (synopsis "An implementation of the Unicode TR46 spec")
987 (description "An implementation of the Unicode TR46 spec")
988 (license license:expat)))
989
990(define-public node-webidl-conversions-3.0.1
991 (package
992 (name "node-webidl-conversions")
993 (version "3.0.1")
994 (source (origin
995 (method url-fetch)
996 (uri
997 "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz")
998 (sha256
999 (base32
1000 "1a1dwb1ga1cj2s7av9r46b4xmx11vsk5zncc0gq2qz4l815w7pz4"))))
1001 (build-system node-build-system)
1002 (arguments
1003 '(#:tests? #f
1004 #:phases (modify-phases %standard-phases
1005 (delete 'build)
1006 (add-after 'patch-dependencies 'delete-dev-dependencies
1007 (lambda _
1008 (delete-dependencies '("mocha")))))))
1009 (home-page "https://github.com/jsdom/webidl-conversions#readme")
1010 (synopsis
1011 "Implements the WebIDL algorithms for converting to and from JavaScript values")
1012 (description
1013 "Implements the WebIDL algorithms for converting to and from JavaScript values")
1014 (license license:bsd-2)))
1015
1016(define-public node-whatwg-url-5.0.0
1017 (package
1018 (name "node-whatwg-url")
1019 (version "5.0.0")
1020 (source (origin
1021 (method url-fetch)
1022 (uri
1023 "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz")
1024 (sha256
1025 (base32
1026 "1lvyrf4ry4bgl2jgpim2pkdmrbv2vb0vh0irmkp7da3kymqw97dh"))))
1027 (build-system node-build-system)
1028 (arguments
1029 '(#:tests? #f
1030 #:phases (modify-phases %standard-phases
1031 (delete 'build)
1032 (add-after 'patch-dependencies 'delete-dev-dependencies
1033 (lambda _
1034 (delete-dependencies '("eslint" "istanbul" "mocha"
1035 "recast" "request" "webidl2js")))))))
1036 (inputs `(("node-webidl-conversions" ,node-webidl-conversions-3.0.1)
1037 ("node-tr46" ,node-tr46-0.0.3)))
1038 (home-page "https://github.com/jsdom/whatwg-url#readme")
1039 (synopsis
1040 "An implementation of the WHATWG URL Standard's URL API and parsing machinery")
1041 (description
1042 "An implementation of the WHATWG URL Standard's URL API and parsing machinery")
1043 (license license:expat)))
1044
1045(define-public node-node-fetch-2.6.11
1046 (package
1047 (name "node-node-fetch")
1048 (version "2.6.11")
1049 (source (origin
1050 (method url-fetch)
1051 (uri
1052 "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.11.tgz")
1053 (sha256
1054 (base32
1055 "1xn85dq7fqpyswya37fhasgipxpkirp7fa6wi8q8frr7p4cjwsp2"))))
1056 (build-system node-build-system)
1057 (arguments
1058 '(#:tests? #f
1059 #:modules
1060 ((guix build node-build-system)
1061 (srfi srfi-1)
1062 (ice-9 match)
1063 (guix build utils))
1064 #:phases (modify-phases %standard-phases
1065 (delete 'build)
1066(add-before 'configure 'avoid-prepare-scripts
1067 (lambda _
1068 ;; We need to remove the prepare script from "package.json", as
1069 ;; it would try to use the build environment and would block the
1070 ;; automatic building by other packages making use of node-acorn.
1071 ;; TODO: Add utility function
1072 (with-atomic-json-file-replacement "package.json"
1073 (match-lambda
1074 (('@ . pkg-meta-alist)
1075 (cons '@ (map (match-lambda
1076 (("scripts" @ . scripts-alist)
1077 `("scripts" @ ,@(filter (match-lambda
1078 (("prepare" . _)
1079 #f)
1080 (_
1081 #t))
1082 scripts-alist)))
1083 (other other))
1084 pkg-meta-alist)))))))
1085 (add-after 'patch-dependencies 'delete-dev-dependencies
1086 (lambda _
1087 (delete-dependencies '("@ungap/url-search-params"
1088 "abort-controller"
1089 "abortcontroller-polyfill"
1090 "babel-core"
1091 "babel-plugin-istanbul"
1092 "babel-plugin-transform-async-generator-functions"
1093 "babel-polyfill"
1094 "babel-preset-env"
1095 "babel-register"
1096 "chai"
1097 "chai-as-promised"
1098 "chai-iterator"
1099 "chai-string"
1100 "codecov"
1101 "cross-env"
1102 "form-data"
1103 "is-builtin-module"
1104 "mocha"
1105 "nyc"
1106 "parted"
1107 "promise"
1108 "resumer"
1109 "rollup"
1110 "rollup-plugin-babel"
1111 "string-to-arraybuffer"
1112 "teeny-request"
1113 "encoding")))))))
1114 (inputs `(("node-whatwg-url" ,node-whatwg-url-5.0.0)
1115 ("node-encoding" ,node-encoding-0.1.13)))
1116 (home-page "https://github.com/bitinn/node-fetch")
1117 (synopsis "A light-weight module that brings window.fetch to node.js")
1118 (description "A light-weight module that brings window.fetch to node.js")
1119 (license license:expat)))
1120
1121(define-public node-abbrev-1.1.1
1122 (package
1123 (name "node-abbrev")
1124 (version "1.1.1")
1125 (source (origin
1126 (method url-fetch)
1127 (uri "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz")
1128 (sha256
1129 (base32
1130 "0vdsff38rgn0qylyj6x42n13bnxfqxb9ql34bzs4z9grlli9vh8c"))))
1131 (build-system node-build-system)
1132 (arguments
1133 '(#:tests? #f
1134 #:phases (modify-phases %standard-phases
1135 (delete 'build)
1136 (add-after 'patch-dependencies 'delete-dev-dependencies
1137 (lambda _
1138 (delete-dependencies '("tap")))))))
1139 (home-page "https://github.com/isaacs/abbrev-js#readme")
1140 (synopsis "Like ruby's abbrev module, but in js")
1141 (description "Like ruby's abbrev module, but in js")
1142 (license license:isc)))
1143
1144(define-public node-nopt-5.0.0
1145 (package
1146 (name "node-nopt")
1147 (version "5.0.0")
1148 (source (origin
1149 (method url-fetch)
1150 (uri "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz")
1151 (sha256
1152 (base32
1153 "1h4pv5dd3yd8zvf4z61sg9ydqvwimdws1w2dm581kj93j35sxivz"))))
1154 (build-system node-build-system)
1155 (arguments
1156 '(#:tests? #f
1157 #:phases (modify-phases %standard-phases
1158 (delete 'build)
1159 (add-after 'patch-dependencies 'delete-dev-dependencies
1160 (lambda _
1161 (delete-dependencies '("tap")))))))
1162 (inputs `(("node-abbrev" ,node-abbrev-1.1.1)))
1163 (home-page "https://github.com/npm/nopt#readme")
1164 (synopsis
1165 "Option parsing for Node, supporting types, shorthands, etc. Used by npm.")
1166 (description
1167 "Option parsing for Node, supporting types, shorthands, etc. Used by npm.")
1168 (license license:isc)))
1169
1170(define-public node-delegates-1.0.0
1171 (package
1172 (name "node-delegates")
1173 (version "1.0.0")
1174 (source (origin
1175 (method url-fetch)
1176 (uri
1177 "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz")
1178 (sha256
1179 (base32
1180 "0qb4rw56fbxcpc2iwj1x0qxzakwwqigxgggggd6ajl7d27sdpvxz"))))
1181 (build-system node-build-system)
1182 (arguments
1183 '(#:tests? #f
1184 #:phases (modify-phases %standard-phases
1185 (delete 'build)
1186 (add-after 'patch-dependencies 'delete-dev-dependencies
1187 (lambda _
1188 (delete-dependencies '("mocha" "should")))))))
1189 (home-page "https://github.com/visionmedia/node-delegates#readme")
1190 (synopsis "delegate methods and accessors to another property")
1191 (description "delegate methods and accessors to another property")
1192 (license license:expat)))
1193
1194(define-public node-readable-stream-3.6.2
1195 (package
1196 (name "node-readable-stream")
1197 (version "3.6.2")
1198 (source (origin
1199 (method url-fetch)
1200 (uri
1201 "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz")
1202 (sha256
1203 (base32
1204 "0pdb0mrh95ks672ikgj8frx9nh078bfyngknj70ak2iibv06dn7d"))))
1205 (build-system node-build-system)
1206 (arguments
1207 '(#:tests? #f
1208 #:phases (modify-phases %standard-phases
1209 (delete 'build)
1210 (add-after 'patch-dependencies 'delete-dev-dependencies
1211 (lambda _
1212 (delete-dependencies '("@babel/cli" "@babel/core"
1213 "@babel/polyfill"
1214 "@babel/preset-env"
1215 "airtap"
1216 "assert"
1217 "bl"
1218 "deep-strict-equal"
1219 "events.once"
1220 "glob"
1221 "gunzip-maybe"
1222 "hyperquest"
1223 "lolex"
1224 "nyc"
1225 "pump"
1226 "rimraf"
1227 "tap"
1228 "tape"
1229 "tar-fs"
1230 "util-promisify")))))))
1231 (inputs `(("node-util-deprecate" ,node-util-deprecate-1.0.2)
1232 ("node-string-decoder" ,node-string-decoder-1.3.0)
1233 ("node-inherits" ,node-inherits-2.0.4)))
1234 (home-page "https://github.com/nodejs/readable-stream#readme")
1235 (synopsis "Streams3, a user-land copy of the stream library from Node.js")
1236 (description
1237 "Streams3, a user-land copy of the stream library from Node.js")
1238 (license license:expat)))
1239
1240(define-public node-are-we-there-yet-2.0.0
1241 (package
1242 (name "node-are-we-there-yet")
1243 (version "2.0.0")
1244 (source (origin
1245 (method url-fetch)
1246 (uri
1247 "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz")
1248 (sha256
1249 (base32
1250 "0dnd6fpia4mm58zlilx5wk2dqssmv157ckqj6vagkdks7jrxxn7m"))))
1251 (build-system node-build-system)
1252 (arguments
1253 '(#:tests? #f
1254 #:phases (modify-phases %standard-phases
1255 (delete 'build)
1256 (add-after 'patch-dependencies 'delete-dev-dependencies
1257 (lambda _
1258 (delete-dependencies '("@npmcli/eslint-config"
1259 "@npmcli/template-oss" "eslint"
1260 "eslint-plugin-node" "tap")))))))
1261 (inputs `(("node-readable-stream" ,node-readable-stream-3.6.2)
1262 ("node-delegates" ,node-delegates-1.0.0)))
1263 (home-page "https://github.com/npm/are-we-there-yet")
1264 (synopsis
1265 "Keep track of the overall completion of many disparate processes")
1266 (description
1267 "Keep track of the overall completion of many disparate processes")
1268 (license license:isc)))
1269
1270(define-public node-aproba-2.0.0
1271 (package
1272 (name "node-aproba")
1273 (version "2.0.0")
1274 (source (origin
1275 (method url-fetch)
1276 (uri "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz")
1277 (sha256
1278 (base32
1279 "1x9b0j6z15bnmhbw8fca0xnafj9ci1y091r0l0ms72rbbqb4zchc"))))
1280 (build-system node-build-system)
1281 (arguments
1282 '(#:tests? #f
1283 #:phases (modify-phases %standard-phases
1284 (delete 'build)
1285 (add-after 'patch-dependencies 'delete-dev-dependencies
1286 (lambda _
1287 (delete-dependencies '("standard" "tap")))))))
1288 (home-page "https://github.com/iarna/aproba")
1289 (synopsis
1290 "A ridiculously light-weight argument validator (now browser friendly)")
1291 (description
1292 "A ridiculously light-weight argument validator (now browser friendly)")
1293 (license license:isc)))
1294
1295(define-public node-color-support-1.1.3
1296 (package
1297 (name "node-color-support")
1298 (version "1.1.3")
1299 (source (origin
1300 (method url-fetch)
1301 (uri
1302 "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz")
1303 (sha256
1304 (base32
1305 "0mdpbqki4iz5fmm4rpviwvw8ra0wjp0ccqf3cyvwh8nxwanlxhv1"))))
1306 (build-system node-build-system)
1307 (arguments
1308 '(#:tests? #f
1309 #:phases (modify-phases %standard-phases
1310 (delete 'build)
1311 (add-after 'patch-dependencies 'delete-dev-dependencies
1312 (lambda _
1313 (delete-dependencies '("tap")))))))
1314 (home-page "https://github.com/isaacs/color-support#readme")
1315 (synopsis
1316 "A module which will endeavor to guess your terminal's level of color support.")
1317 (description
1318 "A module which will endeavor to guess your terminal's level of color support.")
1319 (license license:isc)))
1320
1321(define-public node-console-control-strings-1.1.0
1322 (package
1323 (name "node-console-control-strings")
1324 (version "1.1.0")
1325 (source (origin
1326 (method url-fetch)
1327 (uri
1328 "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz")
1329 (sha256
1330 (base32
1331 "0dl328x4g2dqhf4lbfajf4c7vlb6m7ff8adpk1ngig7s1i49pm7h"))))
1332 (build-system node-build-system)
1333 (arguments
1334 '(#:tests? #f
1335 #:phases (modify-phases %standard-phases
1336 (delete 'build)
1337 (add-after 'patch-dependencies 'delete-dev-dependencies
1338 (lambda _
1339 (delete-dependencies '("standard" "tap")))))))
1340 (home-page "https://github.com/iarna/console-control-strings#readme")
1341 (synopsis
1342 "A library of cross-platform tested terminal/console command strings for doing things like color and cursor positioning. This is a subset of both ansi and vt100. All control codes included work on both Windows & Unix-like OSes, except where noted.")
1343 (description
1344 "A library of cross-platform tested terminal/console command strings for doing things like color and cursor positioning. This is a subset of both ansi and vt100. All control codes included work on both Windows & Unix-like OSes, except where noted.")
1345 (license license:isc)))
1346
1347(define-public node-has-unicode-2.0.1
1348 (package
1349 (name "node-has-unicode")
1350 (version "2.0.1")
1351 (source (origin
1352 (method url-fetch)
1353 (uri
1354 "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz")
1355 (sha256
1356 (base32
1357 "1b7c6mrpncz2x7s6r1v9kcmqw6hix039kbkbzqz0czma56gxsqfh"))))
1358 (build-system node-build-system)
1359 (arguments
1360 '(#:tests? #f
1361 #:phases (modify-phases %standard-phases
1362 (delete 'build)
1363 (add-after 'patch-dependencies 'delete-dev-dependencies
1364 (lambda _
1365 (delete-dependencies '("require-inject" "tap")))))))
1366 (home-page "https://github.com/iarna/has-unicode")
1367 (synopsis "Try to guess if your terminal supports unicode")
1368 (description "Try to guess if your terminal supports unicode")
1369 (license license:isc)))
1370
1371(define-public node-object-assign-4.1.1
1372 (package
1373 (name "node-object-assign")
57 (version "4.1.1") 1374 (version "4.1.1")
58 (source 1375 (source (origin
59 (origin 1376 (method url-fetch)
60 (method url-fetch) 1377 (uri
61 (uri "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-4.1.1.tgz") 1378 "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz")
62 (sha256 1379 (sha256
63 (base32 1380 (base32
64 "1rzhpi0ak9pynyrvb5pmzvh0pypzpnx9xxrs2y7b0cgg093r5imm")))) 1381 "1v999sycxcp74j2pikdhyinm2d80p2bsy4nnrrnb59rv4rm74bbq"))))
65 (build-system node-build-system) 1382 (build-system node-build-system)
66 (arguments 1383 (arguments
67 `(#:tests? 1384 '(#:tests? #f
68 #f 1385 #:phases (modify-phases %standard-phases
69 #:phases 1386 (delete 'build)
70 (modify-phases 1387 (add-after 'patch-dependencies 'delete-dev-dependencies
71 %standard-phases 1388 (lambda _
72 (delete 'configure) 1389 (delete-dependencies '("ava" "lodash" "matcha" "xo")))))))
73 (delete 'build)))) 1390 (home-page "https://github.com/sindresorhus/object-assign#readme")
74 (inputs `(("node-acorn" ,node-acorn-5.7.4))) 1391 (synopsis "ES2015 `Object.assign()` ponyfill")
1392 (description "ES2015 `Object.assign()` ponyfill")
1393 (license license:expat)))
1394
1395(define-public node-signal-exit-3.0.7
1396 (package
1397 (name "node-signal-exit")
1398 (version "3.0.7")
1399 (source (origin
1400 (method url-fetch)
1401 (uri
1402 "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz")
1403 (sha256
1404 (base32
1405 "1a10ixkiak24yy6s7p9m7c6v9jkz2fm7wxgc2l3614dbdbx275j3"))))
1406 (build-system node-build-system)
1407 (arguments
1408 '(#:tests? #f
1409 #:phases (modify-phases %standard-phases
1410 (delete 'build)
1411 (add-after 'patch-dependencies 'delete-dev-dependencies
1412 (lambda _
1413 (delete-dependencies '("chai" "coveralls" "nyc"
1414 "standard-version" "tap")))))))
1415 (home-page "https://github.com/tapjs/signal-exit")
1416 (synopsis "when you want to fire an event no matter how a process exits.")
1417 (description
1418 "when you want to fire an event no matter how a process exits.")
1419 (license license:isc)))
1420
1421(define-public node-is-fullwidth-code-point-3.0.0
1422 (package
1423 (name "node-is-fullwidth-code-point")
1424 (version "3.0.0")
1425 (source (origin
1426 (method url-fetch)
1427 (uri
1428 "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz")
1429 (sha256
1430 (base32
1431 "0jmw03rxmbwbrkx0a8wq05qsjhdrx9jn3vns88dhy1y6bnp5shbg"))))
1432 (build-system node-build-system)
1433 (arguments
1434 '(#:tests? #f
1435 #:phases (modify-phases %standard-phases
1436 (delete 'build)
1437 (add-after 'patch-dependencies 'delete-dev-dependencies
1438 (lambda _
1439 (delete-dependencies '("ava" "tsd-check" "xo")))))))
75 (home-page 1440 (home-page
76 "https://github.com/RReverser/acorn-jsx") 1441 "https://github.com/sindresorhus/is-fullwidth-code-point#readme")
77 (synopsis 1442 (synopsis
78 "Alternative, faster React.js JSX parser") 1443 "Check if the character represented by a given Unicode code point is fullwidth")
79 (description 1444 (description
80 "Alternative, faster React.js JSX parser") 1445 "Check if the character represented by a given Unicode code point is fullwidth")
81 (license license:expat))) 1446 (license license:expat)))
82 1447
83(define-public node-ansi-0.3.1 1448(define-public node-ansi-regex-5.0.1
84 (package 1449 (package
85 (name "node-ansi") 1450 (name "node-ansi-regex")
86 (version "0.3.1") 1451 (version "5.0.1")
87 (source 1452 (source (origin
88 (origin 1453 (method url-fetch)
89 (method url-fetch) 1454 (uri
90 (uri "https://registry.npmjs.org/ansi/-/ansi-0.3.1.tgz") 1455 "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz")
91 (sha256 1456 (sha256
92 (base32 1457 (base32
93 "0jbf21lf5jsqs63ki1dqzx4llqr7wvlc4jy8hhdyy7qvhglsj187")))) 1458 "1ng0r2k4mcz7b2bfr6g1dschnxm0vifaslsvv2smv06smb6ss3hf"))))
94 (build-system node-build-system) 1459 (build-system node-build-system)
95 (arguments 1460 (arguments
96 `(#:tests? 1461 '(#:tests? #f
97 #f 1462 #:phases (modify-phases %standard-phases
98 #:phases 1463 (delete 'build)
99 (modify-phases 1464 (add-after 'patch-dependencies 'delete-dev-dependencies
100 %standard-phases 1465 (lambda _
101 (delete 'configure) 1466 (delete-dependencies '("ava" "tsd" "xo")))))))
102 (delete 'build)))) 1467 (home-page "https://github.com/chalk/ansi-regex#readme")
103 (home-page 1468 (synopsis "Regular expression for matching ANSI escape codes")
104 "https://github.com/TooTallNate/ansi.js#readme") 1469 (description "Regular expression for matching ANSI escape codes")
1470 (license license:expat)))
1471
1472(define-public node-strip-ansi-6.0.1
1473 (package
1474 (name "node-strip-ansi")
1475 (version "6.0.1")
1476 (source (origin
1477 (method url-fetch)
1478 (uri
1479 "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz")
1480 (sha256
1481 (base32
1482 "1jh81jj6cn1lli1c7m6xi0ynra9zdghb1g63v1nib7zlpz87bnwv"))))
1483 (build-system node-build-system)
1484 (arguments
1485 '(#:tests? #f
1486 #:phases (modify-phases %standard-phases
1487 (delete 'build)
1488 (add-after 'patch-dependencies 'delete-dev-dependencies
1489 (lambda _
1490 (delete-dependencies '("ava" "tsd" "xo")))))))
1491 (inputs `(("node-ansi-regex" ,node-ansi-regex-5.0.1)))
1492 (home-page "https://github.com/chalk/strip-ansi#readme")
1493 (synopsis "Strip ANSI escape codes from a string")
1494 (description "Strip ANSI escape codes from a string")
1495 (license license:expat)))
1496
1497(define-public node-string-width-4.2.3
1498 (package
1499 (name "node-string-width")
1500 (version "4.2.3")
1501 (source (origin
1502 (method url-fetch)
1503 (uri
1504 "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz")
1505 (sha256
1506 (base32
1507 "0d19spdisrqxd6311fc7z1yg34ww6rwh1zxdk6pnk03fnaqlzfxd"))))
1508 (build-system node-build-system)
1509 (arguments
1510 '(#:tests? #f
1511 #:phases (modify-phases %standard-phases
1512 (delete 'build)
1513 (add-after 'patch-dependencies 'delete-dev-dependencies
1514 (lambda _
1515 (delete-dependencies '("ava" "tsd" "xo")))))))
1516 (inputs `(("node-strip-ansi" ,node-strip-ansi-6.0.1)
1517 ("node-is-fullwidth-code-point" ,node-is-fullwidth-code-point-3.0.0)
1518 ("node-emoji-regex" ,node-emoji-regex-8.0.0)))
1519 (home-page "https://github.com/sindresorhus/string-width#readme")
105 (synopsis 1520 (synopsis
106 "Advanced ANSI formatting tool for Node.js") 1521 "Get the visual width of a string - the number of columns required to display it")
107 (description 1522 (description
108 "Advanced ANSI formatting tool for Node.js") 1523 "Get the visual width of a string - the number of columns required to display it")
109 (license license:expat))) 1524 (license license:expat)))
110 1525
111(define-public node-app-root-path-2.2.1 1526(define-public node-wide-align-1.1.5
112 (package 1527 (package
113 (name "node-app-root-path") 1528 (name "node-wide-align")
1529 (version "1.1.5")
1530 (source (origin
1531 (method url-fetch)
1532 (uri
1533 "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz")
1534 (sha256
1535 (base32
1536 "0k2zsixfhs4bahdn22bjjbbnxldlaxaxczwzaxv4wflf1f4h2n7c"))))
1537 (build-system node-build-system)
1538 (arguments
1539 '(#:tests? #f
1540 #:phases (modify-phases %standard-phases
1541 (delete 'build)
1542 (add-after 'patch-dependencies 'delete-dev-dependencies
1543 (lambda _
1544 (delete-dependencies '("tap")))))))
1545 (inputs `(("node-string-width" ,node-string-width-4.2.3)))
1546 (home-page "https://github.com/iarna/wide-align#readme")
1547 (synopsis
1548 "A wide-character aware text alignment function for use on the console or with fixed width fonts.")
1549 (description
1550 "A wide-character aware text alignment function for use on the console or with fixed width fonts.")
1551 (license license:isc)))
1552
1553(define-public node-gauge-3.0.2
1554 (package
1555 (name "node-gauge")
1556 (version "3.0.2")
1557 (source (origin
1558 (method url-fetch)
1559 (uri "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz")
1560 (sha256
1561 (base32
1562 "0mx3v0ar34dh0p88dm9xfh19f3jjx40139q58z5ibnb6cnpywxw8"))))
1563 (build-system node-build-system)
1564 (arguments
1565 '(#:tests? #f
1566 #:phases (modify-phases %standard-phases
1567 (delete 'build)
1568 (add-after 'patch-dependencies 'delete-dev-dependencies
1569 (lambda _
1570 (delete-dependencies '("readable-stream"
1571 "require-inject" "standard" "tap"
1572 "through2")))))))
1573 (inputs `(("node-wide-align" ,node-wide-align-1.1.5)
1574 ("node-strip-ansi" ,node-strip-ansi-6.0.1)
1575 ("node-string-width" ,node-string-width-4.2.3)
1576 ("node-signal-exit" ,node-signal-exit-3.0.7)
1577 ("node-object-assign" ,node-object-assign-4.1.1)
1578 ("node-has-unicode" ,node-has-unicode-2.0.1)
1579 ("node-console-control-strings" ,node-console-control-strings-1.1.0)
1580 ("node-color-support" ,node-color-support-1.1.3)
1581 ("node-aproba" ,node-aproba-2.0.0)))
1582 (home-page "https://github.com/npm/gauge")
1583 (synopsis "A terminal based horizontal guage")
1584 (description "A terminal based horizontal guage")
1585 (license license:isc)))
1586
1587(define-public node-set-blocking-2.0.0
1588 (package
1589 (name "node-set-blocking")
1590 (version "2.0.0")
1591 (source (origin
1592 (method url-fetch)
1593 (uri
1594 "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz")
1595 (sha256
1596 (base32
1597 "0gb9mvv8bjfavsxlzq56189qis7z2lrp893px04xl2cyvgkswd6r"))))
1598 (build-system node-build-system)
1599 (arguments
1600 '(#:tests? #f
1601 #:phases (modify-phases %standard-phases
1602 (delete 'build)
1603 (add-after 'patch-dependencies 'delete-dev-dependencies
1604 (lambda _
1605 (delete-dependencies '("chai" "coveralls" "mocha" "nyc"
1606 "standard" "standard-version")))))))
1607 (home-page "https://github.com/yargs/set-blocking#readme")
1608 (synopsis
1609 "set blocking stdio and stderr ensuring that terminal output does not truncate")
1610 (description
1611 "set blocking stdio and stderr ensuring that terminal output does not truncate")
1612 (license license:isc)))
1613
1614(define-public node-npmlog-5.0.1
1615 (package
1616 (name "node-npmlog")
1617 (version "5.0.1")
1618 (source (origin
1619 (method url-fetch)
1620 (uri "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz")
1621 (sha256
1622 (base32
1623 "1wk8s79vxn6r2d2c4gj6z81jl7dskl3aghgrjvbwjv1s3lh5glgs"))))
1624 (build-system node-build-system)
1625 (arguments
1626 '(#:tests? #f
1627 #:phases (modify-phases %standard-phases
1628 (delete 'build)
1629 (add-after 'patch-dependencies 'delete-dev-dependencies
1630 (lambda _
1631 (delete-dependencies '("@npmcli/lint" "tap")))))))
1632 (inputs `(("node-set-blocking" ,node-set-blocking-2.0.0)
1633 ("node-gauge" ,node-gauge-3.0.2)
1634 ("node-console-control-strings" ,node-console-control-strings-1.1.0)
1635 ("node-are-we-there-yet" ,node-are-we-there-yet-2.0.0)))
1636 (home-page "https://github.com/npm/npmlog#readme")
1637 (synopsis "logger for npm")
1638 (description "logger for npm")
1639 (license license:isc)))
1640
1641(define-public node-fs-realpath-1.0.0
1642 (package
1643 (name "node-fs-realpath")
1644 (version "1.0.0")
1645 (source (origin
1646 (method url-fetch)
1647 (uri
1648 "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz")
1649 (sha256
1650 (base32
1651 "174g5vay9jnd7h5q8hfdw6dnmwl1gdpn4a8sz0ysanhj2f3wp04y"))))
1652 (build-system node-build-system)
1653 (arguments
1654 '(#:tests? #f
1655 #:phases (modify-phases %standard-phases
1656 (delete 'build))))
1657 (home-page "https://github.com/isaacs/fs.realpath#readme")
1658 (synopsis
1659 "Use node's fs.realpath, but fall back to the JS implementation if the native one fails")
1660 (description
1661 "Use node's fs.realpath, but fall back to the JS implementation if the native one fails")
1662 (license license:isc)))
1663
1664(define-public node-balanced-match-1.0.2
1665 (package
1666 (name "node-balanced-match")
1667 (version "1.0.2")
1668 (source (origin
1669 (method url-fetch)
1670 (uri
1671 "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz")
1672 (sha256
1673 (base32
1674 "1hdwrr7qqb37plj7962xbwjx1jvjz7ahl7iqrwh82yhcvnmzfm6q"))))
1675 (build-system node-build-system)
1676 (arguments
1677 '(#:tests? #f
1678 #:phases (modify-phases %standard-phases
1679 (delete 'build)
1680 (add-after 'patch-dependencies 'delete-dev-dependencies
1681 (lambda _
1682 (delete-dependencies '("matcha" "tape")))))))
1683 (home-page "https://github.com/juliangruber/balanced-match")
1684 (synopsis "Match balanced character pairs, like \"{\" and \"}\"")
1685 (description "Match balanced character pairs, like \"{\" and \"}\"")
1686 (license license:expat)))
1687
1688(define-public node-brace-expansion-1.1.11
1689 (package
1690 (name "node-brace-expansion")
1691 (version "1.1.11")
1692 (source (origin
1693 (method url-fetch)
1694 (uri
1695 "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz")
1696 (sha256
1697 (base32
1698 "1nlmjvlwlp88knblnayns0brr7a9m2fynrlwq425lrpb4mcn9gc4"))))
1699 (build-system node-build-system)
1700 (arguments
1701 '(#:tests? #f
1702 #:phases (modify-phases %standard-phases
1703 (delete 'build)
1704 (add-after 'patch-dependencies 'delete-dev-dependencies
1705 (lambda _
1706 (delete-dependencies '("matcha" "tape")))))))
1707 (inputs `(("node-concat-map" ,node-concat-map-0.0.1)
1708 ("node-balanced-match" ,node-balanced-match-1.0.2)))
1709 (home-page "https://github.com/juliangruber/brace-expansion")
1710 (synopsis "Brace expansion as known from sh/bash")
1711 (description "Brace expansion as known from sh/bash")
1712 (license license:expat)))
1713
1714(define-public node-glob-7.2.3
1715 (package
1716 (name "node-glob")
1717 (version "7.2.3")
1718 (source (origin
1719 (method url-fetch)
1720 (uri "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz")
1721 (sha256
1722 (base32
1723 "10a336nxv867xkjs3ipgbharwdzp5lnz7wr8viawn1lc66qqx8zh"))))
1724 (build-system node-build-system)
1725 (arguments
1726 '(#:tests? #f
1727 #:phases (modify-phases %standard-phases
1728 (delete 'build)
1729 (add-after 'patch-dependencies 'delete-dev-dependencies
1730 (lambda _
1731 (delete-dependencies '("memfs" "mkdirp" "rimraf" "tap"
1732 "tick")))))))
1733 (inputs `(("node-path-is-absolute" ,node-path-is-absolute-1.0.1)
1734 ("node-once" ,node-once-1.4.0)
1735 ("node-minimatch" ,node-minimatch-3.1.2)
1736 ("node-inherits" ,node-inherits-2.0.4)
1737 ("node-inflight" ,node-inflight-1.0.6)
1738 ("node-fs-realpath" ,node-fs-realpath-1.0.0)))
1739 (home-page "https://github.com/isaacs/node-glob#readme")
1740 (synopsis "a little globber")
1741 (description "a little globber")
1742 (license license:isc)))
1743
1744(define-public node-rimraf-3.0.2
1745 (package
1746 (name "node-rimraf")
1747 (version "3.0.2")
1748 (source (origin
1749 (method url-fetch)
1750 (uri "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz")
1751 (sha256
1752 (base32
1753 "0lkzjyxjij6ssh5h2l3ncp0zx00ylzhww766dq2vf1s7v07w4xjq"))))
1754 (build-system node-build-system)
1755 (arguments
1756 '(#:tests? #f
1757 #:phases (modify-phases %standard-phases
1758 (delete 'build)
1759 (add-after 'patch-dependencies 'delete-dev-dependencies
1760 (lambda _
1761 (delete-dependencies '("mkdirp" "tap")))))))
1762 (inputs `(("node-glob" ,node-glob-7.2.3)))
1763 (home-page "https://github.com/isaacs/rimraf#readme")
1764 (synopsis "A deep deletion module for node (like `rm -rf`)")
1765 (description "A deep deletion module for node (like `rm -rf`)")
1766 (license license:isc)))
1767
1768(define-public node-lru-cache-6.0.0
1769 (package
1770 (name "node-lru-cache")
1771 (version "6.0.0")
1772 (source (origin
1773 (method url-fetch)
1774 (uri
1775 "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz")
1776 (sha256
1777 (base32
1778 "0pnziizgv8jpg708ykywcjby0syjz1l2ll1j727rdxhw0gmhvr2w"))))
1779 (build-system node-build-system)
1780 (arguments
1781 '(#:tests? #f
1782 #:phases (modify-phases %standard-phases
1783 (delete 'build)
1784 (add-after 'patch-dependencies 'delete-dev-dependencies
1785 (lambda _
1786 (delete-dependencies '("benchmark" "tap")))))))
1787 (inputs `(("node-yallist" ,node-yallist-4.0.0)))
1788 (home-page "https://github.com/isaacs/node-lru-cache#readme")
1789 (synopsis "A cache object that deletes the least-recently-used items.")
1790 (description "A cache object that deletes the least-recently-used items.")
1791 (license license:isc)))
1792
1793(define-public node-semver-7.5.1
1794 (package
1795 (name "node-semver")
1796 (version "7.5.1")
1797 (source (origin
1798 (method url-fetch)
1799 (uri "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz")
1800 (sha256
1801 (base32
1802 "1iqrkrbkd1ddf8nzkpkdm8vw4xl1qg04j1118mhgcrsdjgpd0rkl"))))
1803 (build-system node-build-system)
1804 (arguments
1805 '(#:tests? #f
1806 #:phases (modify-phases %standard-phases
1807 (delete 'build)
1808 (add-after 'patch-dependencies 'delete-dev-dependencies
1809 (lambda _
1810 (delete-dependencies '("@npmcli/eslint-config"
1811 "@npmcli/template-oss" "tap")))))))
1812 (inputs `(("node-lru-cache" ,node-lru-cache-6.0.0)))
1813 (home-page "https://github.com/npm/node-semver#readme")
1814 (synopsis "The semantic version parser used by npm.")
1815 (description "The semantic version parser used by npm.")
1816 (license license:isc)))
1817
1818(define-public node-chownr-2.0.0
1819 (package
1820 (name "node-chownr")
1821 (version "2.0.0")
1822 (source (origin
1823 (method url-fetch)
1824 (uri "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz")
1825 (sha256
1826 (base32
1827 "177wsdfmn1d2f12wy8m875b5y9a74ibfdh33jarlv3a0zrbmvqlv"))))
1828 (build-system node-build-system)
1829 (arguments
1830 '(#:tests? #f
1831 #:phases (modify-phases %standard-phases
1832 (delete 'build)
1833 (add-after 'patch-dependencies 'delete-dev-dependencies
1834 (lambda _
1835 (delete-dependencies '("mkdirp" "rimraf" "tap")))))))
1836 (home-page "https://github.com/isaacs/chownr#readme")
1837 (synopsis "like `chown -R`")
1838 (description "like `chown -R`")
1839 (license license:isc)))
1840
1841(define-public node-fs-minipass-2.1.0
1842 (package
1843 (name "node-fs-minipass")
1844 (version "2.1.0")
1845 (source (origin
1846 (method url-fetch)
1847 (uri
1848 "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz")
1849 (sha256
1850 (base32
1851 "029kdjb6h8gp0gfx7rx6yzwbv7pnd7i119gn563ynv0dqx02p5gx"))))
1852 (build-system node-build-system)
1853 (arguments
1854 '(#:tests? #f
1855 #:phases (modify-phases %standard-phases
1856 (delete 'build)
1857 (add-after 'patch-dependencies 'delete-dev-dependencies
1858 (lambda _
1859 (delete-dependencies '("mutate-fs" "tap")))))))
1860 (inputs `(("node-minipass" ,node-minipass-3.3.6)))
1861 (home-page "https://github.com/npm/fs-minipass#readme")
1862 (synopsis "fs read and write streams based on minipass")
1863 (description "fs read and write streams based on minipass")
1864 (license license:isc)))
1865
1866(define-public node-minipass-5.0.0
1867 (package
1868 (name "node-minipass")
1869 (version "5.0.0")
1870 (source (origin
1871 (method url-fetch)
1872 (uri "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz")
1873 (sha256
1874 (base32
1875 "0gyp0rswjzj01mqapa714zw9h5m2jbynfcfz01g107wgdhc5hwdy"))))
1876 (build-system node-build-system)
1877 (arguments
1878 '(#:tests? #f
1879 #:modules
1880 ((guix build node-build-system)
1881 (srfi srfi-1)
1882 (ice-9 match)
1883 (guix build utils))
1884 #:phases (modify-phases %standard-phases
1885 (delete 'build)
1886(add-before 'configure 'avoid-prepare-scripts
1887 (lambda _
1888 ;; We need to remove the prepare script from "package.json", as
1889 ;; it would try to use the build environment and would block the
1890 ;; automatic building by other packages making use of node-acorn.
1891 ;; TODO: Add utility function
1892 (with-atomic-json-file-replacement "package.json"
1893 (match-lambda
1894 (('@ . pkg-meta-alist)
1895 (cons '@ (map (match-lambda
1896 (("scripts" @ . scripts-alist)
1897 `("scripts" @ ,@(filter (match-lambda
1898 (("prepare" . _)
1899 #f)
1900 (_
1901 #t))
1902 scripts-alist)))
1903 (other other))
1904 pkg-meta-alist)))))))
1905 (add-after 'patch-dependencies 'delete-dev-dependencies
1906 (lambda _
1907 (delete-dependencies '("@types/node" "end-of-stream"
1908 "node-abort-controller"
1909 "prettier"
1910 "tap"
1911 "through2"
1912 "ts-node"
1913 "typedoc"
1914 "typescript")))))))
1915 (home-page "https://github.com/isaacs/minipass#readme")
1916 (synopsis "minimal implementation of a PassThrough stream")
1917 (description "minimal implementation of a PassThrough stream")
1918 (license license:isc)))
1919
1920(define-public node-minipass-3.3.6
1921 (package
1922 (name "node-minipass")
1923 (version "3.3.6")
1924 (source (origin
1925 (method url-fetch)
1926 (uri "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz")
1927 (sha256
1928 (base32
1929 "0pcyrxs22fnr6n1910qa7mpvdwfnxjvwnkwf5j04f6d28ds91lks"))))
1930 (build-system node-build-system)
1931 (arguments
1932 '(#:tests? #f
1933 #:phases (modify-phases %standard-phases
1934 (delete 'build)
1935 (add-after 'patch-dependencies 'delete-dev-dependencies
1936 (lambda _
1937 (delete-dependencies '("@types/node" "end-of-stream"
1938 "prettier"
1939 "tap"
1940 "through2"
1941 "ts-node"
1942 "typescript")))))))
1943 (inputs `(("node-yallist" ,node-yallist-4.0.0)))
1944 (home-page "https://github.com/isaacs/minipass#readme")
1945 (synopsis "minimal implementation of a PassThrough stream")
1946 (description "minimal implementation of a PassThrough stream")
1947 (license license:isc)))
1948
1949(define-public node-minizlib-2.1.2
1950 (package
1951 (name "node-minizlib")
1952 (version "2.1.2")
1953 (source (origin
1954 (method url-fetch)
1955 (uri "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz")
1956 (sha256
1957 (base32
1958 "1vffn3i5ys3w74s8m8n4l7vvzijddi44flpaxdfv96q85n513va4"))))
1959 (build-system node-build-system)
1960 (arguments
1961 '(#:tests? #f
1962 #:phases (modify-phases %standard-phases
1963 (delete 'build)
1964 (add-after 'patch-dependencies 'delete-dev-dependencies
1965 (lambda _
1966 (delete-dependencies '("tap")))))))
1967 (inputs `(("node-yallist" ,node-yallist-4.0.0)
1968 ("node-minipass" ,node-minipass-3.3.6)))
1969 (home-page "https://github.com/isaacs/minizlib#readme")
1970 (synopsis
1971 "A small fast zlib stream built on [minipass](http://npm.im/minipass) and Node.js's zlib binding.")
1972 (description
1973 "A small fast zlib stream built on [minipass](http://npm.im/minipass) and Node.js's zlib binding.")
1974 (license license:expat)))
1975
1976(define-public node-mkdirp-1.0.4
1977 (package
1978 (name "node-mkdirp")
1979 (version "1.0.4")
1980 (source (origin
1981 (method url-fetch)
1982 (uri "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz")
1983 (sha256
1984 (base32
1985 "06nqac14zbpar89jc7s574l1qpmamr1kzy0dr3qyhvxg8570f5qx"))))
1986 (build-system node-build-system)
1987 (arguments
1988 '(#:tests? #f
1989 #:phases (modify-phases %standard-phases
1990 (delete 'build)
1991 (add-after 'patch-dependencies 'delete-dev-dependencies
1992 (lambda _
1993 (delete-dependencies '("require-inject" "tap")))))))
1994 (home-page "https://github.com/isaacs/node-mkdirp#readme")
1995 (synopsis "Recursively mkdir, like `mkdir -p`")
1996 (description "Recursively mkdir, like `mkdir -p`")
1997 (license license:expat)))
1998
1999(define-public node-yallist-4.0.0
2000 (package
2001 (name "node-yallist")
2002 (version "4.0.0")
2003 (source (origin
2004 (method url-fetch)
2005 (uri "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz")
2006 (sha256
2007 (base32
2008 "0jadz9mh1lzfk19bvqqlrg40ggfk2yyfyrpgj5c62dk54ym7h358"))))
2009 (build-system node-build-system)
2010 (arguments
2011 '(#:tests? #f
2012 #:phases (modify-phases %standard-phases
2013 (delete 'build)
2014 (add-after 'patch-dependencies 'delete-dev-dependencies
2015 (lambda _
2016 (delete-dependencies '("tap")))))))
2017 (home-page "https://github.com/isaacs/yallist#readme")
2018 (synopsis "Yet Another Linked List")
2019 (description "Yet Another Linked List")
2020 (license license:isc)))
2021
2022(define-public node-tar-6.1.15
2023 (package
2024 (name "node-tar")
2025 (version "6.1.15")
2026 (source (origin
2027 (method url-fetch)
2028 (uri "https://registry.npmjs.org/tar/-/tar-6.1.15.tgz")
2029 (sha256
2030 (base32
2031 "06dh95c86j1lsccb3xm4cxlr3i4bsmpfs5a8dyv3bginmb1y0zg2"))))
2032 (build-system node-build-system)
2033 (arguments
2034 '(#:tests? #f
2035 #:phases (modify-phases %standard-phases
2036 (delete 'build)
2037 (add-after 'patch-dependencies 'delete-dev-dependencies
2038 (lambda _
2039 (delete-dependencies '("@npmcli/eslint-config"
2040 "@npmcli/template-oss"
2041 "chmodr"
2042 "end-of-stream"
2043 "events-to-array"
2044 "mutate-fs"
2045 "nock"
2046 "rimraf"
2047 "tap")))))))
2048 (inputs `(("node-yallist" ,node-yallist-4.0.0)
2049 ("node-mkdirp" ,node-mkdirp-1.0.4)
2050 ("node-minizlib" ,node-minizlib-2.1.2)
2051 ("node-minipass" ,node-minipass-5.0.0)
2052 ("node-fs-minipass" ,node-fs-minipass-2.1.0)
2053 ("node-chownr" ,node-chownr-2.0.0)))
2054 (home-page "https://github.com/isaacs/node-tar#readme")
2055 (synopsis "tar for node")
2056 (description "tar for node")
2057 (license license:isc)))
2058
2059(define-public node-mapbox-node-pre-gyp-1.0.10
2060 (package
2061 (name "node-mapbox-node-pre-gyp")
2062 (version "1.0.10")
2063 (source (origin
2064 (method url-fetch)
2065 (uri
2066 "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.10.tgz")
2067 (sha256
2068 (base32
2069 "1p72rwbv37p194hd04bfg7ka3rbvj2f2qp431l32x5pfi0aygs3y"))))
2070 (build-system node-build-system)
2071 (arguments
2072 '(#:tests? #f
2073 #:phases (modify-phases %standard-phases
2074 (delete 'build)
2075 (add-after 'patch-dependencies 'delete-dev-dependencies
2076 (lambda _
2077 (delete-dependencies '("@mapbox/cloudfriend"
2078 "@mapbox/eslint-config-mapbox"
2079 "aws-sdk"
2080 "codecov"
2081 "eslint"
2082 "eslint-plugin-node"
2083 "mock-aws-s3"
2084 "nock"
2085 "node-addon-api"
2086 "nyc"
2087 "tape"
2088 "tar-fs")))))))
2089 (inputs `(("node-tar" ,node-tar-6.1.15)
2090 ("node-semver" ,node-semver-7.5.1)
2091 ("node-rimraf" ,node-rimraf-3.0.2)
2092 ("node-npmlog" ,node-npmlog-5.0.1)
2093 ("node-nopt" ,node-nopt-5.0.0)
2094 ("node-node-fetch" ,node-node-fetch-2.6.11)
2095 ("node-make-dir" ,node-make-dir-3.1.0)
2096 ("node-https-proxy-agent" ,node-https-proxy-agent-5.0.1)
2097 ("node-detect-libc" ,node-detect-libc-2.0.1)))
2098 (home-page "https://github.com/mapbox/node-pre-gyp#readme")
2099 (synopsis "Node.js native addon binary install tool")
2100 (description "Node.js native addon binary install tool")
2101 (license license:bsd-3)))
2102
2103(define-public node-node-addon-api-3.2.1
2104 (package
2105 (name "node-node-addon-api")
2106 (version "3.2.1")
2107 (source (origin
2108 (method url-fetch)
2109 (uri
2110 "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.2.1.tgz")
2111 (sha256
2112 (base32
2113 "0b8c9dx5rks26c3vv2zl4zwlg16i464mjk8aasn80jcdf5fn748v"))))
2114 (build-system node-build-system)
2115 (arguments
2116 '(#:tests? #f
2117 #:phases (modify-phases %standard-phases
2118 (delete 'build)
2119 (add-after 'patch-dependencies 'delete-dev-dependencies
2120 (lambda _
2121 (delete-dependencies '("benchmark" "bindings"
2122 "clang-format" "fs-extra"
2123 "pre-commit" "safe-buffer")))))))
2124 (home-page "https://github.com/nodejs/node-addon-api")
2125 (synopsis "Node.js API (Node-API)")
2126 (description "Node.js API (Node-API)")
2127 (license license:expat)))
2128
2129(define-public node-nodejieba-2.5.2
2130 (package
2131 (name "node-nodejieba")
2132 (version "2.5.2")
2133 (source (origin
2134 (method url-fetch)
2135 (uri
2136 "https://registry.npmjs.org/nodejieba/-/nodejieba-2.5.2.tgz")
2137 (sha256
2138 (base32
2139 "0pi41pk8y9whdyyx2j6giqkf5rn85fzjjad2yv2cfg0ah0gvxg9b"))))
2140 (build-system node-build-system)
2141 (arguments
2142 '(#:tests? #f
2143 #:phases (modify-phases %standard-phases
2144 (delete 'build)
2145 (add-after 'unpack 'unpack-prebuilt
2146 (lambda* (#:key inputs #:allow-other-keys)
2147 (let ((prebuilt (assoc-ref inputs "prebuilt")))
2148 (invoke "tar" "-xf" prebuilt)
2149 (rename-file "Release/nodejieba.node" "nodejieba.node")
2150 (substitute* "package.json"
2151 (("--fallback-to-build") "")))))
2152 (add-after 'patch-dependencies 'delete-dev-dependencies
2153 (lambda _
2154 (delete-dependencies '("coveralls" "istanbul" "mocha"
2155 "node-pre-gyp-github" "should"
2156 "typescript")))))))
2157 (inputs `(("node-node-addon-api" ,node-node-addon-api-3.2.1)
2158 ("node-mapbox-node-pre-gyp" ,node-mapbox-node-pre-gyp-1.0.10)
2159 ("prebuilt"
2160 ,(origin
2161 (method url-fetch)
2162 (uri "https://github.com/yanyiwu/nodejieba/releases/download/v2.5.2/nodejieba-v2.5.2-node-v88-linux-x64.tar.gz")
2163 (sha256
2164 (base32
2165 "0id29d3zkzsaic16d4r9vimh1533562nmyzyslv8i2rrvcm68dm2"))))))
2166 (home-page "https://github.com/yanyiwu/nodejieba#readme")
2167 (synopsis "chinese word segmentation for node")
2168 (description "chinese word segmentation for node")
2169 (license license:expat)))
2170
2171(define-public node-pinyin-2.11.2
2172 (package
2173 (name "node-pinyin")
2174 (version "2.11.2")
2175 (source (origin
2176 (method url-fetch)
2177 (uri "https://registry.npmjs.org/pinyin/-/pinyin-2.11.2.tgz")
2178 (sha256
2179 (base32
2180 "1s3a58jrlav131psi2aa31b9xb2yfj7dij22cf4l947m8kpwhc55"))))
2181 (build-system node-build-system)
2182 (arguments
2183 '(#:tests? #f
2184 #:phases (modify-phases %standard-phases
2185 (delete 'build)
2186 (add-after 'patch-dependencies 'delete-dev-dependencies
2187 (lambda _
2188 (delete-dependencies '("aurl" "aws-sdk"
2189 "benchmark"
2190 "dumi"
2191 "eslint"
2192 "expect.js"
2193 "gh-pages"
2194 "istanbul"
2195 "mocha"
2196 "mock-aws-s3"
2197 "nock"
2198 "nyc"
2199 "react-json-view"
2200 "request")))))))
2201 (inputs `(("node-nodejieba" ,node-nodejieba-2.5.2)
2202 ("node-object-assign" ,node-object-assign-4.1.1)
2203 ("node-commander" ,node-commander-1.1.1)))
2204 (home-page "http://pinyin.hotoo.me/")
2205 (synopsis "汉语拼音转换工具。")
2206 (description "汉语拼音转换工具。")
2207 (license license:expat)))
2208
2209(define-public node-orderedmap-2.1.1
2210 (package
2211 (name "node-orderedmap")
2212 (version "2.1.1")
2213 (source (origin
2214 (method url-fetch)
2215 (uri
2216 "https://registry.npmjs.org/orderedmap/-/orderedmap-2.1.1.tgz")
2217 (sha256
2218 (base32
2219 "138n5kqr3rsl6xzlzi84ara82dlb5hfpqb93yap6s5f4daz8mncs"))))
2220 (build-system node-build-system)
2221 (arguments
2222 '(#:tests? #f
2223 #:modules
2224 ((guix build node-build-system)
2225 (srfi srfi-1)
2226 (ice-9 match)
2227 (guix build utils))
2228 #:phases (modify-phases %standard-phases
2229 (delete 'build)
2230 ;; XXX: Copied from Guix.
2231 (add-before 'configure 'avoid-prepare-scripts
2232 (lambda _
2233 (with-atomic-json-file-replacement "package.json"
2234 (match-lambda
2235 (('@ . pkg-meta-alist)
2236 (cons '@ (map (match-lambda
2237 (("scripts" @ . scripts-alist)
2238 `("scripts" @ ,@(filter (match-lambda
2239 (("prepare" . _)
2240 #f)
2241 (_
2242 #t))
2243 scripts-alist)))
2244 (other other))
2245 pkg-meta-alist)))))))
2246 (add-after 'patch-dependencies 'delete-dev-dependencies
2247 (lambda _
2248 (delete-dependencies '("rollup")))))))
2249 (home-page "https://github.com/marijnh/orderedmap#readme")
2250 (synopsis "Persistent ordered mapping from strings")
2251 (description "Persistent ordered mapping from strings")
2252 (license license:expat)))
2253
2254(define-public node-prosemirror-model-1.19.2
2255 (package
2256 (name "node-prosemirror-model")
2257 (version "1.19.2")
2258 (source (origin
2259 (method url-fetch)
2260 (uri
2261 "https://registry.npmjs.org/prosemirror-model/-/prosemirror-model-1.19.2.tgz")
2262 (sha256
2263 (base32
2264 "0fv062qchz3wlav9v2k4pxzcngg5pj4jmqhfn1pnzazhl8sa4y6q"))))
2265 (build-system node-build-system)
2266 (arguments
2267 '(#:tests? #f
2268 #:modules
2269 ((guix build node-build-system)
2270 (srfi srfi-1)
2271 (ice-9 match)
2272 (guix build utils))
2273 #:phases (modify-phases %standard-phases
2274 (delete 'build)
2275 ;; XXX: Copied from Guix.
2276 (add-before 'configure 'avoid-prepare-scripts
2277 (lambda _
2278 (with-atomic-json-file-replacement "package.json"
2279 (match-lambda
2280 (('@ . pkg-meta-alist)
2281 (cons '@ (map (match-lambda
2282 (("scripts" @ . scripts-alist)
2283 `("scripts" @ ,@(filter (match-lambda
2284 (("prepare" . _)
2285 #f)
2286 (_
2287 #t))
2288 scripts-alist)))
2289 (other other))
2290 pkg-meta-alist)))))))
2291 (add-after 'patch-dependencies 'delete-dev-dependencies
2292 (lambda _
2293 (delete-dependencies '("@prosemirror/buildhelper"
2294 "jsdom"
2295 "prosemirror-test-builder")))))))
2296 (inputs `(("node-orderedmap" ,node-orderedmap-2.1.1)))
2297 (home-page "https://github.com/prosemirror/prosemirror-model#readme")
2298 (synopsis "ProseMirror's document model")
2299 (description "ProseMirror's document model")
2300 (license license:expat)))
2301
2302(define-public node-prosemirror-transform-1.7.3
2303 (package
2304 (name "node-prosemirror-transform")
2305 (version "1.7.3")
2306 (source (origin
2307 (method url-fetch)
2308 (uri
2309 "https://registry.npmjs.org/prosemirror-transform/-/prosemirror-transform-1.7.3.tgz")
2310 (sha256
2311 (base32
2312 "1b0ipxk24smla430ljjls8llbq7dbd6imm1nrlxqmqf71sqll8km"))))
2313 (build-system node-build-system)
2314 (arguments
2315 '(#:tests? #f
2316 #:modules
2317 ((guix build node-build-system)
2318 (srfi srfi-1)
2319 (ice-9 match)
2320 (guix build utils))
2321 #:phases (modify-phases %standard-phases
2322 (delete 'build)
2323 ;; XXX: Copied from Guix.
2324 (add-before 'configure 'avoid-prepare-scripts
2325 (lambda _
2326 (with-atomic-json-file-replacement "package.json"
2327 (match-lambda
2328 (('@ . pkg-meta-alist)
2329 (cons '@ (map (match-lambda
2330 (("scripts" @ . scripts-alist)
2331 `("scripts" @ ,@(filter (match-lambda
2332 (("prepare" . _)
2333 #f)
2334 (_
2335 #t))
2336 scripts-alist)))
2337 (other other))
2338 pkg-meta-alist)))))))
2339 (add-after 'patch-dependencies 'delete-dev-dependencies
2340 (lambda _
2341 (delete-dependencies '("@prosemirror/buildhelper"
2342 "prosemirror-test-builder")))))))
2343 (inputs `(("node-prosemirror-model" ,node-prosemirror-model-1.19.2)))
2344 (home-page "https://github.com/prosemirror/prosemirror-transform#readme")
2345 (synopsis "ProseMirror document transformations")
2346 (description "ProseMirror document transformations")
2347 (license license:expat)))
2348
2349(define-public node-prosemirror-changeset-2.2.1
2350 (package
2351 (name "node-prosemirror-changeset")
114 (version "2.2.1") 2352 (version "2.2.1")
115 (source 2353 (source (origin
116 (origin 2354 (method url-fetch)
117 (method url-fetch) 2355 (uri
118 (uri "https://registry.npmjs.org/app-root-path/-/app-root-path-2.2.1.tgz") 2356 "https://registry.npmjs.org/prosemirror-changeset/-/prosemirror-changeset-2.2.1.tgz")
119 (sha256 2357 (sha256
120 (base32 2358 (base32
121 "0qjv4w1qhkqwri9iscvzh2fhvc4qv25mj58anqd61nbrh5n1la54")))) 2359 "1n8fq4l91w8wz5h8gs8ygf1nvr3i1j5b3xqgws9vmic6485ivxs3"))))
122 (build-system node-build-system) 2360 (build-system node-build-system)
123 (arguments 2361 (arguments
124 `(#:tests? 2362 '(#:tests? #f
125 #f 2363 #:phases (modify-phases %standard-phases
126 #:phases 2364 (delete 'build)
127 (modify-phases 2365 (add-after 'patch-dependencies 'delete-dev-dependencies
128 %standard-phases 2366 (lambda _
129 (delete 'configure) 2367 (delete-dependencies '("@prosemirror/buildhelper"
130 (delete 'build)))) 2368 "prosemirror-model"
131 (home-page 2369 "prosemirror-test-builder")))))))
132 "https://github.com/inxilpro/node-app-root-path") 2370 (inputs `(("node-prosemirror-transform" ,node-prosemirror-transform-1.7.3)))
2371 (home-page "https://github.com/prosemirror/prosemirror-changeset#readme")
133 (synopsis 2372 (synopsis
134 "Determine an app's root path from anywhere inside the app") 2373 "Distills a series of editing steps into deleted and added ranges")
135 (description 2374 (description
136 "Determine an app's root path from anywhere inside the app") 2375 "Distills a series of editing steps into deleted and added ranges")
137 (license license:expat))) 2376 (license license:expat)))
138 2377
139(define-public node-file-system-2.2.2 2378(define-public node-prosemirror-view-1.31.4
140 (package 2379 (package
141 (name "node-file-system") 2380 (name "node-prosemirror-view")
142 (version "2.2.2") 2381 (version "1.31.4")
143 (source 2382 (source (origin
144 (origin 2383 (method url-fetch)
145 (method url-fetch) 2384 (uri
146 (uri "https://registry.npmjs.org/file-system/-/file-system-2.2.2.tgz") 2385 "https://registry.npmjs.org/prosemirror-view/-/prosemirror-view-1.31.4.tgz")
147 (sha256 2386 (sha256
148 (base32 2387 (base32
149 "08d1xdfkhx4j1gv2ipwzdxkyv0wpin0317k5vmllhdb3k3v3wdg6")))) 2388 "10idr6z8ldr2qc800ilsx0fwv2bn207hx0f0f82g43i9ixr4xmln"))))
150 (build-system node-build-system) 2389 (build-system node-build-system)
151 (arguments 2390 (arguments
152 `(#:tests? 2391 '(#:tests? #f
153 #f 2392 #:modules
154 #:phases 2393 ((guix build node-build-system)
155 (modify-phases 2394 (srfi srfi-1)
156 %standard-phases 2395 (ice-9 match)
157 (delete 'configure) 2396 (guix build utils))
158 (delete 'build)))) 2397 #:phases (modify-phases %standard-phases
159 (inputs 2398 (delete 'build)
160 `(("node-utils-extend" ,node-utils-extend-1.0.8) 2399 ;; XXX: Copied from Guix.
161 ("node-file-match" ,node-file-match-1.0.2))) 2400 (add-before 'configure 'avoid-prepare-scripts
162 (home-page 2401 (lambda _
163 "https://github.com/douzi8/file-system") 2402 (with-atomic-json-file-replacement "package.json"
2403 (match-lambda
2404 (('@ . pkg-meta-alist)
2405 (cons '@ (map (match-lambda
2406 (("scripts" @ . scripts-alist)
2407 `("scripts" @ ,@(filter (match-lambda
2408 (("prepare" . _)
2409 #f)
2410 (_
2411 #t))
2412 scripts-alist)))
2413 (other other))
2414 pkg-meta-alist)))))))
2415 (add-after 'patch-dependencies 'delete-dev-dependencies
2416 (lambda _
2417 (delete-dependencies '("@prosemirror/buildhelper"
2418 "prosemirror-test-builder")))))))
2419 (inputs `(("node-prosemirror-transform" ,node-prosemirror-transform-1.7.3)
2420 ("node-prosemirror-state" ,node-prosemirror-state-1.4.3)
2421 ("node-prosemirror-model" ,node-prosemirror-model-1.19.2)))
2422 (home-page "https://github.com/prosemirror/prosemirror-view#readme")
2423 (synopsis "ProseMirror's view component")
2424 (description "ProseMirror's view component")
2425 (license license:expat)))
2426
2427(define-public node-prosemirror-state-1.4.3
2428 (package
2429 (name "node-prosemirror-state")
2430 (version "1.4.3")
2431 (source (origin
2432 (method url-fetch)
2433 (uri
2434 "https://registry.npmjs.org/prosemirror-state/-/prosemirror-state-1.4.3.tgz")
2435 (sha256
2436 (base32
2437 "122sp7qx20sfmg1j0p7z90qi1qzgp3brk3zslqkksf9py6mf5d86"))))
2438 (build-system node-build-system)
2439 (arguments
2440 '(#:tests? #f
2441 #:modules
2442 ((guix build node-build-system)
2443 (srfi srfi-1)
2444 (ice-9 match)
2445 (guix build utils))
2446 #:phases (modify-phases %standard-phases
2447 (delete 'build)
2448 ;; XXX: Copied from Guix.
2449 (add-before 'configure 'avoid-prepare-scripts
2450 (lambda _
2451 (with-atomic-json-file-replacement "package.json"
2452 (match-lambda
2453 (('@ . pkg-meta-alist)
2454 (cons '@ (map (match-lambda
2455 (("scripts" @ . scripts-alist)
2456 `("scripts" @ ,@(filter (match-lambda
2457 (("prepare" . _)
2458 #f)
2459 (_
2460 #t))
2461 scripts-alist)))
2462 (other other))
2463 pkg-meta-alist)))))))
2464 (add-after 'patch-dependencies 'delete-dev-dependencies
2465 (lambda _
2466 (delete-dependencies '("@prosemirror/buildhelper"
2467 "prosemirror-test-builder"
2468 ;; Remove to avoid circular reference
2469 "prosemirror-view")))))))
2470 (inputs `(;("node-prosemirror-view" ,node-prosemirror-view-1.31.4)
2471 ("node-prosemirror-transform" ,node-prosemirror-transform-1.7.3)
2472 ("node-prosemirror-model" ,node-prosemirror-model-1.19.2)))
2473 (home-page "https://github.com/prosemirror/prosemirror-state#readme")
2474 (synopsis "ProseMirror editor state")
2475 (description "ProseMirror editor state")
2476 (license license:expat)))
2477
2478(define-public node-prosemirror-commands-1.5.2
2479 (package
2480 (name "node-prosemirror-commands")
2481 (version "1.5.2")
2482 (source (origin
2483 (method url-fetch)
2484 (uri
2485 "https://registry.npmjs.org/prosemirror-commands/-/prosemirror-commands-1.5.2.tgz")
2486 (sha256
2487 (base32
2488 "0nh7mps3vmzrfzsrrzxp744p44wdkc2yb8596cgvvnmfz375cixk"))))
2489 (build-system node-build-system)
2490 (arguments
2491 '(#:tests? #f
2492 #:phases (modify-phases %standard-phases
2493 (delete 'build)
2494 (add-after 'patch-dependencies 'delete-dev-dependencies
2495 (lambda _
2496 (delete-dependencies '("@prosemirror/buildhelper"
2497 "prosemirror-test-builder")))))))
2498 (inputs `(("node-prosemirror-state" ,node-prosemirror-state-1.4.3)
2499 ("node-prosemirror-transform" ,node-prosemirror-transform-1.7.3)
2500 ("node-prosemirror-model" ,node-prosemirror-model-1.19.2)))
2501 (home-page "https://github.com/prosemirror/prosemirror-commands#readme")
2502 (synopsis "Editing commands for ProseMirror")
2503 (description "Editing commands for ProseMirror")
2504 (license license:expat)))
2505
2506(define-public node-es6-object-assign-1.1.0
2507 (package
2508 (name "node-es6-object-assign")
2509 (version "1.1.0")
2510 (source (origin
2511 (method url-fetch)
2512 (uri
2513 "https://registry.npmjs.org/es6-object-assign/-/es6-object-assign-1.1.0.tgz")
2514 (sha256
2515 (base32
2516 "0qqnv6adfh52zd49jay2kiav4pjwn8v9b8g6khhpybp6sxq6m4kv"))))
2517 (build-system node-build-system)
2518 (arguments
2519 '(#:tests? #f
2520 #:phases (modify-phases %standard-phases
2521 (delete 'build)
2522 (add-after 'patch-dependencies 'delete-dev-dependencies
2523 (lambda _
2524 (delete-dependencies '("browserify" "uglify-js")))))))
2525 (home-page "https://github.com/rubennorte/es6-object-assign")
2526 (synopsis "ECMAScript 2015 (ES6) Object.assign polyfill and ponyfill")
2527 (description "ECMAScript 2015 (ES6) Object.assign polyfill and ponyfill")
2528 (license license:expat)))
2529
2530(define-public node-core-util-is-1.0.3
2531 (package
2532 (name "node-core-util-is")
2533 (version "1.0.3")
2534 (source (origin
2535 (method url-fetch)
2536 (uri
2537 "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz")
2538 (sha256
2539 (base32
2540 "032dwykfbxff1q7s0kgqdkwwzmm25mlrlfqijzibbwrc3z3zsc24"))))
2541 (build-system node-build-system)
2542 (arguments
2543 '(#:tests? #f
2544 #:phases (modify-phases %standard-phases
2545 (delete 'build)
2546 (add-after 'patch-dependencies 'delete-dev-dependencies
2547 (lambda _
2548 (delete-dependencies '("tap")))))))
2549 (home-page "https://github.com/isaacs/core-util-is#readme")
2550 (synopsis "The `util.is*` functions introduced in Node v0.12.")
2551 (description "The `util.is*` functions introduced in Node v0.12.")
2552 (license license:expat)))
2553
2554(define-public node-isarray-1.0.0
2555 (package
2556 (name "node-isarray")
2557 (version "1.0.0")
2558 (source (origin
2559 (method url-fetch)
2560 (uri "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz")
2561 (sha256
2562 (base32
2563 "11qcjpdzigcwcprhv7nyarlzjcwf3sv5i66q75zf08jj9zqpcg72"))))
2564 (build-system node-build-system)
2565 (arguments
2566 '(#:tests? #f
2567 #:phases (modify-phases %standard-phases
2568 (delete 'build)
2569 (add-after 'patch-dependencies 'delete-dev-dependencies
2570 (lambda _
2571 (delete-dependencies '("tape")))))))
2572 (home-page "https://github.com/juliangruber/isarray")
2573 (synopsis "Array#isArray for older browsers")
2574 (description "Array#isArray for older browsers")
2575 (license license:expat)))
2576
2577(define-public node-process-nextick-args-2.0.1
2578 (package
2579 (name "node-process-nextick-args")
2580 (version "2.0.1")
2581 (source (origin
2582 (method url-fetch)
2583 (uri
2584 "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz")
2585 (sha256
2586 (base32
2587 "16w8m2ycy5s4ykgdfg97qxa67gfvkh6x3vdwfsncafyj4p3zhns2"))))
2588 (build-system node-build-system)
2589 (arguments
2590 '(#:tests? #f
2591 #:phases (modify-phases %standard-phases
2592 (delete 'build)
2593 (add-after 'patch-dependencies 'delete-dev-dependencies
2594 (lambda _
2595 (delete-dependencies '("tap")))))))
2596 (home-page "https://github.com/calvinmetcalf/process-nextick-args")
2597 (synopsis "process.nextTick but always with args")
2598 (description "process.nextTick but always with args")
2599 (license license:expat)))
2600
2601(define-public node-safe-buffer-5.1.2
2602 (package
2603 (name "node-safe-buffer")
2604 (version "5.1.2")
2605 (source (origin
2606 (method url-fetch)
2607 (uri
2608 "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz")
2609 (sha256
2610 (base32
2611 "08ma0a2a9j537bxl7qd2dn6sjcdhrclpdbslr19bkbyc1z30d4p0"))))
2612 (build-system node-build-system)
2613 (arguments
2614 '(#:tests? #f
2615 #:phases (modify-phases %standard-phases
2616 (delete 'build)
2617 (add-after 'patch-dependencies 'delete-dev-dependencies
2618 (lambda _
2619 (delete-dependencies '("standard" "tape")))))))
2620 (home-page "https://github.com/feross/safe-buffer")
2621 (synopsis "Safer Node.js Buffer API")
2622 (description "Safer Node.js Buffer API")
2623 (license license:expat)))
2624
2625(define-public node-string-decoder-1.1.1
2626 (package
2627 (name "node-string-decoder")
2628 (version "1.1.1")
2629 (source (origin
2630 (method url-fetch)
2631 (uri
2632 "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz")
2633 (sha256
2634 (base32
2635 "0fln2r91b8gj845j7jl76fvsp7nij13fyzvz82985yh88m1n50mg"))))
2636 (build-system node-build-system)
2637 (arguments
2638 '(#:tests? #f
2639 #:phases (modify-phases %standard-phases
2640 (delete 'build)
2641 (add-after 'patch-dependencies 'delete-dev-dependencies
2642 (lambda _
2643 (delete-dependencies '("babel-polyfill" "core-util-is"
2644 "inherits" "tap")))))))
2645 (inputs `(("node-safe-buffer" ,node-safe-buffer-5.1.2)))
2646 (home-page "https://github.com/nodejs/string_decoder")
2647 (synopsis "The string_decoder module from Node core")
2648 (description "The string_decoder module from Node core")
2649 (license license:expat)))
2650
2651(define-public node-readable-stream-2.3.8
2652 (package
2653 (name "node-readable-stream")
2654 (version "2.3.8")
2655 (source (origin
2656 (method url-fetch)
2657 (uri
2658 "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz")
2659 (sha256
2660 (base32
2661 "0cm5g4a5mfqb5im98mzv5y3dpv377bws6wlgpv5wk2pn90wn2j0n"))))
2662 (build-system node-build-system)
2663 (arguments
2664 '(#:tests? #f
2665 #:phases (modify-phases %standard-phases
2666 (delete 'build)
2667 (add-after 'patch-dependencies 'delete-dev-dependencies
2668 (lambda _
2669 (delete-dependencies '("assert" "babel-polyfill"
2670 "buffer"
2671 "lolex"
2672 "nyc"
2673 "tap"
2674 "tape")))))))
2675 (inputs `(("node-util-deprecate" ,node-util-deprecate-1.0.2)
2676 ("node-string-decoder" ,node-string-decoder-1.1.1)
2677 ("node-safe-buffer" ,node-safe-buffer-5.1.2)
2678 ("node-process-nextick-args" ,node-process-nextick-args-2.0.1)
2679 ("node-isarray" ,node-isarray-1.0.0)
2680 ("node-inherits" ,node-inherits-2.0.4)
2681 ("node-core-util-is" ,node-core-util-is-1.0.3)))
2682 (home-page "https://github.com/nodejs/readable-stream#readme")
2683 (synopsis "Streams3, a user-land copy of the stream library from Node.js")
2684 (description
2685 "Streams3, a user-land copy of the stream library from Node.js")
2686 (license license:expat)))
2687
2688(define-public node-concat-stream-1.6.2
2689 (package
2690 (name "node-concat-stream")
2691 (version "1.6.2")
2692 (source (origin
2693 (method url-fetch)
2694 (uri
2695 "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz")
2696 (sha256
2697 (base32
2698 "1wa3gka91z4mdwi9yz2lri8lb2b1vhimkr6zckcjdj4bjxcw2iya"))))
2699 (build-system node-build-system)
2700 (arguments
2701 '(#:tests? #f
2702 #:phases (modify-phases %standard-phases
2703 (delete 'build)
2704 (add-after 'patch-dependencies 'delete-dev-dependencies
2705 (lambda _
2706 (delete-dependencies '("tape")))))))
2707 (inputs `(("node-typedarray" ,node-typedarray-0.0.6)
2708 ("node-readable-stream" ,node-readable-stream-2.3.8)
2709 ("node-inherits" ,node-inherits-2.0.4)
2710 ("node-buffer-from" ,node-buffer-from-1.1.2)))
2711 (home-page "https://github.com/maxogden/concat-stream#readme")
2712 (synopsis
2713 "writable stream that concatenates strings or binary data and calls a callback with the result")
2714 (description
2715 "writable stream that concatenates strings or binary data and calls a callback with the result")
2716 (license license:expat)))
2717
2718(define-public node-html-1.0.0
2719 (package
2720 (name "node-html")
2721 (version "1.0.0")
2722 (source (origin
2723 (method url-fetch)
2724 (uri "https://registry.npmjs.org/html/-/html-1.0.0.tgz")
2725 (sha256
2726 (base32
2727 "1h0zw5lz45aaz17aq27la0pg0lkc6b8l0hvngcgq6vkm67vkij7l"))))
2728 (build-system node-build-system)
2729 (arguments
2730 '(#:tests? #f
2731 #:phases (modify-phases %standard-phases
2732 (delete 'build))))
2733 (inputs `(("node-concat-stream" ,node-concat-stream-1.6.2)))
2734 (home-page "https://github.com/maxogden/commonjs-html-prettyprinter")
2735 (synopsis "HTML pretty printer CLI utility (based on jsbeautifier)")
2736 (description "HTML pretty printer CLI utility (based on jsbeautifier)")
2737 (license #f)))
2738
2739(define-public node-ie-array-find-polyfill-1.1.0
2740 (package
2741 (name "node-ie-array-find-polyfill")
2742 (version "1.1.0")
2743 (source (origin
2744 (method url-fetch)
2745 (uri
2746 "https://registry.npmjs.org/ie-array-find-polyfill/-/ie-array-find-polyfill-1.1.0.tgz")
2747 (sha256
2748 (base32
2749 "0a6hnxnv5s45fkl1y50lz84c2vm54wp4sdj5nxgsynh6jl72hyrk"))))
2750 (build-system node-build-system)
2751 (arguments
2752 '(#:tests? #f
2753 #:phases (modify-phases %standard-phases
2754 (delete 'build))))
2755 (home-page "https://github.com/abdalla/ie-array-find-polyfill#readme")
2756 (synopsis "Polyfill to provide array.find on IE.")
2757 (description "Polyfill to provide array.find on IE.")
2758 (license license:expat)))
2759
2760(define-public node-jsondiffpatch-0.3.11
2761 (package
2762 (name "node-jsondiffpatch")
2763 (version "0.3.11")
2764 (source (origin
2765 (method url-fetch)
2766 (uri
2767 "https://registry.npmjs.org/jsondiffpatch/-/jsondiffpatch-0.3.11.tgz")
2768 (sha256
2769 (base32
2770 "0zv6a35v83zh2fkw634vsj256xr1qxxk0mh1dy2wq3cq2wm6031p"))))
2771 (build-system node-build-system)
2772 (arguments
2773 '(#:tests? #f
2774 #:phases (modify-phases %standard-phases
2775 (delete 'build)
2776 (add-after 'patch-dependencies 'delete-dev-dependencies
2777 (lambda _
2778 (delete-dependencies '("@istanbuljs/nyc-config-babel"
2779 "babel-core"
2780 "babel-eslint"
2781 "babel-plugin-external-helpers"
2782 "babel-plugin-istanbul"
2783 "babel-plugin-transform-object-rest-spread"
2784 "babel-polyfill"
2785 "babel-preset-env"
2786 "babel-preset-stage-0"
2787 "babel-preset-stage-1"
2788 "babel-preset-stage-2"
2789 "chai"
2790 "codeclimate-test-reporter"
2791 "eslint"
2792 "eslint-config-standard"
2793 "eslint-plugin-import"
2794 "eslint-plugin-node"
2795 "eslint-plugin-promise"
2796 "eslint-plugin-standard"
2797 "istanbul"
2798 "mkdirp"
2799 "mocha"
2800 "nodemon"
2801 "nyc"
2802 "prettier"
2803 "rollup"
2804 "rollup-plugin-babel"
2805 "rollup-plugin-commonjs"
2806 "rollup-plugin-istanbul"
2807 "rollup-plugin-node-resolve"
2808 "rollup-plugin-replace"
2809 "rollup-plugin-visualizer")))))))
2810 (inputs `(("node-diff-match-patch" ,node-diff-match-patch-1.0.5)
2811 ("node-chalk" ,node-chalk-2.4.2)))
2812 (home-page "https://github.com/benjamine/jsondiffpatch")
2813 (synopsis "Diff & Patch for Javascript objects")
2814 (description "Diff & Patch for Javascript objects")
2815 (license license:expat)))
2816
2817(define-public node-lodash--getnative-3.9.1
2818 (package
2819 (name "node-lodash--getnative")
2820 (version "3.9.1")
2821 (source (origin
2822 (method url-fetch)
2823 (uri
2824 "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz")
2825 (sha256
2826 (base32
2827 "0q3rny7pjcaxp74p7y95nhq4w1gxz72d32nrcjddlb2h7w8l1wzp"))))
2828 (build-system node-build-system)
2829 (arguments
2830 '(#:tests? #f
2831 #:phases (modify-phases %standard-phases
2832 (delete 'build))))
2833 (home-page "https://lodash.com/")
2834 (synopsis
2835 "The modern build of lodash’s internal `getNative` as a module.")
2836 (description
2837 "The modern build of lodash’s internal `getNative` as a module.")
2838 (license license:expat)))
2839
2840(define-public node-lodash-debounce-3.1.1
2841 (package
2842 (name "node-lodash-debounce")
2843 (version "3.1.1")
2844 (source (origin
2845 (method url-fetch)
2846 (uri
2847 "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-3.1.1.tgz")
2848 (sha256
2849 (base32
2850 "0rd56z9jzp7yack2g7jb0kcsfdfd27c8da5ghkbbyfs2f3xdl9ki"))))
2851 (build-system node-build-system)
2852 (arguments
2853 '(#:tests? #f
2854 #:phases (modify-phases %standard-phases
2855 (delete 'build))))
2856 (inputs `(("node-lodash--getnative" ,node-lodash--getnative-3.9.1)))
2857 (home-page "https://lodash.com/")
2858 (synopsis "The modern build of lodash’s `_.debounce` as a module.")
2859 (description "The modern build of lodash’s `_.debounce` as a module.")
2860 (license license:expat)))
2861
2862(define-public node-react-dock-0.2.4
2863 (package
2864 (name "node-react-dock")
2865 (version "0.2.4")
2866 (source (origin
2867 (method url-fetch)
2868 (uri
2869 "https://registry.npmjs.org/react-dock/-/react-dock-0.2.4.tgz")
2870 (sha256
2871 (base32
2872 "0s8q2j9iy046700rsy2xa7z58pz9v2a6baxr1jwjfrfizq5ba3w6"))))
2873 (build-system node-build-system)
2874 (arguments
2875 '(#:tests? #f
2876 #:phases (modify-phases %standard-phases
2877 (delete 'build)
2878 (add-after 'patch-dependencies 'delete-dev-dependencies
2879 (lambda _
2880 (delete-dependencies '("babel" "babel-cli"
2881 "babel-core"
2882 "babel-eslint"
2883 "babel-loader"
2884 "babel-plugin-transform-decorators-legacy"
2885 "babel-plugin-transform-runtime"
2886 "babel-preset-es2015"
2887 "babel-preset-react"
2888 "babel-preset-stage-0"
2889 "chai"
2890 "eslint"
2891 "eslint-loader"
2892 "eslint-plugin-babel"
2893 "eslint-plugin-react"
2894 "imports-loader"
2895 "json-loader"
2896 "mocha"
2897 "radium"
2898 "raw-loader"
2899 "react-bootstrap"
2900 "react-dom"
2901 "react-hot-loader"
2902 "react-pure-render"
2903 "webpack"
2904 "webpack-dev-server"
2905 "babel-runtime"
2906 "react")))))))
2907 (inputs `(("node-prop-types" ,node-prop-types-15.8.1)
2908 ("node-lodash-debounce" ,node-lodash-debounce-3.1.1)
2909 ("node-babel-runtime" ,node-babel-runtime-6.26.0)
2910 ("node-react" ,node-react-18.2.0)))
2911 (home-page "https://github.com/alexkuz/react-dock")
2912 (synopsis "Resizable dockable react component")
2913 (description "Resizable dockable react component")
2914 (license license:expat)))
2915
2916(define-public node-csstype-2.6.21
2917 (package
2918 (name "node-csstype")
2919 (version "2.6.21")
2920 (source (origin
2921 (method url-fetch)
2922 (uri "https://registry.npmjs.org/csstype/-/csstype-2.6.21.tgz")
2923 (sha256
2924 (base32
2925 "1g5mlmsymw369yp44aidkczzljlsky3k6vl2j0c81zvyyyqbfgdg"))))
2926 (build-system node-build-system)
2927 (arguments
2928 '(#:tests? #f
2929 #:phases (modify-phases %standard-phases
2930 (delete 'build)
2931 (add-after 'patch-dependencies 'delete-dev-dependencies
2932 (lambda _
2933 (delete-dependencies '("@types/chokidar" "@types/jest"
2934 "@types/jsdom"
2935 "@types/node"
2936 "@types/prettier"
2937 "chalk"
2938 "chokidar"
2939 "fast-glob"
2940 "flow-bin"
2941 "jest"
2942 "jsdom"
2943 "mdn-browser-compat-data"
2944 "mdn-data"
2945 "prettier"
2946 "sync-request"
2947 "ts-node"
2948 "tslint"
2949 "tslint-config-prettier"
2950 "turndown"
2951 "typescript")))))))
2952 (home-page "https://github.com/frenic/csstype#readme")
2953 (synopsis "Strict TypeScript and Flow types for style based on MDN data")
2954 (description
2955 "Strict TypeScript and Flow types for style based on MDN data")
2956 (license license:expat)))
2957
2958(define-public node-stylis-3.5.4
2959 (package
2960 (name "node-stylis")
2961 (version "3.5.4")
2962 (source (origin
2963 (method url-fetch)
2964 (uri "https://registry.npmjs.org/stylis/-/stylis-3.5.4.tgz")
2965 (sha256
2966 (base32
2967 "0l79wch35jcrkrd2069qgmnrhrly06asrps540lda2zmgqkqwdwf"))))
2968 (build-system node-build-system)
2969 (arguments
2970 '(#:tests? #f
2971 #:phases (modify-phases %standard-phases
2972 (delete 'build)
2973 (add-after 'patch-dependencies 'delete-dev-dependencies
2974 (lambda _
2975 (delete-dependencies '("uglify-js")))))))
2976 (home-page "https://github.com/thysultan/stylis.js")
2977 (synopsis "light - weight css preprocessor")
2978 (description "light - weight css preprocessor")
2979 (license license:expat)))
2980
2981(define-public node-stylis-rule-sheet-0.0.10
2982 (package
2983 (name "node-stylis-rule-sheet")
2984 (version "0.0.10")
2985 (source (origin
2986 (method url-fetch)
2987 (uri
2988 "https://registry.npmjs.org/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz")
2989 (sha256
2990 (base32
2991 "09ipsi2bzzh7xl9pg2j7gh1dqbly93yf65ifix9adr918kw6f3dx"))))
2992 (build-system node-build-system)
2993 (arguments
2994 '(#:tests? #f
2995 #:phases (modify-phases %standard-phases
2996 (delete 'build)
2997 (add-after 'patch-dependencies 'delete-dev-dependencies
2998 (lambda _
2999 (delete-dependencies '("stylis")))))))
3000 (home-page "https://github.com/thysultan/stylis.js")
3001 (synopsis
3002 "stylis plugin to extract individual rules to use with insertRule API")
3003 (description
3004 "stylis plugin to extract individual rules to use with insertRule API")
3005 (license license:expat)))
3006
3007(define-public node-create-emotion-9.2.12
3008 (package
3009 (name "node-create-emotion")
3010 (version "9.2.12")
3011 (source (origin
3012 (method url-fetch)
3013 (uri
3014 "https://registry.npmjs.org/create-emotion/-/create-emotion-9.2.12.tgz")
3015 (sha256
3016 (base32
3017 "0a4bsws1wv8kisjcbvv1j6zg0r0sgrb92r7gjs7h9h7yk46fdf2w"))))
3018 (build-system node-build-system)
3019 (arguments
3020 '(#:tests? #f
3021 #:phases (modify-phases %standard-phases
3022 (delete 'build)
3023 (add-after 'patch-dependencies 'delete-dev-dependencies
3024 (lambda _
3025 (delete-dependencies '("@types/react"
3026 "babel-plugin-transform-define"
3027 "dtslint")))))))
3028 (inputs `(("node-stylis-rule-sheet" ,node-stylis-rule-sheet-0.0.10)
3029 ("node-stylis" ,node-stylis-3.5.4)
3030 ("node-csstype" ,node-csstype-2.6.21)
3031 ("node-emotion-unitless" ,node-emotion-unitless-0.6.7)
3032 ("node-emotion-stylis" ,node-emotion-stylis-0.7.1)
3033 ("node-emotion-memoize" ,node-emotion-memoize-0.6.6)
3034 ("node-emotion-hash" ,node-emotion-hash-0.6.6)))
3035 (home-page "https://emotion.sh")
3036 (synopsis "The Next Generation of CSS-in-JS.")
3037 (description "The Next Generation of CSS-in-JS.")
3038 (license license:expat)))
3039
3040(define-public node-emotion-9.2.12
3041 (package
3042 (name "node-emotion")
3043 (version "9.2.12")
3044 (source (origin
3045 (method url-fetch)
3046 (uri "https://registry.npmjs.org/emotion/-/emotion-9.2.12.tgz")
3047 (sha256
3048 (base32
3049 "0ps3zzpnaid2mg1bwcw9dpr2vxamnmgrgal1ia3jl2g841h6adf5"))))
3050 (build-system node-build-system)
3051 (arguments
3052 '(#:tests? #f
3053 #:phases (modify-phases %standard-phases
3054 (delete 'build)
3055 (add-after 'patch-dependencies 'delete-dev-dependencies
3056 (lambda _
3057 (delete-dependencies '("@types/react"
3058 "babel-plugin-transform-define"
3059 "dtslint")))))))
3060 (inputs `(("node-create-emotion" ,node-create-emotion-9.2.12)
3061 ("node-babel-plugin-emotion" ,node-babel-plugin-emotion-9.2.11)))
3062 (home-page "https://emotion.sh")
3063 (synopsis "The Next Generation of CSS-in-JS.")
3064 (description "The Next Generation of CSS-in-JS.")
3065 (license license:expat)))
3066
3067(define-public node-babel-helper-string-parser-7.22.5
3068 (package
3069 (name "node-babel-helper-string-parser")
3070 (version "7.22.5")
3071 (source (origin
3072 (method url-fetch)
3073 (uri
3074 "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz")
3075 (sha256
3076 (base32
3077 "18ynmnd6m6nsrbkcvvzl6gf5xid4m8xv17n906iajxjzpazy8fb8"))))
3078 (build-system node-build-system)
3079 (arguments
3080 '(#:tests? #f
3081 #:phases (modify-phases %standard-phases
3082 (delete 'build)
3083 (add-after 'patch-dependencies 'delete-dev-dependencies
3084 (lambda _
3085 (delete-dependencies '("charcodes")))))))
3086 (home-page "https://babel.dev/docs/en/next/babel-helper-string-parser")
3087 (synopsis "A utility package to parse strings")
3088 (description "A utility package to parse strings")
3089 (license license:expat)))
3090
3091(define-public node-to-fast-properties-2.0.0
3092 (package
3093 (name "node-to-fast-properties")
3094 (version "2.0.0")
3095 (source (origin
3096 (method url-fetch)
3097 (uri
3098 "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz")
3099 (sha256
3100 (base32
3101 "10q99rgk8nfl8k7q0aqmik4wkbm8zp4z0rpwbm8b0gr4pi4gw4y7"))))
3102 (build-system node-build-system)
3103 (arguments
3104 '(#:tests? #f
3105 #:phases (modify-phases %standard-phases
3106 (delete 'build)
3107 (add-after 'patch-dependencies 'delete-dev-dependencies
3108 (lambda _
3109 (delete-dependencies '("ava")))))))
3110 (home-page "https://github.com/sindresorhus/to-fast-properties#readme")
3111 (synopsis "Force V8 to use fast properties for an object")
3112 (description "Force V8 to use fast properties for an object")
3113 (license license:expat)))
3114
3115(define-public node-babel-types-7.22.5
3116 (package
3117 (name "node-babel-types")
3118 (version "7.22.5")
3119 (source (origin
3120 (method url-fetch)
3121 (uri
3122 "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz")
3123 (sha256
3124 (base32
3125 "14irmg5qq107fw63n27qr11kawh8sycpk0jln4rrrgbbycgqj5wa"))))
3126 (build-system node-build-system)
3127 (arguments
3128 '(#:tests? #f
3129 #:phases (modify-phases %standard-phases
3130 (delete 'build)
3131 (add-after 'patch-dependencies 'delete-dev-dependencies
3132 (lambda _
3133 (delete-dependencies '("@babel/generator"
3134 "@babel/parser" "chalk" "glob")))))))
3135 (inputs `(("node-to-fast-properties" ,node-to-fast-properties-2.0.0)
3136 ("node-babel-helper-validator-identifier" ,node-babel-helper-validator-identifier-7.22.5)
3137 ("node-babel-helper-string-parser" ,node-babel-helper-string-parser-7.22.5)))
3138 (home-page "https://babel.dev/docs/en/next/babel-types")
3139 (synopsis "Babel Types is a Lodash-esque utility library for AST nodes")
3140 (description "Babel Types is a Lodash-esque utility library for AST nodes")
3141 (license license:expat)))
3142
3143(define-public node-babel-helper-module-imports-7.22.5
3144 (package
3145 (name "node-babel-helper-module-imports")
3146 (version "7.22.5")
3147 (source (origin
3148 (method url-fetch)
3149 (uri
3150 "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz")
3151 (sha256
3152 (base32
3153 "053s7572rif04kxf2vfs76bwzv3xl0fp69zbjn31f2bpr2hsxir5"))))
3154 (build-system node-build-system)
3155 (arguments
3156 '(#:tests? #f
3157 #:phases (modify-phases %standard-phases
3158 (delete 'build)
3159 (add-after 'patch-dependencies 'delete-dev-dependencies
3160 (lambda _
3161 (delete-dependencies '("@babel/core" "@babel/traverse")))))))
3162 (inputs `(("node-babel-types" ,node-babel-types-7.22.5)))
3163 (home-page "https://babel.dev/docs/en/next/babel-helper-module-imports")
3164 (synopsis "Babel helper functions for inserting module loads")
3165 (description "Babel helper functions for inserting module loads")
3166 (license license:expat)))
3167
3168(define-public node-emotion-unitless-0.6.7
3169 (package
3170 (name "node-emotion-unitless")
3171 (version "0.6.7")
3172 (source (origin
3173 (method url-fetch)
3174 (uri
3175 "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.6.7.tgz")
3176 (sha256
3177 (base32
3178 "07jprfn958gmsnphyblvn81lmk3g9r0jqp612km87n0397kb56lw"))))
3179 (build-system node-build-system)
3180 (arguments
3181 '(#:tests? #f
3182 #:phases (modify-phases %standard-phases
3183 (delete 'build))))
3184 (home-page "https://www.npmjs.com/package/node-emotion-unitless")
3185 (synopsis
3186 "An object of css properties that don't accept values with units")
3187 (description
3188 "An object of css properties that don't accept values with units")
3189 (license license:expat)))
3190
3191(define-public node-emotion-utils-0.8.2
3192 (package
3193 (name "node-emotion-utils")
3194 (version "0.8.2")
3195 (source (origin
3196 (method url-fetch)
3197 (uri
3198 "https://registry.npmjs.org/@emotion/utils/-/utils-0.8.2.tgz")
3199 (sha256
3200 (base32
3201 "1bpc42kvbmpyc68p519ck9bwddd3a6962wrj67awayqwrifg7pgh"))))
3202 (build-system node-build-system)
3203 (arguments
3204 '(#:tests? #f
3205 #:phases (modify-phases %standard-phases
3206 (delete 'build)
3207 (add-after 'patch-dependencies 'delete-dev-dependencies
3208 (lambda _
3209 (delete-dependencies '("dtslint")))))))
3210 (home-page "https://www.npmjs.com/package/node-emotion-utils")
3211 (synopsis "internal utils for emotion")
3212 (description "internal utils for emotion")
3213 (license license:expat)))
3214
3215(define-public node-emotion-serialize-0.9.1
3216 (package
3217 (name "node-emotion-serialize")
3218 (version "0.9.1")
3219 (source (origin
3220 (method url-fetch)
3221 (uri
3222 "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.9.1.tgz")
3223 (sha256
3224 (base32
3225 "1x60cb0nkfh93db0k0ci26466nnij0hvsx9zff8s1p6jkm2pzdls"))))
3226 (build-system node-build-system)
3227 (arguments
3228 '(#:tests? #f
3229 #:phases (modify-phases %standard-phases
3230 (delete 'build))))
3231 (inputs `(("node-emotion-utils" ,node-emotion-utils-0.8.2)
3232 ("node-emotion-unitless" ,node-emotion-unitless-0.6.7)
3233 ("node-emotion-memoize" ,node-emotion-memoize-0.6.6)
3234 ("node-emotion-hash" ,node-emotion-hash-0.6.6)))
3235 (home-page "https://www.npmjs.com/package/node-emotion-serialize")
3236 (synopsis "serialization utils for emotion")
3237 (description "serialization utils for emotion")
3238 (license license:expat)))
3239
3240(define-public node-source-map-0.7.4
3241 (package
3242 (name "node-source-map")
3243 (version "0.7.4")
3244 (source (origin
3245 (method url-fetch)
3246 (uri
3247 "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz")
3248 (sha256
3249 (base32
3250 "0gbxjirhdjafc3w5w133b2rrybvq6hfr59j7bbg0mvv3i7iagpk5"))))
3251 (build-system node-build-system)
3252 (arguments
3253 '(#:tests? #f
3254 #:phases (modify-phases %standard-phases
3255 (delete 'build)
3256 (add-after 'patch-dependencies 'delete-dev-dependencies
3257 (lambda _
3258 (delete-dependencies '("doctoc" "eslint"
3259 "live-server"
3260 "npm-run-all"
3261 "nyc"
3262 "watch"
3263 "webpack"
3264 "webpack-cli")))))))
3265 (home-page "https://github.com/mozilla/source-map")
3266 (synopsis "Generates and consumes source maps")
3267 (description "Generates and consumes source maps")
3268 (license license:bsd-3)))
3269
3270(define-public node-emotion-babel-utils-0.6.10
3271 (package
3272 (name "node-emotion-babel-utils")
3273 (version "0.6.10")
3274 (source (origin
3275 (method url-fetch)
3276 (uri
3277 "https://registry.npmjs.org/@emotion/babel-utils/-/babel-utils-0.6.10.tgz")
3278 (sha256
3279 (base32
3280 "02s0nks0krdzxwbn8x1k7isl4vbi9y9pyps6kkisskz3pcxry6wf"))))
3281 (build-system node-build-system)
3282 (arguments
3283 '(#:tests? #f
3284 #:phases (modify-phases %standard-phases
3285 (delete 'build))))
3286 (inputs `(("node-source-map" ,node-source-map-0.7.4)
3287 ("node-find-root" ,node-find-root-1.1.0)
3288 ("node-convert-source-map" ,node-convert-source-map-1.9.0)
3289 ("node-emotion-serialize" ,node-emotion-serialize-0.9.1)
3290 ("node-emotion-memoize" ,node-emotion-memoize-0.6.6)
3291 ("node-emotion-hash" ,node-emotion-hash-0.6.6)))
3292 (home-page "https://www.npmjs.com/package/node-emotion-babel-utils")
3293 (synopsis "Internal Babel utils used in various macros")
3294 (description "Internal Babel utils used in various macros")
3295 (license license:expat)))
3296
3297(define-public node-emotion-hash-0.6.6
3298 (package
3299 (name "node-emotion-hash")
3300 (version "0.6.6")
3301 (source (origin
3302 (method url-fetch)
3303 (uri "https://registry.npmjs.org/@emotion/hash/-/hash-0.6.6.tgz")
3304 (sha256
3305 (base32
3306 "1cbb9m6j76xa4nvnk5kg12q18vad9r3kxgl1b4skr9zbsj6f6h5x"))))
3307 (build-system node-build-system)
3308 (arguments
3309 '(#:tests? #f
3310 #:phases (modify-phases %standard-phases
3311 (delete 'build))))
3312 (home-page "https://www.npmjs.com/package/node-emotion-hash")
3313 (synopsis "A MurmurHash2 implementation")
3314 (description "A MurmurHash2 implementation")
3315 (license license:expat)))
3316
3317(define-public node-emotion-stylis-0.7.1
3318 (package
3319 (name "node-emotion-stylis")
3320 (version "0.7.1")
3321 (source (origin
3322 (method url-fetch)
3323 (uri
3324 "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.7.1.tgz")
3325 (sha256
3326 (base32
3327 "1g038f0pbq4l6hrddicnxxff4z79khwwfn88bxpzgn0mz96frckn"))))
3328 (build-system node-build-system)
3329 (arguments
3330 '(#:tests? #f
3331 #:phases (modify-phases %standard-phases
3332 (delete 'build)
3333 (add-after 'patch-dependencies 'delete-dev-dependencies
3334 (lambda _
3335 (delete-dependencies '("dtslint" "jscodeshift" "request"
3336 "request-promise-native" "stylis")))))))
3337 (home-page "https://www.npmjs.com/package/node-emotion-stylis")
3338 (synopsis "A custom build of Stylis")
3339 (description "A custom build of Stylis")
3340 (license license:expat)))
3341
3342(define-public node-types-parse-json-4.0.0
3343 (package
3344 (name "node-types-parse-json")
3345 (version "4.0.0")
3346 (source (origin
3347 (method url-fetch)
3348 (uri
3349 "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz")
3350 (sha256
3351 (base32
3352 "0cbn421abbsbvwp0zm5ykdhnqwdimn02lfbznjg3s6cw8035k7yf"))))
3353 (build-system node-build-system)
3354 (arguments
3355 '(#:tests? #f
3356 #:phases (modify-phases %standard-phases
3357 (delete 'build))))
3358 (home-page "https://www.npmjs.com/package/node-types-parse-json")
3359 (synopsis "TypeScript definitions for parse-json")
3360 (description "TypeScript definitions for parse-json")
3361 (license license:expat)))
3362
3363(define-public node-callsites-3.1.0
3364 (package
3365 (name "node-callsites")
3366 (version "3.1.0")
3367 (source (origin
3368 (method url-fetch)
3369 (uri
3370 "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz")
3371 (sha256
3372 (base32
3373 "17f8wf2bxv2s4k36ld1x4y2rbkh9a8vsmbhwab470vmz6ayl40hp"))))
3374 (build-system node-build-system)
3375 (arguments
3376 '(#:tests? #f
3377 #:phases (modify-phases %standard-phases
3378 (delete 'build)
3379 (add-after 'patch-dependencies 'delete-dev-dependencies
3380 (lambda _
3381 (delete-dependencies '("ava" "tsd" "xo")))))))
3382 (home-page "https://github.com/sindresorhus/callsites#readme")
3383 (synopsis "Get callsites from the V8 stack trace API")
3384 (description "Get callsites from the V8 stack trace API")
3385 (license license:expat)))
3386
3387(define-public node-parent-module-1.0.1
3388 (package
3389 (name "node-parent-module")
3390 (version "1.0.1")
3391 (source (origin
3392 (method url-fetch)
3393 (uri
3394 "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz")
3395 (sha256
3396 (base32
3397 "01z4k8a3y21gqmpcwyf7gq9v8v4k2y5180f5g7qgswd4gq986zk0"))))
3398 (build-system node-build-system)
3399 (arguments
3400 '(#:tests? #f
3401 #:phases (modify-phases %standard-phases
3402 (delete 'build)
3403 (add-after 'patch-dependencies 'delete-dev-dependencies
3404 (lambda _
3405 (delete-dependencies '("ava" "execa" "xo")))))))
3406 (inputs `(("node-callsites" ,node-callsites-3.1.0)))
3407 (home-page "https://github.com/sindresorhus/parent-module#readme")
3408 (synopsis "Get the path of the parent module")
3409 (description "Get the path of the parent module")
3410 (license license:expat)))
3411
3412(define-public node-resolve-from-4.0.0
3413 (package
3414 (name "node-resolve-from")
3415 (version "4.0.0")
3416 (source (origin
3417 (method url-fetch)
3418 (uri
3419 "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz")
3420 (sha256
3421 (base32
3422 "1p11030pz8qdm9x2d9q0qi2p329447i2bb7a5j7hbsxxqbs2hhi4"))))
3423 (build-system node-build-system)
3424 (arguments
3425 '(#:tests? #f
3426 #:phases (modify-phases %standard-phases
3427 (delete 'build)
3428 (add-after 'patch-dependencies 'delete-dev-dependencies
3429 (lambda _
3430 (delete-dependencies '("ava" "xo")))))))
3431 (home-page "https://github.com/sindresorhus/resolve-from#readme")
3432 (synopsis
3433 "Resolve the path of a module like `require.resolve()` but from a given path")
3434 (description
3435 "Resolve the path of a module like `require.resolve()` but from a given path")
3436 (license license:expat)))
3437
3438(define-public node-import-fresh-3.3.0
3439 (package
3440 (name "node-import-fresh")
3441 (version "3.3.0")
3442 (source (origin
3443 (method url-fetch)
3444 (uri
3445 "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz")
3446 (sha256
3447 (base32
3448 "1chk0qimpnkrd2bn072ywnlhvy69cjyndgbij59m2b9jf4rxp945"))))
3449 (build-system node-build-system)
3450 (arguments
3451 '(#:tests? #f
3452 #:phases (modify-phases %standard-phases
3453 (delete 'build)
3454 (add-after 'patch-dependencies 'delete-dev-dependencies
3455 (lambda _
3456 (delete-dependencies '("ava" "heapdump" "tsd" "xo")))))))
3457 (inputs `(("node-resolve-from" ,node-resolve-from-4.0.0)
3458 ("node-parent-module" ,node-parent-module-1.0.1)))
3459 (home-page "https://github.com/sindresorhus/import-fresh#readme")
3460 (synopsis "Import a module while bypassing the cache")
3461 (description "Import a module while bypassing the cache")
3462 (license license:expat)))
3463
3464(define-public node-babel-helper-validator-identifier-7.22.5
3465 (package
3466 (name "node-babel-helper-validator-identifier")
3467 (version "7.22.5")
3468 (source (origin
3469 (method url-fetch)
3470 (uri
3471 "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz")
3472 (sha256
3473 (base32
3474 "1hfnmqk486lq54i5k9i72rx3xr3xdpnfkfrba0083wsvsfs1yyhl"))))
3475 (build-system node-build-system)
3476 (arguments
3477 '(#:tests? #f
3478 #:phases (modify-phases %standard-phases
3479 (delete 'build)
3480 (add-after 'patch-dependencies 'delete-dev-dependencies
3481 (lambda _
3482 (delete-dependencies '("@unicode/unicode-15.0.0"
3483 "charcodes")))))))
3484 (home-page
3485 "https://www.npmjs.com/package/node-babel-helper-validator-identifier")
3486 (synopsis "Validate identifier/keywords name")
3487 (description "Validate identifier/keywords name")
3488 (license license:expat)))
3489
3490(define-public node-color-convert-1.9.3
3491 (package
3492 (name "node-color-convert")
3493 (version "1.9.3")
3494 (source (origin
3495 (method url-fetch)
3496 (uri
3497 "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz")
3498 (sha256
3499 (base32
3500 "1ahbdssv1qgwlzvhv7731hpfgz8wny0619x97b7n5x9lckj17i0j"))))
3501 (build-system node-build-system)
3502 (arguments
3503 '(#:tests? #f
3504 #:phases (modify-phases %standard-phases
3505 (delete 'build)
3506 (add-after 'patch-dependencies 'delete-dev-dependencies
3507 (lambda _
3508 (delete-dependencies '("chalk" "xo")))))))
3509 (inputs `(("node-color-name" ,node-color-name-1.1.3)))
3510 (home-page "https://github.com/Qix-/color-convert#readme")
3511 (synopsis "Plain color conversion functions")
3512 (description "Plain color conversion functions")
3513 (license license:expat)))
3514
3515(define-public node-ansi-styles-3.2.1
3516 (package
3517 (name "node-ansi-styles")
3518 (version "3.2.1")
3519 (source (origin
3520 (method url-fetch)
3521 (uri
3522 "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz")
3523 (sha256
3524 (base32
3525 "1wqd08glq159q724kvpi6nnf87biajr749a7r9c84xm639g6463k"))))
3526 (build-system node-build-system)
3527 (arguments
3528 '(#:tests? #f
3529 #:phases (modify-phases %standard-phases
3530 (delete 'build)
3531 (add-after 'patch-dependencies 'delete-dev-dependencies
3532 (lambda _
3533 (delete-dependencies '("ava" "babel-polyfill"
3534 "svg-term-cli" "xo")))))))
3535 (inputs `(("node-color-convert" ,node-color-convert-1.9.3)))
3536 (home-page "https://github.com/chalk/ansi-styles#readme")
3537 (synopsis "ANSI escape codes for styling strings in the terminal")
3538 (description "ANSI escape codes for styling strings in the terminal")
3539 (license license:expat)))
3540
3541(define-public node-escape-string-regexp-1.0.5
3542 (package
3543 (name "node-escape-string-regexp")
3544 (version "1.0.5")
3545 (source (origin
3546 (method url-fetch)
3547 (uri
3548 "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz")
3549 (sha256
3550 (base32
3551 "0iy3jirnnslnfwk8wa5xkg56fnbmg7bsv5v2a1s0qgbnfqp7j375"))))
3552 (build-system node-build-system)
3553 (arguments
3554 '(#:tests? #f
3555 #:phases (modify-phases %standard-phases
3556 (delete 'build)
3557 (add-after 'patch-dependencies 'delete-dev-dependencies
3558 (lambda _
3559 (delete-dependencies '("ava" "xo")))))))
3560 (home-page "https://github.com/sindresorhus/escape-string-regexp")
3561 (synopsis "Escape RegExp special characters")
3562 (description "Escape RegExp special characters")
3563 (license license:expat)))
3564
3565(define-public node-babel-highlight-7.22.5
3566 (package
3567 (name "node-babel-highlight")
3568 (version "7.22.5")
3569 (source (origin
3570 (method url-fetch)
3571 (uri
3572 "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz")
3573 (sha256
3574 (base32
3575 "0wf1h5bz0gg8mmqqmf1gwm5s4vv780r0hsicqn3wm26a5rg5499f"))))
3576 (build-system node-build-system)
3577 (arguments
3578 '(#:tests? #f
3579 #:phases (modify-phases %standard-phases
3580 (delete 'build)
3581 (add-after 'patch-dependencies 'delete-dev-dependencies
3582 (lambda _
3583 (delete-dependencies '("@types/chalk" "strip-ansi")))))))
3584 (inputs `(("node-js-tokens" ,node-js-tokens-4.0.0)
3585 ("node-chalk" ,node-chalk-2.4.2)
3586 ("node-babel-helper-validator-identifier" ,node-babel-helper-validator-identifier-7.22.5)))
3587 (home-page "https://babel.dev/docs/en/next/babel-highlight")
3588 (synopsis "Syntax highlight JavaScript strings for output in terminals.")
3589 (description
3590 "Syntax highlight JavaScript strings for output in terminals.")
3591 (license license:expat)))
3592
3593(define-public node-babel-code-frame-7.22.5
3594 (package
3595 (name "node-babel-code-frame")
3596 (version "7.22.5")
3597 (source (origin
3598 (method url-fetch)
3599 (uri
3600 "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz")
3601 (sha256
3602 (base32
3603 "0kcqhh0lkb3cvjrhvw0jm10l0bj6y06il15vdd06dcv8fn02v1ld"))))
3604 (build-system node-build-system)
3605 (arguments
3606 '(#:tests? #f
3607 #:phases (modify-phases %standard-phases
3608 (delete 'build)
3609 (add-after 'patch-dependencies 'delete-dev-dependencies
3610 (lambda _
3611 (delete-dependencies '("strip-ansi")))))))
3612 (inputs `(("node-babel-highlight" ,node-babel-highlight-7.22.5)))
3613 (home-page "https://babel.dev/docs/en/next/babel-code-frame")
164 (synopsis 3614 (synopsis
165 "Strengthen the ability of file system") 3615 "Generate errors that contain a code frame that point to source locations.")
166 (description 3616 (description
167 "Strengthen the ability of file system") 3617 "Generate errors that contain a code frame that point to source locations.")
3618 (license license:expat)))
3619
3620(define-public node-is-arrayish-0.2.1
3621 (package
3622 (name "node-is-arrayish")
3623 (version "0.2.1")
3624 (source (origin
3625 (method url-fetch)
3626 (uri
3627 "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz")
3628 (sha256
3629 (base32
3630 "13734x7w9924g9pch6ywgz741hs5ir612k3578k9fy247vcib3c4"))))
3631 (build-system node-build-system)
3632 (arguments
3633 '(#:tests? #f
3634 #:phases (modify-phases %standard-phases
3635 (delete 'build)
3636 (add-after 'patch-dependencies 'delete-dev-dependencies
3637 (lambda _
3638 (delete-dependencies '("coffee-script" "coveralls"
3639 "istanbul" "mocha" "should" "xo")))))))
3640 (home-page "https://github.com/qix-/node-is-arrayish#readme")
3641 (synopsis "Determines if an object can be used as an array")
3642 (description "Determines if an object can be used as an array")
3643 (license license:expat)))
3644
3645(define-public node-error-ex-1.3.2
3646 (package
3647 (name "node-error-ex")
3648 (version "1.3.2")
3649 (source (origin
3650 (method url-fetch)
3651 (uri "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz")
3652 (sha256
3653 (base32
3654 "12gyrmh6iqpx838bnb5iwcqm2447rnbxx1bvqn76l40fvr1aichs"))))
3655 (build-system node-build-system)
3656 (arguments
3657 '(#:tests? #f
3658 #:phases (modify-phases %standard-phases
3659 (delete 'build)
3660 (add-after 'patch-dependencies 'delete-dev-dependencies
3661 (lambda _
3662 (delete-dependencies '("coffee-script" "coveralls"
3663 "istanbul" "mocha" "should" "xo")))))))
3664 (inputs `(("node-is-arrayish" ,node-is-arrayish-0.2.1)))
3665 (home-page "https://github.com/qix-/node-error-ex#readme")
3666 (synopsis "Easy error subclassing and stack customization")
3667 (description "Easy error subclassing and stack customization")
3668 (license license:expat)))
3669
3670(define-public node-json-parse-even-better-errors-2.3.1
3671 (package
3672 (name "node-json-parse-even-better-errors")
3673 (version "2.3.1")
3674 (source (origin
3675 (method url-fetch)
3676 (uri
3677 "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz")
3678 (sha256
3679 (base32
3680 "0s95hppvdm62vq9ax92bl7dpgs28dp97j6xlrka1q25bc797g1ra"))))
3681 (build-system node-build-system)
3682 (arguments
3683 '(#:tests? #f
3684 #:phases (modify-phases %standard-phases
3685 (delete 'build)
3686 (add-after 'patch-dependencies 'delete-dev-dependencies
3687 (lambda _
3688 (delete-dependencies '("tap")))))))
3689 (home-page "https://github.com/npm/json-parse-even-better-errors#readme")
3690 (synopsis "JSON.parse with context information on error")
3691 (description "JSON.parse with context information on error")
3692 (license license:expat)))
3693
3694(define-public node-lines-and-columns-1.2.4
3695 (package
3696 (name "node-lines-and-columns")
3697 (version "1.2.4")
3698 (source (origin
3699 (method url-fetch)
3700 (uri
3701 "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz")
3702 (sha256
3703 (base32
3704 "174sl99srzs7c0a9l7q73dqmlczgbji9aqh028y2y6c54g8r47s7"))))
3705 (build-system node-build-system)
3706 (arguments
3707 '(#:tests? #f
3708 #:phases (modify-phases %standard-phases
3709 (delete 'build)
3710 (add-after 'patch-dependencies 'delete-dev-dependencies
3711 (lambda _
3712 (delete-dependencies '("@types/jest" "@types/node"
3713 "@typescript-eslint/eslint-plugin"
3714 "@typescript-eslint/parser"
3715 "esbuild"
3716 "esbuild-runner"
3717 "eslint"
3718 "eslint-config-prettier"
3719 "eslint-plugin-prettier"
3720 "is-ci-cli"
3721 "jest"
3722 "prettier"
3723 "semantic-release"
3724 "typescript")))))))
3725 (home-page "https://github.com/eventualbuddha/lines-and-columns#readme")
3726 (synopsis "Maps lines and columns to character offsets and back.")
3727 (description "Maps lines and columns to character offsets and back.")
3728 (license license:expat)))
3729
3730(define-public node-parse-json-5.2.0
3731 (package
3732 (name "node-parse-json")
3733 (version "5.2.0")
3734 (source (origin
3735 (method url-fetch)
3736 (uri
3737 "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz")
3738 (sha256
3739 (base32
3740 "1388gc6zhgygqc68vkmqxafk6r9kxgdqqwbbm96k9hpxw223ddq6"))))
3741 (build-system node-build-system)
3742 (arguments
3743 '(#:tests? #f
3744 #:phases (modify-phases %standard-phases
3745 (delete 'build)
3746 (add-after 'patch-dependencies 'delete-dev-dependencies
3747 (lambda _
3748 (delete-dependencies '("ava" "nyc" "xo")))))))
3749 (inputs `(("node-lines-and-columns" ,node-lines-and-columns-1.2.4)
3750 ("node-json-parse-even-better-errors" ,node-json-parse-even-better-errors-2.3.1)
3751 ("node-error-ex" ,node-error-ex-1.3.2)
3752 ("node-babel-code-frame" ,node-babel-code-frame-7.22.5)))
3753 (home-page "https://github.com/sindresorhus/parse-json#readme")
3754 (synopsis "Parse JSON with more helpful errors")
3755 (description "Parse JSON with more helpful errors")
3756 (license license:expat)))
3757
3758(define-public node-path-type-4.0.0
3759 (package
3760 (name "node-path-type")
3761 (version "4.0.0")
3762 (source (origin
3763 (method url-fetch)
3764 (uri
3765 "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz")
3766 (sha256
3767 (base32
3768 "15wvcgwg053hr2h11ja5swvdz3vvxciqq5aad0ara9qmzgwfh9f0"))))
3769 (build-system node-build-system)
3770 (arguments
3771 '(#:tests? #f
3772 #:phases (modify-phases %standard-phases
3773 (delete 'build)
3774 (add-after 'patch-dependencies 'delete-dev-dependencies
3775 (lambda _
3776 (delete-dependencies '("ava" "nyc" "tsd-check" "xo")))))))
3777 (home-page "https://github.com/sindresorhus/path-type#readme")
3778 (synopsis "Check if a path is a file, directory, or symlink")
3779 (description "Check if a path is a file, directory, or symlink")
3780 (license license:expat)))
3781
3782(define-public node-yaml-1.10.2
3783 (package
3784 (name "node-yaml")
3785 (version "1.10.2")
3786 (source (origin
3787 (method url-fetch)
3788 (uri "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz")
3789 (sha256
3790 (base32
3791 "13g0whx1h2bd2swvmwjwaqd1lhwsbngw1x1vjmi0ivgcnrd07krx"))))
3792 (build-system node-build-system)
3793 (arguments
3794 '(#:tests? #f
3795 #:phases (modify-phases %standard-phases
3796 (delete 'build)
3797 (add-after 'patch-dependencies 'delete-dev-dependencies
3798 (lambda _
3799 (delete-dependencies '("@babel/core"
3800 "@babel/plugin-proposal-class-properties"
3801 "@babel/preset-env"
3802 "@rollup/plugin-babel"
3803 "babel-eslint"
3804 "babel-jest"
3805 "babel-plugin-trace"
3806 "common-tags"
3807 "cross-env"
3808 "eslint"
3809 "eslint-config-prettier"
3810 "fast-check"
3811 "jest"
3812 "prettier"
3813 "rollup"
3814 "typescript")))))))
3815 (home-page "https://eemeli.org/yaml/v1/")
3816 (synopsis "JavaScript parser and stringifier for YAML")
3817 (description "JavaScript parser and stringifier for YAML")
168 (license license:isc))) 3818 (license license:isc)))
169 3819
170(define-public node-utils-extend-1.0.8 3820(define-public node-cosmiconfig-6.0.0
171 (package 3821 (package
172 (name "node-utils-extend") 3822 (name "node-cosmiconfig")
173 (version "1.0.8") 3823 (version "6.0.0")
174 (source 3824 (source (origin
175 (origin 3825 (method url-fetch)
176 (method url-fetch) 3826 (uri
177 (uri "https://registry.npmjs.org/utils-extend/-/utils-extend-1.0.8.tgz") 3827 "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz")
178 (sha256 3828 (sha256
179 (base32 3829 (base32
180 "0049dvkvlbzdvqyd51mga7kaj4b2v0gxrxsdxss835a28lp7s19j")))) 3830 "1qr66zb1wgmx8rxksjcrbpvv8zmpxhrm1wbbykdxm20bmipkg9w1"))))
181 (build-system node-build-system) 3831 (build-system node-build-system)
182 (arguments 3832 (arguments
183 `(#:tests? 3833 '(#:tests? #f
184 #f 3834 #:phases (modify-phases %standard-phases
185 #:phases 3835 (delete 'build)
186 (modify-phases 3836 (add-after 'patch-dependencies 'delete-dev-dependencies
187 %standard-phases 3837 (lambda _
188 (delete 'configure) 3838 (delete-dependencies '("@babel/cli" "@babel/core"
189 (delete 'build)))) 3839 "@babel/preset-env"
3840 "@babel/preset-typescript"
3841 "@types/jest"
3842 "@types/node"
3843 "@typescript-eslint/eslint-plugin"
3844 "@typescript-eslint/parser"
3845 "cross-env"
3846 "del"
3847 "del-cli"
3848 "eslint"
3849 "eslint-config-davidtheclark-node"
3850 "eslint-config-prettier"
3851 "eslint-plugin-import"
3852 "eslint-plugin-jest"
3853 "eslint-plugin-node"
3854 "husky"
3855 "jest"
3856 "lint-staged"
3857 "make-dir"
3858 "parent-module"
3859 "prettier"
3860 "remark-preset-davidtheclark"
3861 "typescript")))))))
3862 (inputs `(("node-yaml" ,node-yaml-1.10.2)
3863 ("node-path-type" ,node-path-type-4.0.0)
3864 ("node-parse-json" ,node-parse-json-5.2.0)
3865 ("node-import-fresh" ,node-import-fresh-3.3.0)
3866 ("node-types-parse-json" ,node-types-parse-json-4.0.0)))
3867 (home-page "https://github.com/davidtheclark/cosmiconfig#readme")
3868 (synopsis
3869 "Find and load configuration from a package.json property, rc file, or CommonJS module")
3870 (description
3871 "Find and load configuration from a package.json property, rc file, or CommonJS module")
3872 (license license:expat)))
3873
3874(define-public node-is-core-module-2.12.1
3875 (package
3876 (name "node-is-core-module")
3877 (version "2.12.1")
3878 (source (origin
3879 (method url-fetch)
3880 (uri
3881 "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz")
3882 (sha256
3883 (base32
3884 "1bci8wjbkq2j5gqv4hzp4g85y0qvl36bsn085ikwfsrd3381j4hn"))))
3885 (build-system node-build-system)
3886 (arguments
3887 '(#:tests? #f
3888 #:phases (modify-phases %standard-phases
3889 (delete 'build)
3890 (add-after 'patch-dependencies 'delete-dev-dependencies
3891 (lambda _
3892 (delete-dependencies '("@ljharb/eslint-config" "aud"
3893 "auto-changelog"
3894 "eslint"
3895 "in-publish"
3896 "mock-property"
3897 "npmignore"
3898 "nyc"
3899 "safe-publish-latest"
3900 "semver"
3901 "tape")))))))
3902 (inputs `(("node-has" ,node-has-1.0.3)))
3903 (home-page "https://github.com/inspect-js/is-core-module")
3904 (synopsis "Is this specifier a node.js core module?")
3905 (description "Is this specifier a node.js core module?")
3906 (license license:expat)))
3907
3908(define-public node-path-parse-1.0.7
3909 (package
3910 (name "node-path-parse")
3911 (version "1.0.7")
3912 (source (origin
3913 (method url-fetch)
3914 (uri
3915 "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz")
3916 (sha256
3917 (base32
3918 "18vkai53yyiv1c1rimsh2whiymxnz9xj6a39c6b65097ly61jym0"))))
3919 (build-system node-build-system)
3920 (arguments
3921 '(#:tests? #f
3922 #:phases (modify-phases %standard-phases
3923 (delete 'build))))
3924 (home-page "https://github.com/jbgutierrez/path-parse#readme")
3925 (synopsis "Node.js path.parse() ponyfill")
3926 (description "Node.js path.parse() ponyfill")
3927 (license license:expat)))
3928
3929(define-public node-supports-preserve-symlinks-flag-1.0.0
3930 (package
3931 (name "node-supports-preserve-symlinks-flag")
3932 (version "1.0.0")
3933 (source (origin
3934 (method url-fetch)
3935 (uri
3936 "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz")
3937 (sha256
3938 (base32
3939 "1ygp0kk7p6df5p6p2q1csdshilklhfbh49g7h90m6i2kmxh13nlp"))))
3940 (build-system node-build-system)
3941 (arguments
3942 '(#:tests? #f
3943 #:phases (modify-phases %standard-phases
3944 (delete 'build)
3945 (add-after 'patch-dependencies 'delete-dev-dependencies
3946 (lambda _
3947 (delete-dependencies '("@ljharb/eslint-config" "aud"
3948 "auto-changelog"
3949 "eslint"
3950 "nyc"
3951 "safe-publish-latest"
3952 "semver"
3953 "tape")))))))
190 (home-page 3954 (home-page
191 "https://github.com/douzi8/utils-extend") 3955 "https://github.com/inspect-js/node-supports-preserve-symlinks-flag#readme")
192 (synopsis 3956 (synopsis
193 "Extend nodejs util api, and it is light weight and simple") 3957 "Determine if the current node version supports the `--preserve-symlinks` flag.")
194 (description 3958 (description
195 "Extend nodejs util api, and it is light weight and simple") 3959 "Determine if the current node version supports the `--preserve-symlinks` flag.")
3960 (license license:expat)))
3961
3962(define-public node-resolve-1.22.3
3963 (package
3964 (name "node-resolve")
3965 (version "1.22.3")
3966 (source (origin
3967 (method url-fetch)
3968 (uri "https://registry.npmjs.org/resolve/-/resolve-1.22.3.tgz")
3969 (sha256
3970 (base32
3971 "1dxpqlkldla6jrwxp5bip4kr9521fwf3xb316j7wnjxb89mxyfs4"))))
3972 (build-system node-build-system)
3973 (arguments
3974 '(#:tests? #f
3975 #:phases (modify-phases %standard-phases
3976 (delete 'build)
3977 (add-after 'patch-dependencies 'delete-dev-dependencies
3978 (lambda _
3979 (delete-dependencies '("@ljharb/eslint-config"
3980 "array.prototype.map"
3981 "aud"
3982 "copy-dir"
3983 "eclint"
3984 "eslint"
3985 "in-publish"
3986 "mkdirp"
3987 "mv"
3988 "npmignore"
3989 "object-keys"
3990 "rimraf"
3991 "safe-publish-latest"
3992 "semver"
3993 "tap"
3994 "tape"
3995 "tmp")))))))
3996 (inputs `(("node-supports-preserve-symlinks-flag" ,node-supports-preserve-symlinks-flag-1.0.0)
3997 ("node-path-parse" ,node-path-parse-1.0.7)
3998 ("node-is-core-module" ,node-is-core-module-2.12.1)))
3999 (home-page "https://github.com/browserify/resolve#readme")
4000 (synopsis
4001 "resolve like require.resolve() on behalf of files asynchronously and synchronously")
4002 (description
4003 "resolve like require.resolve() on behalf of files asynchronously and synchronously")
4004 (license license:expat)))
4005
4006(define-public node-babel-plugin-macros-2.8.0
4007 (package
4008 (name "node-babel-plugin-macros")
4009 (version "2.8.0")
4010 (source (origin
4011 (method url-fetch)
4012 (uri
4013 "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz")
4014 (sha256
4015 (base32
4016 "03ymharkmanc9xclccgh17v7m7i2366jcraqwqzb7gc5bvpmrrb2"))))
4017 (build-system node-build-system)
4018 (arguments
4019 '(#:tests? #f
4020 #:phases (modify-phases %standard-phases
4021 (delete 'build)
4022 (add-after 'patch-dependencies 'delete-dev-dependencies
4023 (lambda _
4024 (delete-dependencies '("@babel/core" "@babel/parser"
4025 "@babel/types"
4026 "ast-pretty-print"
4027 "babel-plugin-tester"
4028 "babel-plugin-transform-es2015-modules-commonjs"
4029 "cpy"
4030 "kcd-scripts")))))))
4031 (inputs `(("node-resolve" ,node-resolve-1.22.3)
4032 ("node-cosmiconfig" ,node-cosmiconfig-6.0.0)
4033 ("node-babel-runtime" ,node-babel-runtime-7.22.5)))
4034 (home-page "https://github.com/kentcdodds/babel-plugin-macros#readme")
4035 (synopsis "Allows you to build compile-time libraries")
4036 (description "Allows you to build compile-time libraries")
4037 (license license:expat)))
4038
4039(define-public node-babel-plugin-syntax-jsx-6.18.0
4040 (package
4041 (name "node-babel-plugin-syntax-jsx")
4042 (version "6.18.0")
4043 (source (origin
4044 (method url-fetch)
4045 (uri
4046 "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz")
4047 (sha256
4048 (base32
4049 "0nlwixy37wj48m275k0w66cq8cpdnwxa5fnv4hav83nvamqz6a1g"))))
4050 (build-system node-build-system)
4051 (arguments
4052 '(#:tests? #f
4053 #:phases (modify-phases %standard-phases
4054 (delete 'build))))
4055 (home-page "https://www.npmjs.com/package/node-babel-plugin-syntax-jsx")
4056 (synopsis "Allow parsing of jsx")
4057 (description "Allow parsing of jsx")
4058 (license license:expat)))
4059
4060(define-public node-convert-source-map-1.9.0
4061 (package
4062 (name "node-convert-source-map")
4063 (version "1.9.0")
4064 (source (origin
4065 (method url-fetch)
4066 (uri
4067 "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz")
4068 (sha256
4069 (base32
4070 "0l5hs8bf8dy2gkw5i4gfr7w1rhhla2hclmms819j7i4i5x9bjwm1"))))
4071 (build-system node-build-system)
4072 (arguments
4073 '(#:tests? #f
4074 #:phases (modify-phases %standard-phases
4075 (delete 'build)
4076 (add-after 'patch-dependencies 'delete-dev-dependencies
4077 (lambda _
4078 (delete-dependencies '("inline-source-map" "tap")))))))
4079 (home-page "https://github.com/thlorenz/convert-source-map")
4080 (synopsis
4081 "Converts a source-map from/to different formats and allows adding/changing properties.")
4082 (description
4083 "Converts a source-map from/to different formats and allows adding/changing properties.")
4084 (license license:expat)))
4085
4086(define-public node-find-root-1.1.0
4087 (package
4088 (name "node-find-root")
4089 (version "1.1.0")
4090 (source (origin
4091 (method url-fetch)
4092 (uri
4093 "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz")
4094 (sha256
4095 (base32
4096 "1m0lf8903ffmlzxhy8nss7lpkyjyhf8samyy0himcpjxknpkrrq6"))))
4097 (build-system node-build-system)
4098 (arguments
4099 '(#:tests? #f
4100 #:phases (modify-phases %standard-phases
4101 (delete 'build)
4102 (add-after 'patch-dependencies 'delete-dev-dependencies
4103 (lambda _
4104 (delete-dependencies '("chai" "mocha" "moquire"
4105 "standard")))))))
4106 (home-page "https://github.com/js-n/find-root#readme")
4107 (synopsis "find the closest package.json")
4108 (description "find the closest package.json")
4109 (license license:expat)))
4110
4111(define-public node-minimist-1.2.8
4112 (package
4113 (name "node-minimist")
4114 (version "1.2.8")
4115 (source (origin
4116 (method url-fetch)
4117 (uri "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz")
4118 (sha256
4119 (base32
4120 "10yfwkrl00d8gy9z622yrklg1jax3qk38j354jfw34xk2p0pc2im"))))
4121 (build-system node-build-system)
4122 (arguments
4123 '(#:tests? #f
4124 #:phases (modify-phases %standard-phases
4125 (delete 'build)
4126 (add-after 'patch-dependencies 'delete-dev-dependencies
4127 (lambda _
4128 (delete-dependencies '("@ljharb/eslint-config" "aud"
4129 "auto-changelog"
4130 "eslint"
4131 "in-publish"
4132 "npmignore"
4133 "nyc"
4134 "safe-publish-latest"
4135 "tape")))))))
4136 (home-page "https://github.com/minimistjs/minimist")
4137 (synopsis "parse argument options")
4138 (description "parse argument options")
4139 (license license:expat)))
4140
4141(define-public node-nopt-1.0.10
4142 (package
4143 (name "node-nopt")
4144 (version "1.0.10")
4145 (source (origin
4146 (method url-fetch)
4147 (uri "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz")
4148 (sha256
4149 (base32
4150 "09s96giczznyly80l061wl0nr35pwnnpadf8x9cw1gzv7fa64ra2"))))
4151 (build-system node-build-system)
4152 (arguments
4153 '(#:tests? #f
4154 #:phases (modify-phases %standard-phases
4155 (delete 'build))))
4156 (inputs `(("node-abbrev" ,node-abbrev-1.1.1)))
4157 (home-page "https://www.npmjs.com/package/node-nopt")
4158 (synopsis
4159 "Option parsing for Node, supporting types, shorthands, etc. Used by npm.")
4160 (description
4161 "Option parsing for Node, supporting types, shorthands, etc. Used by npm.")
4162 (license license:expat)))
4163
4164(define-public node-touch-2.0.2
4165 (package
4166 (name "node-touch")
4167 (version "2.0.2")
4168 (source (origin
4169 (method url-fetch)
4170 (uri "https://registry.npmjs.org/touch/-/touch-2.0.2.tgz")
4171 (sha256
4172 (base32
4173 "1cf0q0cpgqchs6qhpnhzicvpsf1miamz3h8pfg7wxkav0h5qrsws"))))
4174 (build-system node-build-system)
4175 (arguments
4176 '(#:tests? #f
4177 #:phases (modify-phases %standard-phases
4178 (delete 'build)
4179 (add-after 'patch-dependencies 'delete-dev-dependencies
4180 (lambda _
4181 (delete-dependencies '("mutate-fs" "tap")))))))
4182 (inputs `(("node-nopt" ,node-nopt-1.0.10)))
4183 (home-page "https://github.com/isaacs/node-touch#readme")
4184 (synopsis "like touch(1) in node")
4185 (description "like touch(1) in node")
196 (license license:isc))) 4186 (license license:isc)))
197 4187
4188(define-public node-babel-plugin-emotion-9.2.11
4189 (package
4190 (name "node-babel-plugin-emotion")
4191 (version "9.2.11")
4192 (source (origin
4193 (method url-fetch)
4194 (uri
4195 "https://registry.npmjs.org/babel-plugin-emotion/-/babel-plugin-emotion-9.2.11.tgz")
4196 (sha256
4197 (base32
4198 "160acyl7sxcg285y63cwlji8fqa11bra8wbdlhxcqx42ikpcsj74"))))
4199 (build-system node-build-system)
4200 (arguments
4201 '(#:tests? #f
4202 #:phases (modify-phases %standard-phases
4203 (delete 'build)
4204 (add-after 'patch-dependencies 'delete-dev-dependencies
4205 (lambda _
4206 (delete-dependencies '("babel-check-duplicated-nodes"
4207 "babel-core")))))))
4208 (inputs `(("node-touch" ,node-touch-2.0.2)
4209 ("node-source-map" ,node-source-map-0.5.7)
4210 ("node-mkdirp" ,node-mkdirp-0.5.6)
4211 ("node-find-root" ,node-find-root-1.1.0)
4212 ("node-convert-source-map" ,node-convert-source-map-1.9.0)
4213 ("node-babel-plugin-syntax-jsx" ,node-babel-plugin-syntax-jsx-6.18.0)
4214 ("node-babel-plugin-macros" ,node-babel-plugin-macros-2.8.0)
4215 ("node-emotion-stylis" ,node-emotion-stylis-0.7.1)
4216 ("node-emotion-memoize" ,node-emotion-memoize-0.6.6)
4217 ("node-emotion-hash" ,node-emotion-hash-0.6.6)
4218 ("node-emotion-babel-utils" ,node-emotion-babel-utils-0.6.10)
4219 ("node-babel-helper-module-imports" ,node-babel-helper-module-imports-7.22.5)))
4220 (home-page "https://emotion.sh")
4221 (synopsis
4222 "A recommended babel preprocessing plugin for emotion, The Next Generation of CSS-in-JS.")
4223 (description
4224 "A recommended babel preprocessing plugin for emotion, The Next Generation of CSS-in-JS.")
4225 (license license:expat)))
4226
4227(define-public node-emotion-memoize-0.6.6
4228 (package
4229 (name "node-emotion-memoize")
4230 (version "0.6.6")
4231 (source (origin
4232 (method url-fetch)
4233 (uri
4234 "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.6.6.tgz")
4235 (sha256
4236 (base32
4237 "0fgj8kjn7ihiwbq2p5nbcv5a12zpy0x2smxlgfhk5xqj3ln1zgbn"))))
4238 (build-system node-build-system)
4239 (arguments
4240 '(#:tests? #f
4241 #:phases (modify-phases %standard-phases
4242 (delete 'build))))
4243 (home-page "https://www.npmjs.com/package/node-emotion-memoize")
4244 (synopsis "emotion's memoize utility")
4245 (description "emotion's memoize utility")
4246 (license license:expat)))
4247
4248(define-public node-emotion-is-prop-valid-0.6.8
4249 (package
4250 (name "node-emotion-is-prop-valid")
4251 (version "0.6.8")
4252 (source (origin
4253 (method url-fetch)
4254 (uri
4255 "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.6.8.tgz")
4256 (sha256
4257 (base32
4258 "1yw9j5jg06wp15qd61d0crm7h8icj5h7bjhaig54f1jdhyxjw239"))))
4259 (build-system node-build-system)
4260 (arguments
4261 '(#:tests? #f
4262 #:phases (modify-phases %standard-phases
4263 (delete 'build))))
4264 (inputs `(("node-emotion-memoize" ,node-emotion-memoize-0.6.6)))
4265 (home-page "https://www.npmjs.com/package/node-emotion-is-prop-valid")
4266 (synopsis
4267 "A function to check whether a prop is valid for HTML and SVG elements")
4268 (description
4269 "A function to check whether a prop is valid for HTML and SVG elements")
4270 (license license:expat)))
4271
4272(define-public node-create-emotion-styled-9.2.8
4273 (package
4274 (name "node-create-emotion-styled")
4275 (version "9.2.8")
4276 (source (origin
4277 (method url-fetch)
4278 (uri
4279 "https://registry.npmjs.org/create-emotion-styled/-/create-emotion-styled-9.2.8.tgz")
4280 (sha256
4281 (base32
4282 "1yjh96lc5alha7vd9aqxbn1jbqrgygbrgmlyy63jycnm2mx41s0k"))))
4283 (build-system node-build-system)
4284 (arguments
4285 '(#:tests? #f
4286 #:phases (modify-phases %standard-phases
4287 (delete 'build)
4288 (add-after 'patch-dependencies 'delete-dev-dependencies
4289 (lambda _
4290 (delete-dependencies '("@types/react" "dtslint"
4291 "prop-types")))))))
4292 (inputs `(("node-emotion-is-prop-valid" ,node-emotion-is-prop-valid-0.6.8)
4293 ("node-prop-types" ,node-prop-types-15.8.1)))
4294 (home-page "https://emotion.sh")
4295 (synopsis "The styled API for emotion")
4296 (description "The styled API for emotion")
4297 (license license:expat)))
4298
4299(define-public node-react-emotion-9.2.12
4300 (package
4301 (name "node-react-emotion")
4302 (version "9.2.12")
4303 (source (origin
4304 (method url-fetch)
4305 (uri
4306 "https://registry.npmjs.org/react-emotion/-/react-emotion-9.2.12.tgz")
4307 (sha256
4308 (base32
4309 "0h8ap7ppsq9zmmwvv2gx52m00il52hf28bzgr0wx7qp1gml4pq6k"))))
4310 (build-system node-build-system)
4311 (arguments
4312 '(#:tests? #f
4313 #:phases (modify-phases %standard-phases
4314 (delete 'build)
4315 (add-after 'patch-dependencies 'delete-dev-dependencies
4316 (lambda _
4317 (delete-dependencies '("@types/react" "dtslint"
4318 "emotion" "react")))))))
4319 (inputs `(("node-create-emotion-styled" ,node-create-emotion-styled-9.2.8)
4320 ("node-babel-plugin-emotion" ,node-babel-plugin-emotion-9.2.11)
4321 ("node-react" ,node-react-16.14.0)
4322 ("node-emotion" ,node-emotion-9.2.12)))
4323 (home-page "https://emotion.sh")
4324 (synopsis "The Next Generation of CSS-in-JS, for React projects.")
4325 (description "The Next Generation of CSS-in-JS, for React projects.")
4326 (license license:expat)))
4327
4328(define-public node-scheduler-0.19.1
4329 (package
4330 (name "node-scheduler")
4331 (version "0.19.1")
4332 (source (origin
4333 (method url-fetch)
4334 (uri
4335 "https://registry.npmjs.org/scheduler/-/scheduler-0.19.1.tgz")
4336 (sha256
4337 (base32
4338 "1s9igfdyabpnmcn9pk7f5p5wlvhprnrib07d2fa0qppiq0j5jxly"))))
4339 (build-system node-build-system)
4340 (arguments
4341 '(#:tests? #f
4342 #:phases (modify-phases %standard-phases
4343 (delete 'build))))
4344 (inputs `(("node-object-assign" ,node-object-assign-4.1.1)
4345 ("node-loose-envify" ,node-loose-envify-1.4.0)))
4346 (home-page "https://reactjs.org/")
4347 (synopsis "Cooperative scheduler for the browser environment.")
4348 (description "Cooperative scheduler for the browser environment.")
4349 (license license:expat)))
4350
4351(define-public node-react-dom-16.14.0
4352 (package
4353 (name "node-react-dom")
4354 (version "16.14.0")
4355 (source (origin
4356 (method url-fetch)
4357 (uri
4358 "https://registry.npmjs.org/react-dom/-/react-dom-16.14.0.tgz")
4359 (sha256
4360 (base32
4361 "0dikgr72j7qc9gz60kvlqgmddwf2lnyzr47f1bayhk8gy638bl31"))))
4362 (build-system node-build-system)
4363 (arguments
4364 '(#:tests? #f
4365 #:phases (modify-phases %standard-phases
4366 (delete 'build)
4367 (add-after 'patch-dependencies 'delete-dev-dependencies
4368 (lambda _
4369 (delete-dependencies '("react")))))))
4370 (inputs `(("node-scheduler" ,node-scheduler-0.19.1)
4371 ("node-prop-types" ,node-prop-types-15.8.1)
4372 ("node-object-assign" ,node-object-assign-4.1.1)
4373 ("node-loose-envify" ,node-loose-envify-1.4.0)
4374 ("node-react" ,node-react-16.14.0)))
4375 (home-page "https://reactjs.org/")
4376 (synopsis "React package for working with the DOM.")
4377 (description "React package for working with the DOM.")
4378 (license license:expat)))
4379
4380(define-public node-core-js-2.6.12
4381 (package
4382 (name "node-core-js")
4383 (version "2.6.12")
4384 (source (origin
4385 (method url-fetch)
4386 (uri "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz")
4387 (sha256
4388 (base32
4389 "0idawjihpabdgpq1w460phfls3wrmgkl3idll6h68cy48k2z6bw7"))))
4390 (build-system node-build-system)
4391 (arguments
4392 '(#:tests? #f
4393 #:phases (modify-phases %standard-phases
4394 (delete 'build)
4395 (add-after 'patch-dependencies 'delete-dev-dependencies
4396 (lambda _
4397 (delete-dependencies '("LiveScript"
4398 "es-observable-tests"
4399 "eslint"
4400 "eslint-plugin-import"
4401 "grunt"
4402 "grunt-cli"
4403 "grunt-contrib-clean"
4404 "grunt-contrib-copy"
4405 "grunt-contrib-uglify"
4406 "grunt-contrib-watch"
4407 "grunt-karma"
4408 "grunt-livescript"
4409 "karma"
4410 "karma-qunit"
4411 "karma-chrome-launcher"
4412 "karma-firefox-launcher"
4413 "karma-ie-launcher"
4414 "karma-phantomjs-launcher"
4415 "phantomjs-prebuilt"
4416 "promises-aplus-tests"
4417 "qunit"
4418 "temp"
4419 "webpack")))))))
4420 (home-page "https://github.com/zloirock/core-js#readme")
4421 (synopsis "Standard library")
4422 (description "Standard library")
4423 (license license:expat)))
4424
4425(define-public node-regenerator-runtime-0.11.1
4426 (package
4427 (name "node-regenerator-runtime")
4428 (version "0.11.1")
4429 (source (origin
4430 (method url-fetch)
4431 (uri
4432 "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz")
4433 (sha256
4434 (base32
4435 "0frppih4qlrkvl1xgyd9zpgxs3fp0sarpcywwn7v1dmkhidrin6d"))))
4436 (build-system node-build-system)
4437 (arguments
4438 '(#:tests? #f
4439 #:phases (modify-phases %standard-phases
4440 (delete 'build))))
4441 (home-page "https://www.npmjs.com/package/node-regenerator-runtime")
4442 (synopsis
4443 "Runtime for Regenerator-compiled generator and async functions.")
4444 (description
4445 "Runtime for Regenerator-compiled generator and async functions.")
4446 (license license:expat)))
4447
4448(define-public node-babel-runtime-6.26.0
4449 (package
4450 (name "node-babel-runtime")
4451 (version "6.26.0")
4452 (source (origin
4453 (method url-fetch)
4454 (uri
4455 "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz")
4456 (sha256
4457 (base32
4458 "0swl6f8bw62qydhkq6qq53c8afxai4cqpd4rg7270jvl8s4lilhl"))))
4459 (build-system node-build-system)
4460 (arguments
4461 '(#:tests? #f
4462 #:phases (modify-phases %standard-phases
4463 (delete 'build)
4464 (add-after 'patch-dependencies 'delete-dev-dependencies
4465 (lambda _
4466 (delete-dependencies '("babel-helpers"
4467 "babel-plugin-transform-runtime")))))))
4468 (inputs `(("node-regenerator-runtime" ,node-regenerator-runtime-0.11.1)
4469 ("node-core-js" ,node-core-js-2.6.12)))
4470 (home-page "https://www.npmjs.com/package/node-babel-runtime")
4471 (synopsis "babel selfContained runtime")
4472 (description "babel selfContained runtime")
4473 (license license:expat)))
4474
4475(define-public node-base16-1.0.0
4476 (package
4477 (name "node-base16")
4478 (version "1.0.0")
4479 (source (origin
4480 (method url-fetch)
4481 (uri "https://registry.npmjs.org/base16/-/base16-1.0.0.tgz")
4482 (sha256
4483 (base32
4484 "07jqwqxly1ia87yki3kr0cv25jslkasmad55i3yxfkd9w16dxx59"))))
4485 (build-system node-build-system)
4486 (arguments
4487 '(#:tests? #f
4488 #:phases (modify-phases %standard-phases
4489 (delete 'build)
4490 (add-after 'patch-dependencies 'delete-dev-dependencies
4491 (lambda _
4492 (delete-dependencies '("babel" "babel-core"
4493 "babel-eslint"
4494 "eslint"
4495 "eslint-config-airbnb"
4496 "eslint-plugin-react"
4497 "rimraf")))))))
4498 (home-page "https://github.com/gaearon/base16-js")
4499 (synopsis "Base16 themes as JS objects")
4500 (description "Base16 themes as JS objects")
4501 (license license:expat)))
4502
4503(define-public node-lodash-curry-4.1.1
4504 (package
4505 (name "node-lodash-curry")
4506 (version "4.1.1")
4507 (source (origin
4508 (method url-fetch)
4509 (uri
4510 "https://registry.npmjs.org/lodash.curry/-/lodash.curry-4.1.1.tgz")
4511 (sha256
4512 (base32
4513 "01yih63d4chjld2w5y32n15x6ql6qpglyj7cr7175acpyz6mkpz1"))))
4514 (build-system node-build-system)
4515 (arguments
4516 '(#:tests? #f
4517 #:phases (modify-phases %standard-phases
4518 (delete 'build))))
4519 (home-page "https://lodash.com/")
4520 (synopsis "The lodash method `_.curry` exported as a module.")
4521 (description "The lodash method `_.curry` exported as a module.")
4522 (license license:expat)))
4523
4524(define-public node-lodash-flow-3.5.0
4525 (package
4526 (name "node-lodash-flow")
4527 (version "3.5.0")
4528 (source (origin
4529 (method url-fetch)
4530 (uri
4531 "https://registry.npmjs.org/lodash.flow/-/lodash.flow-3.5.0.tgz")
4532 (sha256
4533 (base32
4534 "1p1h7s6zbs2ca7vh7xwa21qlcd5vz65hpbrhr47m39zv6jn9gqir"))))
4535 (build-system node-build-system)
4536 (arguments
4537 '(#:tests? #f
4538 #:phases (modify-phases %standard-phases
4539 (delete 'build))))
4540 (home-page "https://lodash.com/")
4541 (synopsis "The lodash method `_.flow` exported as a module.")
4542 (description "The lodash method `_.flow` exported as a module.")
4543 (license license:expat)))
4544
4545(define-public node-pure-color-1.3.0
4546 (package
4547 (name "node-pure-color")
4548 (version "1.3.0")
4549 (source (origin
4550 (method url-fetch)
4551 (uri
4552 "https://registry.npmjs.org/pure-color/-/pure-color-1.3.0.tgz")
4553 (sha256
4554 (base32
4555 "1z6bacqcxn1pgxzlw0sw3abpixzi05dw3xpvj0fpjh0rqq4hgdqm"))))
4556 (build-system node-build-system)
4557 (arguments
4558 '(#:tests? #f
4559 #:phases (modify-phases %standard-phases
4560 (delete 'build))))
4561 (home-page "https://github.com/WickyNilliams/pure-color#readme")
4562 (synopsis "Pure functions for color conversion and parsing")
4563 (description "Pure functions for color conversion and parsing")
4564 (license license:expat)))
4565
4566(define-public node-react-base16-styling-0.5.3
4567 (package
4568 (name "node-react-base16-styling")
4569 (version "0.5.3")
4570 (source (origin
4571 (method url-fetch)
4572 (uri
4573 "https://registry.npmjs.org/react-base16-styling/-/react-base16-styling-0.5.3.tgz")
4574 (sha256
4575 (base32
4576 "1w1xiymxqaa7ybyb4il9dg9nqv4bpaal3wj8ydq830501yf1n6nc"))))
4577 (build-system node-build-system)
4578 (arguments
4579 '(#:tests? #f
4580 #:phases (modify-phases %standard-phases
4581 (delete 'build)
4582 (add-after 'patch-dependencies 'delete-dev-dependencies
4583 (lambda _
4584 (delete-dependencies '("ava" "babel-cli"
4585 "babel-core"
4586 "babel-eslint"
4587 "babel-plugin-transform-flow-strip-types"
4588 "babel-plugin-transform-runtime"
4589 "babel-preset-es2015"
4590 "babel-preset-stage-0"
4591 "eslint"
4592 "eslint-plugin-babel"
4593 "eslint-plugin-flowtype"
4594 "flow-bin"
4595 "pre-commit")))))))
4596 (inputs `(("node-pure-color" ,node-pure-color-1.3.0)
4597 ("node-lodash-flow" ,node-lodash-flow-3.5.0)
4598 ("node-lodash-curry" ,node-lodash-curry-4.1.1)
4599 ("node-base16" ,node-base16-1.0.0)))
4600 (home-page "https://github.com/alexkuz/react-base16-styling#readme")
4601 (synopsis "React styling with base16 color scheme support")
4602 (description "React styling with base16 color scheme support")
4603 (license license:expat)))
4604
4605(define-public node-react-json-tree-0.11.2
4606 (package
4607 (name "node-react-json-tree")
4608 (version "0.11.2")
4609 (source (origin
4610 (method url-fetch)
4611 (uri
4612 "https://registry.npmjs.org/react-json-tree/-/react-json-tree-0.11.2.tgz")
4613 (sha256
4614 (base32
4615 "0bnpdp1cj1gbxp0z664jb2j6api6h6g8g4y8bkvrwvnnyynf7hb1"))))
4616 (build-system node-build-system)
4617 (arguments
4618 '(#:tests? #f
4619 #:modules
4620 ((guix build node-build-system)
4621 (srfi srfi-1)
4622 (ice-9 match)
4623 (guix build utils))
4624 #:phases (modify-phases %standard-phases
4625 (delete 'build)
4626(add-before 'configure 'avoid-prepare-scripts
4627 (lambda _
4628 ;; We need to remove the prepare script from "package.json", as
4629 ;; it would try to use the build environment and would block the
4630 ;; automatic building by other packages making use of node-acorn.
4631 ;; TODO: Add utility function
4632 (with-atomic-json-file-replacement "package.json"
4633 (match-lambda
4634 (('@ . pkg-meta-alist)
4635 (cons '@ (map (match-lambda
4636 (("scripts" @ . scripts-alist)
4637 `("scripts" @ ,@(filter (match-lambda
4638 (("prepare" . _)
4639 #f)
4640 (_
4641 #t))
4642 scripts-alist)))
4643 (other other))
4644 pkg-meta-alist)))))))
4645 (add-after 'patch-dependencies 'delete-dev-dependencies
4646 (lambda _
4647 (delete-dependencies '("babel-cli" "babel-core"
4648 "babel-eslint"
4649 "babel-loader"
4650 "babel-plugin-transform-class-properties"
4651 "babel-plugin-transform-es3-member-expression-literals"
4652 "babel-plugin-transform-es3-property-literals"
4653 "babel-plugin-transform-object-rest-spread"
4654 "babel-plugin-transform-runtime"
4655 "babel-preset-env"
4656 "babel-preset-react"
4657 "eslint"
4658 "eslint-config-prettier"
4659 "eslint-config-standard"
4660 "eslint-plugin-babel"
4661 "eslint-plugin-import"
4662 "eslint-plugin-node"
4663 "eslint-plugin-prettier"
4664 "eslint-plugin-promise"
4665 "eslint-plugin-react"
4666 "eslint-plugin-standard"
4667 "expect"
4668 "husky"
4669 "isparta"
4670 "lint-staged"
4671 "mocha"
4672 "prettier"
4673 "react"
4674 "react-dom"
4675 "react-test-renderer"
4676 "rimraf"
4677 "terser-webpack-plugin"
4678 "webpack"
4679 "webpack-cli")))))))
4680 (inputs `(("node-react-base16-styling" ,node-react-base16-styling-0.5.3)
4681 ("node-prop-types" ,node-prop-types-15.8.1)
4682 ("node-babel-runtime" ,node-babel-runtime-6.26.0)
4683 ("node-react-dom" ,node-react-dom-16.14.0)
4684 ("node-react" ,node-react-16.14.0)))
4685 (home-page "https://github.com/reduxjs/redux-devtools")
4686 (synopsis "React JSON Viewer Component, Extracted from redux-devtools")
4687 (description "React JSON Viewer Component, Extracted from redux-devtools")
4688 (license license:expat)))
4689
4690(define-public node-react-is-16.13.1
4691 (package
4692 (name "node-react-is")
4693 (version "16.13.1")
4694 (source (origin
4695 (method url-fetch)
4696 (uri
4697 "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz")
4698 (sha256
4699 (base32
4700 "13zfzbq3z5cmh7fzvbzwm2ivcqg2crv97ww7162kxhfxfgabbnqb"))))
4701 (build-system node-build-system)
4702 (arguments
4703 '(#:tests? #f
4704 #:phases (modify-phases %standard-phases
4705 (delete 'build))))
4706 (home-page "https://reactjs.org/")
4707 (synopsis "Brand checking of React Elements.")
4708 (description "Brand checking of React Elements.")
4709 (license license:expat)))
4710
4711(define-public node-prop-types-15.8.1
4712 (package
4713 (name "node-prop-types")
4714 (version "15.8.1")
4715 (source (origin
4716 (method url-fetch)
4717 (uri
4718 "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz")
4719 (sha256
4720 (base32
4721 "0mx539ks64wvzzll94jjldpmqj755hpx17afd8l2qilabnq9wwqw"))))
4722 (build-system node-build-system)
4723 (arguments
4724 '(#:tests? #f
4725 #:phases (modify-phases %standard-phases
4726 (delete 'build)
4727 (add-after 'patch-dependencies 'delete-dev-dependencies
4728 (lambda _
4729 (delete-dependencies '("babel-jest" "babel-preset-react"
4730 "browserify"
4731 "bundle-collapser"
4732 "eslint"
4733 "in-publish"
4734 "jest"
4735 "react"
4736 "uglifyify"
4737 "uglifyjs")))))))
4738 (inputs `(("node-react-is" ,node-react-is-16.13.1)
4739 ("node-object-assign" ,node-object-assign-4.1.1)
4740 ("node-loose-envify" ,node-loose-envify-1.4.0)))
4741 (home-page "https://facebook.github.io/react/")
4742 (synopsis "Runtime type checking for React props and similar objects.")
4743 (description "Runtime type checking for React props and similar objects.")
4744 (license license:expat)))
4745
4746(define-public node-react-16.14.0
4747 (package
4748 (name "node-react")
4749 (version "16.14.0")
4750 (source (origin
4751 (method url-fetch)
4752 (uri "https://registry.npmjs.org/react/-/react-16.14.0.tgz")
4753 (sha256
4754 (base32
4755 "1qx52jqad4jxavq83x08gypw2jg7cidwm2zpc5gxkjshbqvdqmzy"))))
4756 (build-system node-build-system)
4757 (arguments
4758 '(#:tests? #f
4759 #:phases (modify-phases %standard-phases
4760 (delete 'build))))
4761 (inputs `(("node-prop-types" ,node-prop-types-15.8.1)
4762 ("node-object-assign" ,node-object-assign-4.1.1)
4763 ("node-loose-envify" ,node-loose-envify-1.4.0)))
4764 (home-page "https://reactjs.org/")
4765 (synopsis "React is a JavaScript library for building user interfaces.")
4766 (description "React is a JavaScript library for building user interfaces.")
4767 (license license:expat)))
4768
4769(define-public node-create-react-context-0.1.6
4770 (package
4771 (name "node-create-react-context")
4772 (version "0.1.6")
4773 (source (origin
4774 (method url-fetch)
4775 (uri
4776 "https://registry.npmjs.org/create-react-context/-/create-react-context-0.1.6.tgz")
4777 (sha256
4778 (base32
4779 "05rgnfqb99xkwh4ckk0lilxdhdl2yvhphhkz0f9j31zhaq9jdmd9"))))
4780 (build-system node-build-system)
4781 (arguments
4782 '(#:tests? #f
4783 #:phases (modify-phases %standard-phases
4784 (delete 'build)
4785 (add-after 'patch-dependencies 'delete-dev-dependencies
4786 (lambda _
4787 (delete-dependencies '("babel-cli"
4788 "babel-plugin-add-module-exports"
4789 "babel-plugin-transform-class-properties"
4790 "babel-preset-env"
4791 "babel-preset-flow"
4792 "babel-preset-react"
4793 "enzyme"
4794 "enzyme-adapter-react-16"
4795 "enzyme-to-json"
4796 "flow-bin"
4797 "husky"
4798 "jest"
4799 "lint-staged"
4800 "prettier"
4801 "prop-types"
4802 "raf"
4803 "react"
4804 "react-dom")))))))
4805 (home-page "https://github.com/thejameskyle/create-react-context#readme")
4806 (synopsis "Polyfill for the proposed React context API")
4807 (description "Polyfill for the proposed React context API")
4808 (license license:expat)))
4809
4810(define-public node-unstated-2.1.1
4811 (package
4812 (name "node-unstated")
4813 (version "2.1.1")
4814 (source (origin
4815 (method url-fetch)
4816 (uri "https://registry.npmjs.org/unstated/-/unstated-2.1.1.tgz")
4817 (sha256
4818 (base32
4819 "1yaphbvwdgzvxp5vpsnk59lvfjznd0m8q9hbvsshg9wmpqpjybvy"))))
4820 (build-system node-build-system)
4821 (arguments
4822 '(#:tests? #f
4823 #:phases (modify-phases %standard-phases
4824 (delete 'build)
4825 (add-after 'patch-dependencies 'delete-dev-dependencies
4826 (lambda _
4827 (delete-dependencies '("@types/react" "babel-core"
4828 "babel-plugin-transform-class-properties"
4829 "babel-preset-env"
4830 "babel-preset-flow"
4831 "babel-preset-react"
4832 "babel-register"
4833 "flow-bin"
4834 "flow-copy-source"
4835 "husky"
4836 "jest"
4837 "jsdom"
4838 "lint-staged"
4839 "parcel-bundler"
4840 "prettier"
4841 "prop-types"
4842 "react"
4843 "react-dom"
4844 "react-test-renderer"
4845 "rollup"
4846 "rollup-plugin-babel"
4847 "typescript")))))))
4848 (inputs `(("node-create-react-context" ,node-create-react-context-0.1.6)
4849 ("node-react" ,node-react-16.14.0)))
4850 (home-page "https://github.com/thejameskyle/unstated#readme")
4851 (synopsis "State so simple, it goes without saying")
4852 (description "State so simple, it goes without saying")
4853 (license license:expat)))
4854
4855(define-public node-prosemirror-dev-tools-2.1.1
4856 (package
4857 (name "node-prosemirror-dev-tools")
4858 (version "2.1.1")
4859 (source (origin
4860 (method url-fetch)
4861 (uri
4862 "https://registry.npmjs.org/prosemirror-dev-tools/-/prosemirror-dev-tools-2.1.1.tgz")
4863 (sha256
4864 (base32
4865 "0m1cqzcwrmmgr01fpkkx17vz19wdm40w81dhbwl7nr5480c43rpk"))))
4866 (build-system node-build-system)
4867 (arguments
4868 '(#:tests? #f
4869 #:phases (modify-phases %standard-phases
4870 (delete 'build)
4871 (add-after 'patch-dependencies 'delete-dev-dependencies
4872 (lambda _
4873 (delete-dependencies '("aik" "babel-cli"
4874 "babel-core"
4875 "babel-loader"
4876 "babel-plugin-syntax-class-properties"
4877 "babel-plugin-transform-class-properties"
4878 "babel-preset-env"
4879 "babel-preset-react"
4880 "commitizen"
4881 "conventional-github-releaser"
4882 "cross-env"
4883 "cz-conventional-changelog"
4884 "eslint"
4885 "eslint-plugin-react"
4886 "lint-staged"
4887 "pmm"
4888 "pre-commit"
4889 "preact"
4890 "preact-compat"
4891 "prettier"
4892 "prosemirror-example-setup"
4893 "prosemirror-schema-basic"
4894 "prosemirror-view"
4895 "react"
4896 "react-dom"
4897 "rimraf"
4898 "webpack"
4899 "webpack-bundle-analyzer")))))))
4900 (inputs `(("node-unstated" ,node-unstated-2.1.1)
4901 ("node-react-json-tree" ,node-react-json-tree-0.11.2)
4902 ("node-react-emotion" ,node-react-emotion-9.2.12)
4903 ("node-react-dock" ,node-react-dock-0.2.4)
4904 ("node-prosemirror-state" ,node-prosemirror-state-1.4.3)
4905 ("node-prosemirror-model" ,node-prosemirror-model-1.19.2)
4906 ("node-prop-types" ,node-prop-types-15.8.1)
4907 ("node-jsondiffpatch" ,node-jsondiffpatch-0.3.11)
4908 ("node-ie-array-find-polyfill" ,node-ie-array-find-polyfill-1.1.0)
4909 ("node-html" ,node-html-1.0.0)
4910 ("node-es6-object-assign" ,node-es6-object-assign-1.1.0)
4911 ("node-emotion" ,node-emotion-9.2.12)
4912 ("node-react-dom" ,node-react-dom-18.2.0)
4913 ("node-react" ,node-react-18.2.0)))
4914 (home-page "https://github.com/d4rkr00t/prosemirror-dev-tools#readme")
4915 (synopsis "Dev Tools for ProseMirror")
4916 (description "Dev Tools for ProseMirror")
4917 (license license:expat)))
4918
4919(define-public node-prosemirror-dropcursor-1.8.1
4920 (package
4921 (name "node-prosemirror-dropcursor")
4922 (version "1.8.1")
4923 (source (origin
4924 (method url-fetch)
4925 (uri
4926 "https://registry.npmjs.org/prosemirror-dropcursor/-/prosemirror-dropcursor-1.8.1.tgz")
4927 (sha256
4928 (base32
4929 "1x6df2plh12m96f5r72p3dx5696px6xhiin70d8rwrbakp19kgc6"))))
4930 (build-system node-build-system)
4931 (arguments
4932 '(#:tests? #f
4933 #:phases (modify-phases %standard-phases
4934 (delete 'build)
4935 (add-after 'patch-dependencies 'delete-dev-dependencies
4936 (lambda _
4937 (delete-dependencies '("@prosemirror/buildhelper")))))))
4938 (inputs `(("node-prosemirror-transform" ,node-prosemirror-transform-1.7.3)
4939 ("node-prosemirror-view" ,node-prosemirror-view-1.31.4)
4940 ("node-prosemirror-state" ,node-prosemirror-state-1.4.3)))
4941 (home-page "https://github.com/prosemirror/prosemirror-dropcursor#readme")
4942 (synopsis "Drop cursor plugin for ProseMirror")
4943 (description "Drop cursor plugin for ProseMirror")
4944 (license license:expat)))
4945
4946(define-public node-w3c-keyname-2.2.8
4947 (package
4948 (name "node-w3c-keyname")
4949 (version "2.2.8")
4950 (source (origin
4951 (method url-fetch)
4952 (uri
4953 "https://registry.npmjs.org/w3c-keyname/-/w3c-keyname-2.2.8.tgz")
4954 (sha256
4955 (base32
4956 "0dmb5lq40grcaqnjkzsx3l7xcrhy74g1hhy88bc2s7vd0a219lh5"))))
4957 (build-system node-build-system)
4958 (arguments
4959 '(#:tests? #f
4960 #:modules
4961 ((guix build node-build-system)
4962 (srfi srfi-1)
4963 (ice-9 match)
4964 (guix build utils))
4965 #:phases (modify-phases %standard-phases
4966 (delete 'build)
4967(add-before 'configure 'avoid-prepare-scripts
4968 (lambda _
4969 ;; We need to remove the prepare script from "package.json", as
4970 ;; it would try to use the build environment and would block the
4971 ;; automatic building by other packages making use of node-acorn.
4972 ;; TODO: Add utility function
4973 (with-atomic-json-file-replacement "package.json"
4974 (match-lambda
4975 (('@ . pkg-meta-alist)
4976 (cons '@ (map (match-lambda
4977 (("scripts" @ . scripts-alist)
4978 `("scripts" @ ,@(filter (match-lambda
4979 (("prepare" . _)
4980 #f)
4981 (_
4982 #t))
4983 scripts-alist)))
4984 (other other))
4985 pkg-meta-alist)))))))
4986 (add-after 'patch-dependencies 'delete-dev-dependencies
4987 (lambda _
4988 (delete-dependencies '("rollup")))))))
4989 (home-page "https://github.com/marijnh/w3c-keyname#readme")
4990 (synopsis "Get a KeyboardEvent.key-style string from an event")
4991 (description "Get a KeyboardEvent.key-style string from an event")
4992 (license license:expat)))
4993
4994(define-public node-prosemirror-keymap-1.2.2
4995 (package
4996 (name "node-prosemirror-keymap")
4997 (version "1.2.2")
4998 (source (origin
4999 (method url-fetch)
5000 (uri
5001 "https://registry.npmjs.org/prosemirror-keymap/-/prosemirror-keymap-1.2.2.tgz")
5002 (sha256
5003 (base32
5004 "098q0ggwqsgv1ppfimld371yy1v5qffsmhc0b0zmyh7324s69dx1"))))
5005 (build-system node-build-system)
5006 (arguments
5007 '(#:tests? #f
5008 #:modules
5009 ((guix build node-build-system)
5010 (srfi srfi-1)
5011 (ice-9 match)
5012 (guix build utils))
5013 #:phases (modify-phases %standard-phases
5014 (delete 'build)
5015(add-before 'configure 'avoid-prepare-scripts
5016 (lambda _
5017 ;; We need to remove the prepare script from "package.json", as
5018 ;; it would try to use the build environment and would block the
5019 ;; automatic building by other packages making use of node-acorn.
5020 ;; TODO: Add utility function
5021 (with-atomic-json-file-replacement "package.json"
5022 (match-lambda
5023 (('@ . pkg-meta-alist)
5024 (cons '@ (map (match-lambda
5025 (("scripts" @ . scripts-alist)
5026 `("scripts" @ ,@(filter (match-lambda
5027 (("prepare" . _)
5028 #f)
5029 (_
5030 #t))
5031 scripts-alist)))
5032 (other other))
5033 pkg-meta-alist)))))))
5034 (add-after 'patch-dependencies 'delete-dev-dependencies
5035 (lambda _
5036 (delete-dependencies '("@prosemirror/buildhelper"
5037 "prosemirror-test-builder")))))))
5038 (inputs `(("node-prosemirror-state" ,node-prosemirror-state-1.4.3)
5039 ("node-w3c-keyname" ,node-w3c-keyname-2.2.8)))
5040 (home-page "https://github.com/prosemirror/prosemirror-keymap#readme")
5041 (synopsis "Keymap plugin for ProseMirror")
5042 (description "Keymap plugin for ProseMirror")
5043 (license license:expat)))
5044
5045(define-public node-prosemirror-gapcursor-1.3.2
5046 (package
5047 (name "node-prosemirror-gapcursor")
5048 (version "1.3.2")
5049 (source (origin
5050 (method url-fetch)
5051 (uri
5052 "https://registry.npmjs.org/prosemirror-gapcursor/-/prosemirror-gapcursor-1.3.2.tgz")
5053 (sha256
5054 (base32
5055 "0qj3d9s8yw8b0073gsnjzzw8qnw1ilsvsypkwinakyq1fqj3imhl"))))
5056 (build-system node-build-system)
5057 (arguments
5058 '(#:tests? #f
5059 #:phases (modify-phases %standard-phases
5060 (delete 'build)
5061 (add-after 'patch-dependencies 'delete-dev-dependencies
5062 (lambda _
5063 (delete-dependencies '("@prosemirror/buildhelper")))))))
5064 (inputs `(("node-prosemirror-view" ,node-prosemirror-view-1.31.4)
5065 ("node-prosemirror-state" ,node-prosemirror-state-1.4.3)
5066 ("node-prosemirror-model" ,node-prosemirror-model-1.19.2)
5067 ("node-prosemirror-keymap" ,node-prosemirror-keymap-1.2.2)))
5068 (home-page "https://github.com/prosemirror/prosemirror-gapcursor#readme")
5069 (synopsis
5070 "ProseMirror plugin for cursors at normally impossible-to-reach positions")
5071 (description
5072 "ProseMirror plugin for cursors at normally impossible-to-reach positions")
5073 (license license:expat)))
5074
5075(define-public node-rope-sequence-1.3.4
5076 (package
5077 (name "node-rope-sequence")
5078 (version "1.3.4")
5079 (source (origin
5080 (method url-fetch)
5081 (uri
5082 "https://registry.npmjs.org/rope-sequence/-/rope-sequence-1.3.4.tgz")
5083 (sha256
5084 (base32
5085 "0z063y557n638082cx5lmy7wv8ka5qbcm6x2cfdva8as5vh3wj1a"))))
5086 (build-system node-build-system)
5087 (arguments
5088 '(#:tests? #f
5089 #:modules
5090 ((guix build node-build-system)
5091 (srfi srfi-1)
5092 (ice-9 match)
5093 (guix build utils))
5094 #:phases (modify-phases %standard-phases
5095 (delete 'build)
5096 (add-before 'configure 'avoid-prepare-scripts
5097 (lambda _
5098 ;; We need to remove the prepare script from "package.json", as
5099 ;; it would try to use the build environment and would block the
5100 ;; automatic building by other packages making use of node-acorn.
5101 ;; TODO: Add utility function
5102 (with-atomic-json-file-replacement "package.json"
5103 (match-lambda
5104 (('@ . pkg-meta-alist)
5105 (cons '@ (map (match-lambda
5106 (("scripts" @ . scripts-alist)
5107 `("scripts" @ ,@(filter (match-lambda
5108 (("prepare" . _)
5109 #f)
5110 (_
5111 #t))
5112 scripts-alist)))
5113 (other other))
5114 pkg-meta-alist)))))))
5115 (add-after 'patch-dependencies 'delete-dev-dependencies
5116 (lambda _
5117 (delete-dependencies '("@rollup/plugin-buble" "rollup")))))))
5118 (home-page "https://github.com/marijnh/rope-sequence#readme")
5119 (synopsis "Rope-based persistent sequence type")
5120 (description "Rope-based persistent sequence type")
5121 (license license:expat)))
5122
5123(define-public node-prosemirror-history-1.3.2
5124 (package
5125 (name "node-prosemirror-history")
5126 (version "1.3.2")
5127 (source (origin
5128 (method url-fetch)
5129 (uri
5130 "https://registry.npmjs.org/prosemirror-history/-/prosemirror-history-1.3.2.tgz")
5131 (sha256
5132 (base32
5133 "12c1vlw01qgi4glwvrs49h12nf4774kqynp9j7yh9bkisnw0q6vq"))))
5134 (build-system node-build-system)
5135 (arguments
5136 '(#:tests? #f
5137 #:phases (modify-phases %standard-phases
5138 (delete 'build)
5139 (add-after 'patch-dependencies 'delete-dev-dependencies
5140 (lambda _
5141 (delete-dependencies '("@prosemirror/buildhelper"
5142 "prosemirror-test-builder")))))))
5143 (inputs `(("node-rope-sequence" ,node-rope-sequence-1.3.4)
5144 ("node-prosemirror-view" ,node-prosemirror-view-1.31.4)
5145 ("node-prosemirror-transform" ,node-prosemirror-transform-1.7.3)
5146 ("node-prosemirror-state" ,node-prosemirror-state-1.4.3)))
5147 (home-page "https://github.com/prosemirror/prosemirror-history#readme")
5148 (synopsis "Undo history for ProseMirror")
5149 (description "Undo history for ProseMirror")
5150 (license license:expat)))
5151
5152(define-public node-prosemirror-inputrules-1.2.1
5153 (package
5154 (name "node-prosemirror-inputrules")
5155 (version "1.2.1")
5156 (source (origin
5157 (method url-fetch)
5158 (uri
5159 "https://registry.npmjs.org/prosemirror-inputrules/-/prosemirror-inputrules-1.2.1.tgz")
5160 (sha256
5161 (base32
5162 "16mbl1dlcfgyh84ad34ffxs72ay5vzddjb2mapdnggv2n2q5h87k"))))
5163 (build-system node-build-system)
5164 (arguments
5165 '(#:tests? #f
5166 #:phases (modify-phases %standard-phases
5167 (delete 'build)
5168 (add-after 'patch-dependencies 'delete-dev-dependencies
5169 (lambda _
5170 (delete-dependencies '("@prosemirror/buildhelper")))))))
5171 (inputs `(("node-prosemirror-transform" ,node-prosemirror-transform-1.7.3)
5172 ("node-prosemirror-state" ,node-prosemirror-state-1.4.3)))
5173 (home-page "https://github.com/prosemirror/prosemirror-inputrules#readme")
5174 (synopsis "Automatic transforms on text input for ProseMirror")
5175 (description "Automatic transforms on text input for ProseMirror")
5176 (license license:expat)))
5177
5178
5179(define-public node-prosemirror-schema-list-1.3.0
5180 (package
5181 (name "node-prosemirror-schema-list")
5182 (version "1.3.0")
5183 (source (origin
5184 (method url-fetch)
5185 (uri
5186 "https://registry.npmjs.org/prosemirror-schema-list/-/prosemirror-schema-list-1.3.0.tgz")
5187 (sha256
5188 (base32
5189 "0ihv76fffw1nilvvpl61zm9i1k1fw84zrygc2xzpv7ifw83njvs2"))))
5190 (build-system node-build-system)
5191 (arguments
5192 '(#:tests? #f
5193 #:phases (modify-phases %standard-phases
5194 (delete 'build)
5195 (add-after 'patch-dependencies 'delete-dev-dependencies
5196 (lambda _
5197 (delete-dependencies '("prosemirror-state"
5198 "@prosemirror/buildhelper"
5199 "prosemirror-test-builder")))))))
5200 (inputs `(("node-prosemirror-state" ,node-prosemirror-state-1.4.3)
5201 ("node-prosemirror-transform" ,node-prosemirror-transform-1.7.3)
5202 ("node-prosemirror-model" ,node-prosemirror-model-1.19.2)))
5203 (home-page "https://github.com/prosemirror/prosemirror-schema-list#readme")
5204 (synopsis "List-related schema elements and commands for ProseMirror")
5205 (description "List-related schema elements and commands for ProseMirror")
5206 (license license:expat)))
5207
5208(define-public node-prosemirror-tables-1.3.2
5209 (package
5210 (name "node-prosemirror-tables")
5211 (version "1.3.2")
5212 (source (origin
5213 (method url-fetch)
5214 (uri
5215 "https://registry.npmjs.org/prosemirror-tables/-/prosemirror-tables-1.3.2.tgz")
5216 (sha256
5217 (base32
5218 "1vllpzrclnyq7wcykxfc661rlvzlixa6i69kx0n99p5446l9jvby"))))
5219 (build-system node-build-system)
5220 (arguments
5221 '(#:tests? #f
5222 #:phases (modify-phases %standard-phases
5223 (delete 'build)
5224 (add-after 'patch-dependencies 'delete-dev-dependencies
5225 (lambda _
5226 (delete-dependencies '("@typescript-eslint/eslint-plugin"
5227 "@typescript-eslint/parser"
5228 "builddocs"
5229 "eslint"
5230 "eslint-plugin-jest"
5231 "ist"
5232 "prettier"
5233 "prosemirror-commands"
5234 "prosemirror-example-setup"
5235 "prosemirror-menu"
5236 "prosemirror-schema-basic"
5237 "prosemirror-test-builder"
5238 "tsup"
5239 "typescript"
5240 "vite"
5241 "vitest")))))))
5242 (inputs `(("node-prosemirror-view" ,node-prosemirror-view-1.31.4)
5243 ("node-prosemirror-transform" ,node-prosemirror-transform-1.7.3)
5244 ("node-prosemirror-state" ,node-prosemirror-state-1.4.3)
5245 ("node-prosemirror-model" ,node-prosemirror-model-1.19.2)
5246 ("node-prosemirror-keymap" ,node-prosemirror-keymap-1.2.2)))
5247 (home-page "https://www.npmjs.com/package/node-prosemirror-tables")
5248 (synopsis "ProseMirror's rowspan/colspan tables component")
5249 (description "ProseMirror's rowspan/colspan tables component")
5250 (license license:expat)))
5251
5252(define-public node-prosemirror-tables-0.9.5
5253 (package
5254 (name "node-prosemirror-tables")
5255 (version "0.9.5")
5256 (source (origin
5257 (method url-fetch)
5258 (uri
5259 "https://registry.npmjs.org/prosemirror-tables/-/prosemirror-tables-0.9.5.tgz")
5260 (sha256
5261 (base32
5262 "0nh4jc4yk67znnnv50i3rj9mf7fiv9g8isjnss7a2hxkgkvidrss"))))
5263 (build-system node-build-system)
5264 (arguments
5265 '(#:tests? #f
5266 #:phases (modify-phases %standard-phases
5267 (delete 'build)
5268 (add-after 'patch-dependencies 'delete-dev-dependencies
5269 (lambda _
5270 (delete-dependencies '("@types/prosemirror-model"
5271 "@types/prosemirror-state"
5272 "builddocs"
5273 "ist"
5274 "mocha"
5275 "prosemirror-commands"
5276 "prosemirror-example-setup"
5277 "prosemirror-menu"
5278 "prosemirror-schema-basic"
5279 "prosemirror-test-builder"
5280 "rollup"
5281 "rollup-plugin-buble"
5282 "rollup-plugin-commonjs"
5283 "rollup-plugin-node-resolve"
5284 "typescript"
5285 "typings-tester")))))))
5286 (inputs `(("node-prosemirror-view" ,node-prosemirror-view-1.31.4)
5287 ("node-prosemirror-transform" ,node-prosemirror-transform-1.7.3)
5288 ("node-prosemirror-state" ,node-prosemirror-state-1.4.3)
5289 ("node-prosemirror-model" ,node-prosemirror-model-1.19.2)
5290 ("node-prosemirror-keymap" ,node-prosemirror-keymap-1.2.2)))
5291 (home-page "https://github.com/prosemirror/prosemirror-tables#readme")
5292 (synopsis "ProseMirror's rowspan/colspan tables component")
5293 (description "ProseMirror's rowspan/colspan tables component")
5294 (license license:expat)))
5295
5296(define-public node-prosemirror-utils-0.9.6
5297 (package
5298 (name "node-prosemirror-utils")
5299 (version "0.9.6")
5300 (source (origin
5301 (method url-fetch)
5302 (uri
5303 "https://registry.npmjs.org/prosemirror-utils/-/prosemirror-utils-0.9.6.tgz")
5304 (sha256
5305 (base32
5306 "095p3n1ak3j3lvmdymyp92sw4w3arkig4n55cnbdf5ara017cnj2"))))
5307 (build-system node-build-system)
5308 (arguments
5309 '(#:tests? #f
5310 #:phases (modify-phases %standard-phases
5311 (delete 'build)
5312 (add-after 'patch-dependencies 'delete-dev-dependencies
5313 (lambda _
5314 (delete-dependencies '("babel-core" "babel-jest"
5315 "babel-preset-env"
5316 "builddocs"
5317 "codecov"
5318 "husky"
5319 "jest"
5320 "jest-diff"
5321 "lint-staged"
5322 "prettier"
5323 "prosemirror-model"
5324 "prosemirror-schema-basic"
5325 "prosemirror-state"
5326 "prosemirror-tables"
5327 "prosemirror-test-builder"
5328 "prosemirror-view"
5329 "rollup"
5330 "rollup-plugin-babel")))))))
5331 (home-page "https://github.com/atlassian/prosemirror-utils#readme")
5332 (synopsis "Utils library for ProseMirror")
5333 (description "Utils library for ProseMirror")
5334 (license license:asl2.0)))
5335
5336(define-public node-react-17.0.2
5337 (package
5338 (name "node-react")
5339 (version "17.0.2")
5340 (source (origin
5341 (method url-fetch)
5342 (uri "https://registry.npmjs.org/react/-/react-17.0.2.tgz")
5343 (sha256
5344 (base32
5345 "0vf6dmm139yjjnrdpx3fnsknbbgyr9xzrlajz6z6k96mgxvir472"))))
5346 (build-system node-build-system)
5347 (arguments
5348 '(#:tests? #f
5349 #:phases (modify-phases %standard-phases
5350 (delete 'build))))
5351 (inputs `(("node-object-assign" ,node-object-assign-4.1.1)
5352 ("node-loose-envify" ,node-loose-envify-1.4.0)))
5353 (home-page "https://reactjs.org/")
5354 (synopsis "React is a JavaScript library for building user interfaces.")
5355 (description "React is a JavaScript library for building user interfaces.")
5356 (license license:expat)))
5357
5358(define-public node-js-tokens-4.0.0
5359 (package
5360 (name "node-js-tokens")
5361 (version "4.0.0")
5362 (source (origin
5363 (method url-fetch)
5364 (uri
5365 "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz")
5366 (sha256
5367 (base32
5368 "0lrw3qvcfmxrwwi7p7ng4r17yw32ki7jpnbj2a65ddddv2icg16q"))))
5369 (build-system node-build-system)
5370 (arguments
5371 '(#:tests? #f
5372 #:phases (modify-phases %standard-phases
5373 (delete 'build)
5374 (add-after 'patch-dependencies 'delete-dev-dependencies
5375 (lambda _
5376 (delete-dependencies '("coffeescript" "esprima"
5377 "everything.js" "mocha")))))))
5378 (home-page "https://github.com/lydell/js-tokens#readme")
5379 (synopsis "A regex that tokenizes JavaScript.")
5380 (description "A regex that tokenizes JavaScript.")
5381 (license license:expat)))
5382
5383(define-public node-scheduler-0.20.2
5384 (package
5385 (name "node-scheduler")
5386 (version "0.20.2")
5387 (source (origin
5388 (method url-fetch)
5389 (uri
5390 "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz")
5391 (sha256
5392 (base32
5393 "1ihlq27pq5m19g5h389c0vk7dm98d8jw7n4w42xl2pikpl7zpnpg"))))
5394 (build-system node-build-system)
5395 (arguments
5396 '(#:tests? #f
5397 #:phases (modify-phases %standard-phases
5398 (delete 'build))))
5399 (inputs `(("node-object-assign" ,node-object-assign-4.1.1)
5400 ("node-loose-envify" ,node-loose-envify-1.4.0)))
5401 (home-page "https://reactjs.org/")
5402 (synopsis "Cooperative scheduler for the browser environment.")
5403 (description "Cooperative scheduler for the browser environment.")
5404 (license license:expat)))
5405
5406(define-public node-react-dom-17.0.2
5407 (package
5408 (name "node-react-dom")
5409 (version "17.0.2")
5410 (source (origin
5411 (method url-fetch)
5412 (uri
5413 "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz")
5414 (sha256
5415 (base32
5416 "165ssvkqf443rfqjd8c7hj5fb9y5z99mn8q1prpyf994dh3lvimy"))))
5417 (build-system node-build-system)
5418 (arguments
5419 '(#:tests? #f
5420 #:phases (modify-phases %standard-phases
5421 (delete 'build)
5422 (add-after 'patch-dependencies 'delete-dev-dependencies
5423 (lambda _
5424 (delete-dependencies '("react")))))))
5425 (inputs `(("node-scheduler" ,node-scheduler-0.20.2)
5426 ("node-object-assign" ,node-object-assign-4.1.1)
5427 ("node-loose-envify" ,node-loose-envify-1.4.0)
5428 ("node-react" ,node-react-17.0.2)))
5429 (home-page "https://reactjs.org/")
5430 (synopsis "React package for working with the DOM.")
5431 (description "React package for working with the DOM.")
5432 (license license:expat)))
5433
5434(define-public node-react-18.2.0
5435 (package
5436 (name "node-react")
5437 (version "18.2.0")
5438 (source (origin
5439 (method url-fetch)
5440 (uri "https://registry.npmjs.org/react/-/react-18.2.0.tgz")
5441 (sha256
5442 (base32
5443 "0z19cq1ywbhsj2py4jgz27yl38dbzhfnyvvs5gj605wixk5gfld1"))))
5444 (build-system node-build-system)
5445 (arguments
5446 '(#:tests? #f
5447 #:phases (modify-phases %standard-phases
5448 (delete 'build))))
5449 (inputs `(("node-loose-envify" ,node-loose-envify-1.4.0)))
5450 (home-page "https://reactjs.org/")
5451 (synopsis "React is a JavaScript library for building user interfaces.")
5452 (description "React is a JavaScript library for building user interfaces.")
5453 (license license:expat)))
5454
5455(define-public node-loose-envify-1.4.0
5456 (package
5457 (name "node-loose-envify")
5458 (version "1.4.0")
5459 (source (origin
5460 (method url-fetch)
5461 (uri
5462 "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz")
5463 (sha256
5464 (base32
5465 "1p5b3ca0b2jkxalyg7h9bss6aspa8plkh0ak1mrlz2jkjc58660j"))))
5466 (build-system node-build-system)
5467 (arguments
5468 '(#:tests? #f
5469 #:phases (modify-phases %standard-phases
5470 (delete 'build)
5471 (add-after 'patch-dependencies 'delete-dev-dependencies
5472 (lambda _
5473 (delete-dependencies '("browserify" "envify" "tap")))))))
5474 (inputs `(("node-js-tokens" ,node-js-tokens-4.0.0)))
5475 (home-page "https://github.com/zertosh/loose-envify")
5476 (synopsis
5477 "Fast (and loose) selective `process.env` replacer using js-tokens instead of an AST")
5478 (description
5479 "Fast (and loose) selective `process.env` replacer using js-tokens instead of an AST")
5480 (license license:expat)))
5481
5482(define-public node-scheduler-0.23.0
5483 (package
5484 (name "node-scheduler")
5485 (version "0.23.0")
5486 (source (origin
5487 (method url-fetch)
5488 (uri
5489 "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz")
5490 (sha256
5491 (base32
5492 "17wi8ln2hcgpfab5c92hzissf25lm0zv1waw7hfpdpsj6q4dq32g"))))
5493 (build-system node-build-system)
5494 (arguments
5495 '(#:tests? #f
5496 #:phases (modify-phases %standard-phases
5497 (delete 'build))))
5498 (inputs `(("node-loose-envify" ,node-loose-envify-1.4.0)))
5499 (home-page "https://reactjs.org/")
5500 (synopsis "Cooperative scheduler for the browser environment.")
5501 (description "Cooperative scheduler for the browser environment.")
5502 (license license:expat)))
5503
5504(define-public node-react-dom-18.2.0
5505 (package
5506 (name "node-react-dom")
5507 (version "18.2.0")
5508 (source (origin
5509 (method url-fetch)
5510 (uri
5511 "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz")
5512 (sha256
5513 (base32
5514 "1vz263mx0vpykp53v04s7m6krimkqy2jlwzkh73n1y4ins31x9r0"))))
5515 (build-system node-build-system)
5516 (arguments
5517 '(#:tests? #f
5518 #:phases (modify-phases %standard-phases
5519 (delete 'build)
5520 (add-after 'patch-dependencies 'delete-dev-dependencies
5521 (lambda _
5522 (delete-dependencies '("react")))))))
5523 (inputs `(("node-scheduler" ,node-scheduler-0.23.0)
5524 ("node-loose-envify" ,node-loose-envify-1.4.0)
5525 ("node-react" ,node-react-18.2.0)))
5526 (home-page "https://reactjs.org/")
5527 (synopsis "React package for working with the DOM.")
5528 (description "React package for working with the DOM.")
5529 (license license:expat)))
5530
5531(define-public node-regenerator-runtime-0.13.11
5532 (package
5533 (name "node-regenerator-runtime")
5534 (version "0.13.11")
5535 (source (origin
5536 (method url-fetch)
5537 (uri
5538 "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz")
5539 (sha256
5540 (base32
5541 "131b9kq9m176s787asppci2kihmpvmhdqxfp2zbjqgdqrr4si84n"))))
5542 (build-system node-build-system)
5543 (arguments
5544 '(#:tests? #f
5545 #:phases (modify-phases %standard-phases
5546 (delete 'build))))
5547 (home-page "https://github.com/facebook/regenerator/tree/main#readme")
5548 (synopsis
5549 "Runtime for Regenerator-compiled generator and async functions.")
5550 (description
5551 "Runtime for Regenerator-compiled generator and async functions.")
5552 (license license:expat)))
5553
5554(define-public node-babel-runtime-7.22.5
5555 (package
5556 (name "node-babel-runtime")
5557 (version "7.22.5")
5558 (source (origin
5559 (method url-fetch)
5560 (uri
5561 "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.5.tgz")
5562 (sha256
5563 (base32
5564 "0d5bm0wcvz1s44xj051p9xsq2s6cfdgsm441a0frcnyxrqzbpilg"))))
5565 (build-system node-build-system)
5566 (arguments
5567 '(#:tests? #f
5568 #:phases (modify-phases %standard-phases
5569 (delete 'build))))
5570 (inputs `(("node-regenerator-runtime" ,node-regenerator-runtime-0.13.11)))
5571 (home-page "https://babel.dev/docs/en/next/babel-runtime")
5572 (synopsis "babel's modular runtime helpers")
5573 (description "babel's modular runtime helpers")
5574 (license license:expat)))
5575
5576(define-public node-memoize-one-5.2.1
5577 (package
5578 (name "node-memoize-one")
5579 (version "5.2.1")
5580 (source (origin
5581 (method url-fetch)
5582 (uri
5583 "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz")
5584 (sha256
5585 (base32
5586 "1rd5c7c5mmgqjppj9r5hhn2xgkc9bqpi6ihzgxzg261963chiwig"))))
5587 (build-system node-build-system)
5588 (arguments
5589 '(#:tests? #f
5590 #:phases (modify-phases %standard-phases
5591 (delete 'build)
5592 (add-after 'patch-dependencies 'delete-dev-dependencies
5593 (lambda _
5594 (delete-dependencies '("@size-limit/preset-small-lib"
5595 "@types/jest"
5596 "@types/lodash.isequal"
5597 "@typescript-eslint/eslint-plugin"
5598 "@typescript-eslint/parser"
5599 "benchmark"
5600 "cross-env"
5601 "eslint"
5602 "eslint-config-prettier"
5603 "eslint-plugin-jest"
5604 "eslint-plugin-prettier"
5605 "jest"
5606 "lodash.isequal"
5607 "prettier"
5608 "rimraf"
5609 "rollup"
5610 "rollup-plugin-replace"
5611 "rollup-plugin-terser"
5612 "rollup-plugin-typescript"
5613 "size-limit"
5614 "ts-jest"
5615 "ts-node"
5616 "tslib"
5617 "typescript")))))))
5618 (home-page "https://github.com/alexreardon/memoize-one#readme")
5619 (synopsis
5620 "A memoization library which only remembers the latest invocation")
5621 (description
5622 "A memoization library which only remembers the latest invocation")
5623 (license license:expat)))
5624
5625(define-public node-react-window-1.8.9
5626 (package
5627 (name "node-react-window")
5628 (version "1.8.9")
5629 (source (origin
5630 (method url-fetch)
5631 (uri
5632 "https://registry.npmjs.org/react-window/-/react-window-1.8.9.tgz")
5633 (sha256
5634 (base32
5635 "1n30n24qp7yili81rrr66n37qz9ai2d59072gcdd47pz818m67j9"))))
5636 (build-system node-build-system)
5637 (arguments
5638 '(#:tests? #f
5639 #:phases (modify-phases %standard-phases
5640 (delete 'build)
5641 (add-after 'patch-dependencies 'delete-dev-dependencies
5642 (lambda _
5643 (delete-dependencies '("@babel/core"
5644 "@babel/plugin-proposal-class-properties"
5645 "@babel/plugin-transform-runtime"
5646 "@babel/preset-env"
5647 "@babel/preset-flow"
5648 "babel-core"
5649 "babel-eslint"
5650 "babel-plugin-annotate-pure-calls"
5651 "cross-env"
5652 "del-cli"
5653 "eslint"
5654 "eslint-config-prettier"
5655 "eslint-config-react-app"
5656 "eslint-config-standard"
5657 "eslint-config-standard-react"
5658 "eslint-plugin-flowtype"
5659 "eslint-plugin-import"
5660 "eslint-plugin-jsx-a11y"
5661 "eslint-plugin-node"
5662 "eslint-plugin-prettier"
5663 "eslint-plugin-promise"
5664 "eslint-plugin-react"
5665 "eslint-plugin-standard"
5666 "flow-bin"
5667 "gh-pages"
5668 "lint-staged"
5669 "prettier"
5670 "react"
5671 "react-dom"
5672 "react-is"
5673 "react-scripts"
5674 "react-test-renderer"
5675 "rollup"
5676 "rollup-plugin-babel"
5677 "rollup-plugin-commonjs"
5678 "rollup-plugin-node-resolve"
5679 "rollup-plugin-replace"
5680 "rollup-plugin-terser")))))))
5681 (inputs `(("node-memoize-one" ,node-memoize-one-5.2.1)
5682 ("node-babel-runtime" ,node-babel-runtime-7.22.5)
5683 ("node-react-dom" ,node-react-dom-18.2.0)
5684 ("node-react" ,node-react-18.2.0)))
5685 (home-page "http://react-window.now.sh/")
5686 (synopsis
5687 "React components for efficiently rendering large, scrollable lists and tabular data")
5688 (description
5689 "React components for efficiently rendering large, scrollable lists and tabular data")
5690 (license license:expat)))
5691
5692(define-public node-textlint-ast-node-types-4.4.3
5693 (package
5694 (name "node-textlint-ast-node-types")
5695 (version "4.4.3")
5696 (source (origin
5697 (method url-fetch)
5698 (uri
5699 "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-4.4.3.tgz")
5700 (sha256
5701 (base32
5702 "01p6fxgr329vskhz4rcg4h2dba817y8x768hrl4vmb2cf790jqbv"))))
5703 (build-system node-build-system)
5704 (arguments
5705 '(#:tests? #f
5706 #:phases (modify-phases %standard-phases
5707 (delete 'build)
5708 (add-after 'patch-dependencies 'delete-dev-dependencies
5709 (lambda _
5710 (delete-dependencies '("cross-env" "mocha" "rimraf"
5711 "ts-node" "ts-node-test-register"
5712 "typescript")))))))
5713 (home-page "https://github.com/textlint/textlint#readme")
5714 (synopsis "textlint AST node type definition.")
5715 (description "textlint AST node type definition.")
5716 (license license:expat)))
5717
5718(define-public node-buffer-from-1.1.2
5719 (package
5720 (name "node-buffer-from")
5721 (version "1.1.2")
5722 (source (origin
5723 (method url-fetch)
5724 (uri
5725 "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz")
5726 (sha256
5727 (base32
5728 "0hz3cbll0m805g22c5pnwdgpi1xavmrp5q1734x4d3yakvah6aww"))))
5729 (build-system node-build-system)
5730 (arguments
5731 '(#:tests? #f
5732 #:phases (modify-phases %standard-phases
5733 (delete 'build)
5734 (add-after 'patch-dependencies 'delete-dev-dependencies
5735 (lambda _
5736 (delete-dependencies '("standard")))))))
5737 (home-page "https://github.com/LinusU/buffer-from#readme")
5738 (synopsis
5739 "A [ponyfill](https://ponyfill.com) for `Buffer.from`, uses native implementation if available.")
5740 (description
5741 "A [ponyfill](https://ponyfill.com) for `Buffer.from`, uses native implementation if available.")
5742 (license license:expat)))
5743
5744(define-public node-typedarray-0.0.6
5745 (package
5746 (name "node-typedarray")
5747 (version "0.0.6")
5748 (source (origin
5749 (method url-fetch)
5750 (uri
5751 "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz")
5752 (sha256
5753 (base32
5754 "022101ap05mryhpyw33phwyamk1i139qqpn2rs2lq72qm5slnciz"))))
5755 (build-system node-build-system)
5756 (arguments
5757 '(#:tests? #f
5758 #:phases (modify-phases %standard-phases
5759 (delete 'build)
5760 (add-after 'patch-dependencies 'delete-dev-dependencies
5761 (lambda _
5762 (delete-dependencies '("tape")))))))
5763 (home-page "https://github.com/substack/typedarray")
5764 (synopsis "TypedArray polyfill for old browsers")
5765 (description "TypedArray polyfill for old browsers")
5766 (license license:expat)))
5767
5768(define-public node-concat-stream-2.0.0
5769 (package
5770 (name "node-concat-stream")
5771 (version "2.0.0")
5772 (source (origin
5773 (method url-fetch)
5774 (uri
5775 "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz")
5776 (sha256
5777 (base32
5778 "030m3v08q6mfh4vsdv5jc4w5c4q09il5lgw6mhaij8p0gix9jm6c"))))
5779 (build-system node-build-system)
5780 (arguments
5781 '(#:tests? #f
5782 #:phases (modify-phases %standard-phases
5783 (delete 'build)
5784 (add-after 'patch-dependencies 'delete-dev-dependencies
5785 (lambda _
5786 (delete-dependencies '("tape")))))))
5787 (inputs `(("node-typedarray" ,node-typedarray-0.0.6)
5788 ("node-readable-stream" ,node-readable-stream-3.6.2)
5789 ("node-inherits" ,node-inherits-2.0.4)
5790 ("node-buffer-from" ,node-buffer-from-1.1.2)))
5791 (home-page "https://github.com/maxogden/concat-stream#readme")
5792 (synopsis
5793 "writable stream that concatenates strings or binary data and calls a callback with the result")
5794 (description
5795 "writable stream that concatenates strings or binary data and calls a callback with the result")
5796 (license license:expat)))
5797
5798(define-public node-object-values-0.1.2
5799 (package
5800 (name "node-object-values")
5801 (version "0.1.2")
5802 (source (origin
5803 (method url-fetch)
5804 (uri
5805 "https://registry.npmjs.org/object_values/-/object_values-0.1.2.tgz")
5806 (sha256
5807 (base32
5808 "0sck8v3vx0qs0gyniwa9brk67i6fjnd926av2i4zhabav5cnzsmw"))))
5809 (build-system node-build-system)
5810 (arguments
5811 '(#:tests? #f
5812 #:phases (modify-phases %standard-phases
5813 (delete 'build))))
5814 (home-page "https://github.com/KhaledElAnsari/Object.values#readme")
5815 (synopsis "polyfill for es8 Object.values")
5816 (description "polyfill for es8 Object.values")
5817 (license license:expat)))
5818
5819(define-public node-boundary-1.0.1
5820 (package
5821 (name "node-boundary")
5822 (version "1.0.1")
5823 (source (origin
5824 (method url-fetch)
5825 (uri "https://registry.npmjs.org/boundary/-/boundary-1.0.1.tgz")
5826 (sha256
5827 (base32
5828 "0wv8vbfv73yywd7s4slzhbfc7bvxm5kqbw96yf3df5sv5l9yfmmc"))))
5829 (build-system node-build-system)
5830 (arguments
5831 '(#:tests? #f
5832 #:phases (modify-phases %standard-phases
5833 (delete 'build)
5834 (add-after 'patch-dependencies 'delete-dev-dependencies
5835 (lambda _
5836 (delete-dependencies '("gulp" "gulp-6to5"
5837 "gulp-bump"
5838 "gulp-espower"
5839 "gulp-filter"
5840 "gulp-git"
5841 "gulp-mocha"
5842 "gulp-sourcemaps"
5843 "gulp-tag-version"
5844 "power-assert")))))))
5845 (home-page "https://github.com/Constellation/boundary")
5846 (synopsis "Provides boundary functions, (upper-bound and lower-bound).")
5847 (description "Provides boundary functions, (upper-bound and lower-bound).")
5848 (license #f)))
5849
5850(define-public node-structured-source-3.0.2
5851 (package
5852 (name "node-structured-source")
5853 (version "3.0.2")
5854 (source (origin
5855 (method url-fetch)
5856 (uri
5857 "https://registry.npmjs.org/structured-source/-/structured-source-3.0.2.tgz")
5858 (sha256
5859 (base32
5860 "1m6kmhbdccff9gcg355cbclbi2nhhqmh1ahacwa1wgfzawg3vplr"))))
5861 (build-system node-build-system)
5862 (arguments
5863 '(#:tests? #f
5864 #:phases (modify-phases %standard-phases
5865 (delete 'build)
5866 (add-after 'patch-dependencies 'delete-dev-dependencies
5867 (lambda _
5868 (delete-dependencies '("gulp" "gulp-6to5"
5869 "gulp-bump"
5870 "gulp-espower"
5871 "gulp-filter"
5872 "gulp-git"
5873 "gulp-mocha"
5874 "gulp-sourcemaps"
5875 "gulp-tag-version"
5876 "power-assert")))))))
5877 (inputs `(("node-boundary" ,node-boundary-1.0.1)))
5878 (home-page "https://github.com/Constellation/structured-source")
5879 (synopsis
5880 "Provides StructuredSource and functionality for converting range and loc vice versa.")
5881 (description
5882 "Provides StructuredSource and functionality for converting range and loc vice versa.")
5883 (license #f)))
5884
5885(define-public node-sentence-splitter-3.2.3
5886 (package
5887 (name "node-sentence-splitter")
5888 (version "3.2.3")
5889 (source (origin
5890 (method url-fetch)
5891 (uri
5892 "https://registry.npmjs.org/sentence-splitter/-/sentence-splitter-3.2.3.tgz")
5893 (sha256
5894 (base32
5895 "1cxn5sggc4y9ildpr778gxkpfn6m2vhfr9836di9gqwppasxdi4f"))))
5896 (build-system node-build-system)
5897 (arguments
5898 '(#:tests? #f
5899 #:phases (modify-phases %standard-phases
5900 (delete 'build)
5901 (add-after 'patch-dependencies 'delete-dev-dependencies
5902 (lambda _
5903 (delete-dependencies '("@parcel/transformer-typescript-tsc"
5904 "@snowpack/plugin-typescript"
5905 "@textlint/markdown-to-ast"
5906 "@types/mocha"
5907 "@types/node"
5908 "@types/structured-source"
5909 "husky"
5910 "lint-staged"
5911 "mocha"
5912 "power-assert"
5913 "prettier"
5914 "ts-node"
5915 "ts-node-test-register"
5916 "typescript"
5917 "vite")))))))
5918 (inputs `(("node-structured-source" ,node-structured-source-3.0.2)
5919 ("node-object-values" ,node-object-values-0.1.2)
5920 ("node-concat-stream" ,node-concat-stream-2.0.0)
5921 ("node-textlint-ast-node-types" ,node-textlint-ast-node-types-4.4.3)))
5922 (home-page "https://github.com/azu/sentence-splitter")
5923 (synopsis "split {japanese, english} text into sentences.")
5924 (description "split {japanese, english} text into sentences.")
5925 (license license:expat)))
5926
5927(define-public node-thenby-1.3.4
5928 (package
5929 (name "node-thenby")
5930 (version "1.3.4")
5931 (source (origin
5932 (method url-fetch)
5933 (uri "https://registry.npmjs.org/thenby/-/thenby-1.3.4.tgz")
5934 (sha256
5935 (base32
5936 "0n4gw01z6snr70gcssazh0ll0g21wmplykdfvd5n8vinnnsp616p"))))
5937 (build-system node-build-system)
5938 (arguments
5939 '(#:tests? #f
5940 #:phases (modify-phases %standard-phases
5941 (delete 'build)
5942 (add-after 'patch-dependencies 'delete-dev-dependencies
5943 (lambda _
5944 (delete-dependencies '("chai" "gulp"
5945 "gulp-insert"
5946 "gulp-mocha"
5947 "gulp-rename"
5948 "gulp-replace"
5949 "gulp-uglify"
5950 "gulp-umd"
5951 "performance-now")))))))
5952 (home-page "https://github.com/Teun/thenBy.js")
5953 (synopsis
5954 "Micro library for sorting arrays using the firstBy().thenBy().thenBy() syntax")
5955 (description
5956 "Micro library for sorting arrays using the firstBy().thenBy().thenBy() syntax")
5957 (license license:asl2.0)))
5958
5959(define-public node-tlite-0.1.9
5960 (package
5961 (name "node-tlite")
5962 (version "0.1.9")
5963 (source (origin
5964 (method url-fetch)
5965 (uri "https://registry.npmjs.org/tlite/-/tlite-0.1.9.tgz")
5966 (sha256
5967 (base32
5968 "1n84qafxyf1ph6d74mc2c51pncj9rz8h7ijknqbnfsjxs77svzl3"))))
5969 (build-system node-build-system)
5970 (arguments
5971 '(#:tests? #f
5972 #:phases (modify-phases %standard-phases
5973 (delete 'build)
5974 (add-after 'patch-dependencies 'delete-dev-dependencies
5975 (lambda _
5976 (delete-dependencies '("jasmine-node" "uglify-js")))))))
5977 (home-page "https://github.com/chrisdavies/tlite")
5978 (synopsis "Tiny tooltip utility")
5979 (description "Tiny tooltip utility")
5980 (license license:expat)))
5981
5982(define-public node-color-name-1.1.4
5983 (package
5984 (name "node-color-name")
5985 (version "1.1.4")
5986 (source (origin
5987 (method url-fetch)
5988 (uri
5989 "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz")
5990 (sha256
5991 (base32
5992 "020p7x7k8rlph38lhsqpqvkx0b70lzlmk6mgal9r9sz8c527qysh"))))
5993 (build-system node-build-system)
5994 (arguments
5995 '(#:tests? #f
5996 #:phases (modify-phases %standard-phases
5997 (delete 'build))))
5998 (home-page "https://github.com/colorjs/color-name")
5999 (synopsis "A list of color names and its values")
6000 (description "A list of color names and its values")
6001 (license license:expat)))
6002
6003(define-public node-color-convert-2.0.1
6004 (package
6005 (name "node-color-convert")
6006 (version "2.0.1")
6007 (source (origin
6008 (method url-fetch)
6009 (uri
6010 "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz")
6011 (sha256
6012 (base32
6013 "1qbw9rwfzcp7y0cpa8gmwlj7ccycf9pwn15zvf2s06f070ss83wj"))))
6014 (build-system node-build-system)
6015 (arguments
6016 '(#:tests? #f
6017 #:phases (modify-phases %standard-phases
6018 (delete 'build)
6019 (add-after 'patch-dependencies 'delete-dev-dependencies
6020 (lambda _
6021 (delete-dependencies '("chalk" "xo")))))))
6022 (inputs `(("node-color-name" ,node-color-name-1.1.4)))
6023 (home-page "https://github.com/Qix-/color-convert#readme")
6024 (synopsis "Plain color conversion functions")
6025 (description "Plain color conversion functions")
6026 (license license:expat)))
6027
6028(define-public node-ansi-styles-4.3.0
6029 (package
6030 (name "node-ansi-styles")
6031 (version "4.3.0")
6032 (source (origin
6033 (method url-fetch)
6034 (uri
6035 "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz")
6036 (sha256
6037 (base32
6038 "0zwqsx67hr7m4a8dpd0jzkp2rjm5v7938x4rhcqh7djsv139llrc"))))
6039 (build-system node-build-system)
6040 (arguments
6041 '(#:tests? #f
6042 #:phases (modify-phases %standard-phases
6043 (delete 'build)
6044 (add-after 'patch-dependencies 'delete-dev-dependencies
6045 (lambda _
6046 (delete-dependencies '("@types/color-convert" "ava"
6047 "svg-term-cli" "tsd" "xo")))))))
6048 (inputs `(("node-color-convert" ,node-color-convert-2.0.1)))
6049 (home-page "https://github.com/chalk/ansi-styles#readme")
6050 (synopsis "ANSI escape codes for styling strings in the terminal")
6051 (description "ANSI escape codes for styling strings in the terminal")
6052 (license license:expat)))
6053
6054(define-public node-wrap-ansi-7.0.0
6055 (package
6056 (name "node-wrap-ansi")
6057 (version "7.0.0")
6058 (source (origin
6059 (method url-fetch)
6060 (uri
6061 "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz")
6062 (sha256
6063 (base32
6064 "0bx4bkwfli34343rl97qy5pdg3zmskinsf8mlkv3isfj1d8v7587"))))
6065 (build-system node-build-system)
6066 (arguments
6067 '(#:tests? #f
6068 #:phases (modify-phases %standard-phases
6069 (delete 'build)
6070 (add-after 'patch-dependencies 'delete-dev-dependencies
6071 (lambda _
6072 (delete-dependencies '("ava" "chalk" "coveralls"
6073 "has-ansi" "nyc" "xo")))))))
6074 (inputs `(("node-strip-ansi" ,node-strip-ansi-6.0.1)
6075 ("node-string-width" ,node-string-width-4.2.3)
6076 ("node-ansi-styles" ,node-ansi-styles-4.3.0)))
6077 (home-page "https://github.com/chalk/wrap-ansi#readme")
6078 (synopsis "Wordwrap a string with ANSI escape codes")
6079 (description "Wordwrap a string with ANSI escape codes")
6080 (license license:expat)))
6081
6082(define-public node-cliui-8.0.1
6083 (package
6084 (name "node-cliui")
6085 (version "8.0.1")
6086 (source (origin
6087 (method url-fetch)
6088 (uri "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz")
6089 (sha256
6090 (base32
6091 "13cc8rvmzcvvlvf2prwxj1zjyxhybsznl1nirnlrwd4abvid3yny"))))
6092 (build-system node-build-system)
6093 (arguments
6094 '(#:tests? #f
6095 #:modules
6096 ((guix build node-build-system)
6097 (srfi srfi-1)
6098 (ice-9 match)
6099 (guix build utils))
6100 #:phases (modify-phases %standard-phases
6101 (delete 'build)
6102(add-before 'configure 'avoid-prepare-scripts
6103 (lambda _
6104 ;; We need to remove the prepare script from "package.json", as
6105 ;; it would try to use the build environment and would block the
6106 ;; automatic building by other packages making use of node-acorn.
6107 ;; TODO: Add utility function
6108 (with-atomic-json-file-replacement "package.json"
6109 (match-lambda
6110 (('@ . pkg-meta-alist)
6111 (cons '@ (map (match-lambda
6112 (("scripts" @ . scripts-alist)
6113 `("scripts" @ ,@(filter (match-lambda
6114 (("prepare" . _)
6115 #f)
6116 (_
6117 #t))
6118 scripts-alist)))
6119 (other other))
6120 pkg-meta-alist)))))))
6121 (add-after 'patch-dependencies 'delete-dev-dependencies
6122 (lambda _
6123 (delete-dependencies '("@types/node"
6124 "@typescript-eslint/eslint-plugin"
6125 "@typescript-eslint/parser"
6126 "c8"
6127 "chai"
6128 "chalk"
6129 "cross-env"
6130 "eslint"
6131 "eslint-plugin-import"
6132 "eslint-plugin-node"
6133 "gts"
6134 "mocha"
6135 "rimraf"
6136 "rollup"
6137 "rollup-plugin-ts"
6138 "standardx"
6139 "typescript")))))))
6140 (inputs `(("node-wrap-ansi" ,node-wrap-ansi-7.0.0)
6141 ("node-strip-ansi" ,node-strip-ansi-6.0.1)
6142 ("node-string-width" ,node-string-width-4.2.3)))
6143 (home-page "https://github.com/yargs/cliui#readme")
6144 (synopsis "easily create complex multi-column command-line-interfaces")
6145 (description "easily create complex multi-column command-line-interfaces")
6146 (license license:isc)))
6147
6148(define-public node-escalade-3.1.1
6149 (package
6150 (name "node-escalade")
6151 (version "3.1.1")
6152 (source (origin
6153 (method url-fetch)
6154 (uri "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz")
6155 (sha256
6156 (base32
6157 "17d7icirlarj6mjx321z04klpvjsxwga8c8svai2547bid131y30"))))
6158 (build-system node-build-system)
6159 (arguments
6160 '(#:tests? #f
6161 #:phases (modify-phases %standard-phases
6162 (delete 'build)
6163 (add-after 'patch-dependencies 'delete-dev-dependencies
6164 (lambda _
6165 (delete-dependencies '("bundt" "esm" "uvu")))))))
6166 (home-page "https://github.com/lukeed/escalade#readme")
6167 (synopsis
6168 "A tiny (183B to 210B) and fast utility to ascend parent directories")
6169 (description
6170 "A tiny (183B to 210B) and fast utility to ascend parent directories")
6171 (license license:expat)))
6172
6173(define-public node-get-caller-file-2.0.5
6174 (package
6175 (name "node-get-caller-file")
6176 (version "2.0.5")
6177 (source (origin
6178 (method url-fetch)
6179 (uri
6180 "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz")
6181 (sha256
6182 (base32
6183 "0pwk4r8iyyq2j0xpxavdm3ldb4h4k4s4xb74m8dlrzs9374f24vv"))))
6184 (build-system node-build-system)
6185 (arguments
6186 '(#:tests? #f
6187 #:modules
6188 ((guix build node-build-system)
6189 (srfi srfi-1)
6190 (ice-9 match)
6191 (guix build utils))
6192 #:phases (modify-phases %standard-phases
6193 (delete 'build)
6194(add-before 'configure 'avoid-prepare-scripts
6195 (lambda _
6196 ;; We need to remove the prepare script from "package.json", as
6197 ;; it would try to use the build environment and would block the
6198 ;; automatic building by other packages making use of node-acorn.
6199 ;; TODO: Add utility function
6200 (with-atomic-json-file-replacement "package.json"
6201 (match-lambda
6202 (('@ . pkg-meta-alist)
6203 (cons '@ (map (match-lambda
6204 (("scripts" @ . scripts-alist)
6205 `("scripts" @ ,@(filter (match-lambda
6206 (("prepare" . _)
6207 #f)
6208 (_
6209 #t))
6210 scripts-alist)))
6211 (other other))
6212 pkg-meta-alist)))))))
6213 (add-after 'patch-dependencies 'delete-dev-dependencies
6214 (lambda _
6215 (delete-dependencies '("@types/chai"
6216 "@types/ensure-posix-path"
6217 "@types/mocha"
6218 "@types/node"
6219 "chai"
6220 "ensure-posix-path"
6221 "mocha"
6222 "typescript")))))))
6223 (home-page "https://github.com/stefanpenner/get-caller-file#readme")
6224 (synopsis
6225 "[![Build Status](https://travis-ci.org/stefanpenner/get-caller-file.svg?branch=master)](https://travis-ci.org/stefanpenner/get-caller-file) [![Build status](https://ci.appveyor.com/api/projects/status/ol2q94g1932cy14a/branch/master?svg=true)](https://ci.a")
6226 (description
6227 "[![Build Status](https://travis-ci.org/stefanpenner/get-caller-file.svg?branch=master)](https://travis-ci.org/stefanpenner/get-caller-file) [![Build status](https://ci.appveyor.com/api/projects/status/ol2q94g1932cy14a/branch/master?svg=true)](https://ci.a")
6228 (license license:isc)))
6229
6230(define-public node-require-directory-2.1.1
6231 (package
6232 (name "node-require-directory")
6233 (version "2.1.1")
6234 (source (origin
6235 (method url-fetch)
6236 (uri
6237 "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz")
6238 (sha256
6239 (base32
6240 "1j46ydacaai73mx5krskl0k78r32lnjx94l79bz860rn8h4fwfvh"))))
6241 (build-system node-build-system)
6242 (arguments
6243 '(#:tests? #f
6244 #:phases (modify-phases %standard-phases
6245 (delete 'build)
6246 (add-after 'patch-dependencies 'delete-dev-dependencies
6247 (lambda _
6248 (delete-dependencies '("jshint" "mocha")))))))
6249 (home-page "https://github.com/troygoode/node-require-directory/")
6250 (synopsis
6251 "Recursively iterates over specified directory, require()'ing each file, and returning a nested hash structure containing those modules.")
6252 (description
6253 "Recursively iterates over specified directory, require()'ing each file, and returning a nested hash structure containing those modules.")
6254 (license license:expat)))
6255
6256(define-public node-emoji-regex-8.0.0
6257 (package
6258 (name "node-emoji-regex")
6259 (version "8.0.0")
6260 (source (origin
6261 (method url-fetch)
6262 (uri
6263 "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz")
6264 (sha256
6265 (base32
6266 "01xi3ikahnlj77h2gqs3jb7kmnxn1nsb9dmnpvpqw288zgxxkk5m"))))
6267 (build-system node-build-system)
6268 (arguments
6269 '(#:tests? #f
6270 #:phases (modify-phases %standard-phases
6271 (delete 'build)
6272 (add-after 'patch-dependencies 'delete-dev-dependencies
6273 (lambda _
6274 (delete-dependencies '("@babel/cli" "@babel/core"
6275 "@babel/plugin-proposal-unicode-property-regex"
6276 "@babel/preset-env"
6277 "mocha"
6278 "regexgen"
6279 "unicode-12.0.0")))))))
6280 (home-page "https://mths.be/emoji-regex")
6281 (synopsis
6282 "A regular expression to match all Emoji-only symbols as per the Unicode Standard.")
6283 (description
6284 "A regular expression to match all Emoji-only symbols as per the Unicode Standard.")
6285 (license license:expat)))
6286
6287(define-public node-y18n-5.0.8
6288 (package
6289 (name "node-y18n")
6290 (version "5.0.8")
6291 (source (origin
6292 (method url-fetch)
6293 (uri "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz")
6294 (sha256
6295 (base32
6296 "0sd7mpg2c0fxqq4q2574hvm26fgy6byp1gxnsgskmjx7sfx46dyl"))))
6297 (build-system node-build-system)
6298 (arguments
6299 '(#:tests? #f
6300 #:modules
6301 ((guix build node-build-system)
6302 (srfi srfi-1)
6303 (ice-9 match)
6304 (guix build utils))
6305 #:phases (modify-phases %standard-phases
6306 (delete 'build)
6307(add-before 'configure 'avoid-prepare-scripts
6308 (lambda _
6309 ;; We need to remove the prepare script from "package.json", as
6310 ;; it would try to use the build environment and would block the
6311 ;; automatic building by other packages making use of node-acorn.
6312 ;; TODO: Add utility function
6313 (with-atomic-json-file-replacement "package.json"
6314 (match-lambda
6315 (('@ . pkg-meta-alist)
6316 (cons '@ (map (match-lambda
6317 (("scripts" @ . scripts-alist)
6318 `("scripts" @ ,@(filter (match-lambda
6319 (("prepare" . _)
6320 #f)
6321 (_
6322 #t))
6323 scripts-alist)))
6324 (other other))
6325 pkg-meta-alist)))))))
6326 (add-after 'patch-dependencies 'delete-dev-dependencies
6327 (lambda _
6328 (delete-dependencies '("@types/node"
6329 "@wessberg/rollup-plugin-ts"
6330 "c8"
6331 "chai"
6332 "cross-env"
6333 "gts"
6334 "mocha"
6335 "rimraf"
6336 "rollup"
6337 "standardx"
6338 "ts-transform-default-export"
6339 "typescript")))))))
6340 (home-page "https://github.com/yargs/y18n")
6341 (synopsis "the bare-bones internationalization library used by yargs")
6342 (description "the bare-bones internationalization library used by yargs")
6343 (license license:isc)))
6344
6345(define-public node-yargs-parser-21.1.1
6346 (package
6347 (name "node-yargs-parser")
6348 (version "21.1.1")
6349 (source (origin
6350 (method url-fetch)
6351 (uri
6352 "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz")
6353 (sha256
6354 (base32
6355 "0lcif2zbzw2jfj63paq2wdgc1hs9fd8i2xzjcidjcwjagm97sarl"))))
6356 (build-system node-build-system)
6357 (arguments
6358 '(#:tests? #f
6359 #:modules
6360 ((guix build node-build-system)
6361 (srfi srfi-1)
6362 (ice-9 match)
6363 (guix build utils))
6364 #:phases (modify-phases %standard-phases
6365 (delete 'build)
6366(add-before 'configure 'avoid-prepare-scripts
6367 (lambda _
6368 ;; We need to remove the prepare script from "package.json", as
6369 ;; it would try to use the build environment and would block the
6370 ;; automatic building by other packages making use of node-acorn.
6371 ;; TODO: Add utility function
6372 (with-atomic-json-file-replacement "package.json"
6373 (match-lambda
6374 (('@ . pkg-meta-alist)
6375 (cons '@ (map (match-lambda
6376 (("scripts" @ . scripts-alist)
6377 `("scripts" @ ,@(filter (match-lambda
6378 (("prepare" . _)
6379 #f)
6380 (_
6381 #t))
6382 scripts-alist)))
6383 (other other))
6384 pkg-meta-alist)))))))
6385 (add-after 'patch-dependencies 'delete-dev-dependencies
6386 (lambda _
6387 (delete-dependencies '("@types/chai" "@types/mocha"
6388 "@types/node"
6389 "@typescript-eslint/eslint-plugin"
6390 "@typescript-eslint/parser"
6391 "c8"
6392 "chai"
6393 "cross-env"
6394 "eslint"
6395 "eslint-plugin-import"
6396 "eslint-plugin-node"
6397 "gts"
6398 "mocha"
6399 "puppeteer"
6400 "rimraf"
6401 "rollup"
6402 "rollup-plugin-cleanup"
6403 "rollup-plugin-ts"
6404 "serve"
6405 "standardx"
6406 "start-server-and-test"
6407 "ts-transform-default-export"
6408 "typescript")))))))
6409 (home-page "https://github.com/yargs/yargs-parser#readme")
6410 (synopsis "the mighty option parser used by yargs")
6411 (description "the mighty option parser used by yargs")
6412 (license license:isc)))
6413
6414(define-public node-yargs-17.7.2
6415 (package
6416 (name "node-yargs")
6417 (version "17.7.2")
6418 (source (origin
6419 (method url-fetch)
6420 (uri "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz")
6421 (sha256
6422 (base32
6423 "1jdfhg5pvp8834zsbm0vibjxx9rpwargqw1619i61mxm21gr7v28"))))
6424 (build-system node-build-system)
6425 (arguments
6426 '(#:tests? #f
6427 #:modules
6428 ((guix build node-build-system)
6429 (srfi srfi-1)
6430 (ice-9 match)
6431 (guix build utils))
6432 #:phases (modify-phases %standard-phases
6433 (delete 'build)
6434(add-before 'configure 'avoid-prepare-scripts
6435 (lambda _
6436 ;; We need to remove the prepare script from "package.json", as
6437 ;; it would try to use the build environment and would block the
6438 ;; automatic building by other packages making use of node-acorn.
6439 ;; TODO: Add utility function
6440 (with-atomic-json-file-replacement "package.json"
6441 (match-lambda
6442 (('@ . pkg-meta-alist)
6443 (cons '@ (map (match-lambda
6444 (("scripts" @ . scripts-alist)
6445 `("scripts" @ ,@(filter (match-lambda
6446 (("prepare" . _)
6447 #f)
6448 (_
6449 #t))
6450 scripts-alist)))
6451 (other other))
6452 pkg-meta-alist)))))))
6453 (add-after 'patch-dependencies 'delete-dev-dependencies
6454 (lambda _
6455 (delete-dependencies '("@types/chai" "@types/mocha"
6456 "@types/node"
6457 "c8"
6458 "chai"
6459 "chalk"
6460 "coveralls"
6461 "cpr"
6462 "cross-env"
6463 "cross-spawn"
6464 "eslint"
6465 "gts"
6466 "hashish"
6467 "mocha"
6468 "rimraf"
6469 "rollup"
6470 "rollup-plugin-cleanup"
6471 "rollup-plugin-terser"
6472 "rollup-plugin-ts"
6473 "typescript"
6474 "which"
6475 "yargs-test-extends")))))))
6476 (inputs `(("node-yargs-parser" ,node-yargs-parser-21.1.1)
6477 ("node-y18n" ,node-y18n-5.0.8)
6478 ("node-string-width" ,node-string-width-4.2.3)
6479 ("node-require-directory" ,node-require-directory-2.1.1)
6480 ("node-get-caller-file" ,node-get-caller-file-2.0.5)
6481 ("node-escalade" ,node-escalade-3.1.1)
6482 ("node-cliui" ,node-cliui-8.0.1)))
6483 (home-page "https://yargs.js.org/")
6484 (synopsis "yargs the modern, pirate-themed, successor to optimist.")
6485 (description "yargs the modern, pirate-themed, successor to optimist.")
6486 (license license:expat)))
6487
6488(define-public node-transliteration-2.3.5
6489 (package
6490 (name "node-transliteration")
6491 (version "2.3.5")
6492 (source (origin
6493 (method url-fetch)
6494 (uri
6495 "https://registry.npmjs.org/transliteration/-/transliteration-2.3.5.tgz")
6496 (sha256
6497 (base32
6498 "0kgn4fxf7xmwmsi537cnhvgs6yag51ppx2cnpjhmdmradkarvgv6"))))
6499 (build-system node-build-system)
6500 (arguments
6501 '(#:tests? #f
6502 #:phases (modify-phases %standard-phases
6503 (delete 'build)
6504 (add-after 'patch-dependencies 'delete-dev-dependencies
6505 (lambda _
6506 (delete-dependencies '("@babel/core"
6507 "@babel/plugin-proposal-class-properties"
6508 "@babel/plugin-proposal-object-rest-spread"
6509 "@babel/preset-env"
6510 "@babel/preset-typescript"
6511 "@types/tape"
6512 "@types/yargs"
6513 "codecov"
6514 "core-js"
6515 "coveralls"
6516 "eslint-config-prettier"
6517 "json5"
6518 "nyc"
6519 "prettier"
6520 "rimraf"
6521 "rollup"
6522 "rollup-plugin-babel"
6523 "rollup-plugin-commonjs"
6524 "rollup-plugin-hashbang"
6525 "rollup-plugin-sourcemaps"
6526 "rollup-plugin-terser"
6527 "rollup-plugin-typescript2"
6528 "rollup-plugin-uglify"
6529 "tap-spec"
6530 "tape"
6531 "ts-loader"
6532 "ts-node"
6533 "tslint"
6534 "tslint-config-prettier"
6535 "typescript")))))))
6536 (inputs `(("node-yargs" ,node-yargs-17.7.2)))
6537 (home-page "https://github.com/dzcpy/transliteration#readme")
6538 (synopsis
6539 "Unicode to ACSII transliteration / slugify module for node.js, browser, Web Worker, ReactNative and CLI.")
6540 (description
6541 "Unicode to ACSII transliteration / slugify module for node.js, browser, Web Worker, ReactNative and CLI.")
6542 (license license:expat)))
6543
6544(define-public node-typescript-3.8.3
6545 (package
6546 (name "node-typescript")
6547 (version "3.8.3")
6548 (source (origin
6549 (method url-fetch)
6550 (uri
6551 "https://registry.npmjs.org/typescript/-/typescript-3.8.3.tgz")
6552 (sha256
6553 (base32
6554 "11vv2h8lsja6vf9kvpm45ayswsw08zvydgk4hq97nrqaqlqhwf6p"))))
6555 (build-system node-build-system)
6556 (arguments
6557 '(#:tests? #f
6558 #:phases (modify-phases %standard-phases
6559 (delete 'build)
6560 (add-after 'patch-dependencies 'delete-dev-dependencies
6561 (lambda _
6562 (delete-dependencies '("@octokit/rest"
6563 "@types/browserify"
6564 "@types/chai"
6565 "@types/convert-source-map"
6566 "@types/glob"
6567 "@types/gulp"
6568 "@types/gulp-concat"
6569 "@types/gulp-newer"
6570 "@types/gulp-rename"
6571 "@types/gulp-sourcemaps"
6572 "@types/jake"
6573 "@types/merge2"
6574 "@types/microsoft__typescript-etw"
6575 "@types/minimatch"
6576 "@types/minimist"
6577 "@types/mkdirp"
6578 "@types/mocha"
6579 "@types/ms"
6580 "@types/node"
6581 "@types/node-fetch"
6582 "@types/q"
6583 "@types/source-map-support"
6584 "@types/through2"
6585 "@types/travis-fold"
6586 "@types/xml2js"
6587 "@typescript-eslint/eslint-plugin"
6588 "@typescript-eslint/experimental-utils"
6589 "@typescript-eslint/parser"
6590 "async"
6591 "azure-devops-node-api"
6592 "browser-resolve"
6593 "browserify"
6594 "chai"
6595 "chalk"
6596 "convert-source-map"
6597 "del"
6598 "eslint"
6599 "eslint-formatter-autolinkable-stylish"
6600 "eslint-plugin-import"
6601 "eslint-plugin-jsdoc"
6602 "eslint-plugin-no-null"
6603 "fancy-log"
6604 "fs-extra"
6605 "glob"
6606 "gulp"
6607 "gulp-concat"
6608 "gulp-insert"
6609 "gulp-newer"
6610 "gulp-rename"
6611 "gulp-sourcemaps"
6612 "istanbul"
6613 "merge2"
6614 "minimist"
6615 "mkdirp"
6616 "mocha"
6617 "mocha-fivemat-progress-reporter"
6618 "ms"
6619 "node-fetch"
6620 "plugin-error"
6621 "pretty-hrtime"
6622 "prex"
6623 "q"
6624 "remove-internal"
6625 "source-map-support"
6626 "through2"
6627 "travis-fold"
6628 "typescript"
6629 "vinyl"
6630 "vinyl-sourcemaps-apply"
6631 "xml2js")))))))
6632 (home-page "https://www.typescriptlang.org/")
6633 (synopsis
6634 "TypeScript is a language for application scale JavaScript development")
6635 (description
6636 "TypeScript is a language for application scale JavaScript development")
6637 (license license:asl2.0)))
6638
6639(define-public node-zenscroll-4.0.2
6640 (package
6641 (name "node-zenscroll")
6642 (version "4.0.2")
6643 (source (origin
6644 (method url-fetch)
6645 (uri
6646 "https://registry.npmjs.org/zenscroll/-/zenscroll-4.0.2.tgz")
6647 (sha256
6648 (base32
6649 "14626z9wqrc0b2vm7f6q0irdb4zxqxs0rbg3l626kqhfzx7dy8kr"))))
6650 (build-system node-build-system)
6651 (arguments
6652 '(#:tests? #f
6653 #:phases (modify-phases %standard-phases
6654 (delete 'build))))
6655 (home-page "https://zengabor.github.io/zenscroll/")
6656 (synopsis
6657 "A module to smooth-scroll web pages and scrollable elements (like DIVs)")
6658 (description
6659 "A module to smooth-scroll web pages and scrollable elements (like DIVs)")
6660 (license license:unlicense)))
6661
6662(define-public node-acorn-5.7.4
6663 (package
6664 (inherit node-acorn)
6665 (name "node-acorn")
6666 (version "5.7.4")
6667 (source
6668 (origin
6669 (method git-fetch)
6670 (uri (git-reference
6671 (url "https://github.com/acornjs/acorn")
6672 (commit version)))
6673 (file-name (git-file-name name version))
6674 (sha256
6675 (base32 "10krd3s0fzglwvk0khb4px82amjmf30qalv789i3vbfvln26ar3y"))))
6676 (arguments
6677 (substitute-keyword-arguments (package-arguments node-acorn)
6678 ((#:phases phases '%standard-phases)
6679 `(modify-phases ,phases
6680 (delete 'change-directory)
6681 (add-after 'patch-dependencies 'delete-dev-dependencies
6682 (lambda _
6683 (delete-dependencies '("eslint" "eslint-config-standard"
6684 "eslint-plugin-import"
6685 "eslint-plugin-node"
6686 "eslint-plugin-promise"
6687 "eslint-plugin-standard"
6688 "rollup"
6689 "rollup-plugin-buble"
6690 "test262"
6691 "test262-parser-runner"
6692 "unicode-11.0.0"))))))))))
6693
6694(define-public node-acorn-jsx-4.1.1
6695 (package
6696 (name "node-acorn-jsx")
6697 (version "4.1.1")
6698 (source (origin
6699 (method url-fetch)
6700 (uri
6701 "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-4.1.1.tgz")
6702 (sha256
6703 (base32
6704 "1rzhpi0ak9pynyrvb5pmzvh0pypzpnx9xxrs2y7b0cgg093r5imm"))))
6705 (build-system node-build-system)
6706 (arguments
6707 '(#:tests? #f
6708 #:phases (modify-phases %standard-phases
6709 (delete 'build)
6710 (add-after 'patch-dependencies 'delete-dev-dependencies
6711 (lambda _
6712 (delete-dependencies '("chai" "mocha")))))))
6713 (inputs `(("node-acorn" ,node-acorn-5.7.4)))
6714 (home-page "https://github.com/RReverser/acorn-jsx")
6715 (synopsis "Alternative, faster React.js JSX parser")
6716 (description "Alternative, faster React.js JSX parser")
6717 (license license:expat)))
6718
6719(define-public node-ansi-0.3.1
6720 (package
6721 (name "node-ansi")
6722 (version "0.3.1")
6723 (source (origin
6724 (method url-fetch)
6725 (uri "https://registry.npmjs.org/ansi/-/ansi-0.3.1.tgz")
6726 (sha256
6727 (base32
6728 "0jbf21lf5jsqs63ki1dqzx4llqr7wvlc4jy8hhdyy7qvhglsj187"))))
6729 (build-system node-build-system)
6730 (arguments
6731 '(#:tests? #f
6732 #:phases (modify-phases %standard-phases
6733 (delete 'build))))
6734 (home-page "https://github.com/TooTallNate/ansi.js#readme")
6735 (synopsis "Advanced ANSI formatting tool for Node.js")
6736 (description "Advanced ANSI formatting tool for Node.js")
6737 (license license:expat)))
6738
6739(define-public node-app-root-path-2.2.1
6740 (package
6741 (name "node-app-root-path")
6742 (version "2.2.1")
6743 (source (origin
6744 (method url-fetch)
6745 (uri
6746 "https://registry.npmjs.org/app-root-path/-/app-root-path-2.2.1.tgz")
6747 (sha256
6748 (base32
6749 "0qjv4w1qhkqwri9iscvzh2fhvc4qv25mj58anqd61nbrh5n1la54"))))
6750 (build-system node-build-system)
6751 (arguments
6752 '(#:tests? #f
6753 #:phases (modify-phases %standard-phases
6754 (delete 'build)
6755 (add-after 'patch-dependencies 'delete-dev-dependencies
6756 (lambda _
6757 (delete-dependencies '("codecov" "coveralls"
6758 "cracks"
6759 "cz-conventional-changelog"
6760 "ghooks"
6761 "istanbul"
6762 "mocha"
6763 "mocha-lcov-reporter"
6764 "mockery"
6765 "nyc"
6766 "semantic-release"
6767 "validate-commit-msg")))))))
6768 (home-page "https://github.com/inxilpro/node-app-root-path")
6769 (synopsis "Determine an app's root path from anywhere inside the app")
6770 (description "Determine an app's root path from anywhere inside the app")
6771 (license license:expat)))
6772
198(define-public node-ajax-request-1.2.3 6773(define-public node-ajax-request-1.2.3
199 (package 6774 (package
200 (name "node-ajax-request") 6775 (name "node-ajax-request")
201 (version "1.2.3") 6776 (version "1.2.3")
202 (source 6777 (source (origin
203 (origin 6778 (method url-fetch)
204 (method url-fetch) 6779 (uri
205 (uri "https://registry.npmjs.org/ajax-request/-/ajax-request-1.2.3.tgz") 6780 "https://registry.npmjs.org/ajax-request/-/ajax-request-1.2.3.tgz")
206 (sha256 6781 (sha256
207 (base32 6782 (base32
208 "0pkzvkblcmj8wxar7bw61jxfghzki12awi15gm1v2qsyfa42blva")))) 6783 "0pkzvkblcmj8wxar7bw61jxfghzki12awi15gm1v2qsyfa42blva"))))
209 (build-system node-build-system) 6784 (build-system node-build-system)
210 (arguments 6785 (arguments
211 `(#:tests? 6786 '(#:tests? #f
212 #f 6787 #:phases (modify-phases %standard-phases
213 #:phases 6788 (delete 'build)
214 (modify-phases 6789 (add-after 'patch-dependencies 'delete-dev-dependencies
215 %standard-phases 6790 (lambda _
216 (delete 'configure) 6791 (delete-dependencies '("body-parser" "express" "grunt"
217 (delete 'build)))) 6792 "grunt-contrib-jshint"
218 (inputs 6793 "serve-static")))))))
219 `(("node-utils-extend" ,node-utils-extend-1.0.8) 6794 (inputs `(("node-utils-extend" ,node-utils-extend-1.0.8)
220 ("node-file-system" ,node-file-system-2.2.2))) 6795 ("node-file-system" ,node-file-system-2.2.2)))
221 (home-page 6796 (home-page "https://github.com/douzi8/ajax-request#readme")
222 "https://github.com/douzi8/ajax-request#readme") 6797 (synopsis "Http request for nodejs, and it also support file download")
223 (synopsis 6798 (description "Http request for nodejs, and it also support file download")
224 "Http request for nodejs, and it also support file download")
225 (description
226 "Http request for nodejs, and it also support file download")
227 (license license:isc))) 6799 (license license:isc)))
228 6800
229(define-public node-file-match-1.0.2 6801(define-public node-file-match-1.0.2
230 (package 6802 (package
231 (name "node-file-match") 6803 (name "node-file-match")
232 (version "1.0.2") 6804 (version "1.0.2")
233 (source 6805 (source (origin
234 (origin 6806 (method url-fetch)
235 (method url-fetch) 6807 (uri
236 (uri "https://registry.npmjs.org/file-match/-/file-match-1.0.2.tgz") 6808 "https://registry.npmjs.org/file-match/-/file-match-1.0.2.tgz")
237 (sha256 6809 (sha256
238 (base32 6810 (base32
239 "07xax9x1x8zxkss8i0hmcqkpsz0fd53pl68xvg8x7d6d1s61nks1")))) 6811 "07xax9x1x8zxkss8i0hmcqkpsz0fd53pl68xvg8x7d6d1s61nks1"))))
240 (build-system node-build-system) 6812 (build-system node-build-system)
241 (arguments 6813 (arguments
242 `(#:tests? 6814 '(#:tests? #f
243 #f 6815 #:phases (modify-phases %standard-phases
244 #:phases 6816 (delete 'build)
245 (modify-phases 6817 (add-after 'patch-dependencies 'delete-dev-dependencies
246 %standard-phases 6818 (lambda _
247 (delete 'configure) 6819 (delete-dependencies '("grunt" "grunt-contrib-jshint"
248 (delete 'build)))) 6820 "mocha")))))))
249 (inputs 6821 (inputs `(("node-utils-extend" ,node-utils-extend-1.0.8)))
250 `(("node-utils-extend" ,node-utils-extend-1.0.8))) 6822 (home-page "https://github.com/douzi8/file-match")
251 (home-page 6823 (synopsis
252 "https://github.com/douzi8/file-match") 6824 "Match filepath is validated, or exclude filepath that don't need.")
253 (synopsis 6825 (description
254 "Match filepath is validated, or exclude filepath that don't need.") 6826 "Match filepath is validated, or exclude filepath that don't need.")
255 (description 6827 (license license:isc)))
256 "Match filepath is validated, or exclude filepath that don't need.") 6828
6829(define-public node-utils-extend-1.0.8
6830 (package
6831 (name "node-utils-extend")
6832 (version "1.0.8")
6833 (source (origin
6834 (method url-fetch)
6835 (uri
6836 "https://registry.npmjs.org/utils-extend/-/utils-extend-1.0.8.tgz")
6837 (sha256
6838 (base32
6839 "0049dvkvlbzdvqyd51mga7kaj4b2v0gxrxsdxss835a28lp7s19j"))))
6840 (build-system node-build-system)
6841 (arguments
6842 '(#:tests? #f
6843 #:phases (modify-phases %standard-phases
6844 (delete 'build)
6845 (add-after 'patch-dependencies 'delete-dev-dependencies
6846 (lambda _
6847 (delete-dependencies '("grunt" "grunt-contrib-jshint"
6848 "mocha")))))))
6849 (home-page "https://github.com/douzi8/utils-extend")
6850 (synopsis "Extend nodejs util api, and it is light weight and simple")
6851 (description "Extend nodejs util api, and it is light weight and simple")
6852 (license license:isc)))
6853
6854(define-public node-file-system-2.2.2
6855 (package
6856 (name "node-file-system")
6857 (version "2.2.2")
6858 (source (origin
6859 (method url-fetch)
6860 (uri
6861 "https://registry.npmjs.org/file-system/-/file-system-2.2.2.tgz")
6862 (sha256
6863 (base32
6864 "08d1xdfkhx4j1gv2ipwzdxkyv0wpin0317k5vmllhdb3k3v3wdg6"))))
6865 (build-system node-build-system)
6866 (arguments
6867 '(#:tests? #f
6868 #:phases (modify-phases %standard-phases
6869 (delete 'build)
6870 (add-after 'patch-dependencies 'delete-dev-dependencies
6871 (lambda _
6872 (delete-dependencies '("grunt" "grunt-contrib-jshint"
6873 "mocha")))))))
6874 (inputs `(("node-utils-extend" ,node-utils-extend-1.0.8)
6875 ("node-file-match" ,node-file-match-1.0.2)))
6876 (home-page "https://github.com/douzi8/file-system")
6877 (synopsis "Strengthen the ability of file system")
6878 (description "Strengthen the ability of file system")
257 (license license:isc))) 6879 (license license:isc)))
258 6880
259(define-public node-base64-img-1.0.4 6881(define-public node-base64-img-1.0.4
260 (package 6882 (package
261 (name "node-base64-img") 6883 (name "node-base64-img")
262 (version "1.0.4") 6884 (version "1.0.4")
263 (source 6885 (source (origin
264 (origin 6886 (method url-fetch)
265 (method url-fetch) 6887 (uri
266 (uri "https://registry.npmjs.org/base64-img/-/base64-img-1.0.4.tgz") 6888 "https://registry.npmjs.org/base64-img/-/base64-img-1.0.4.tgz")
267 (sha256 6889 (sha256
268 (base32 6890 (base32
269 "0f8x6x2dpq80kn97yfw4nk26b8mskaysv13hi93h03qlhwyx69jq")))) 6891 "0f8x6x2dpq80kn97yfw4nk26b8mskaysv13hi93h03qlhwyx69jq"))))
270 (build-system node-build-system) 6892 (build-system node-build-system)
271 (arguments 6893 (arguments
272 `(#:tests? 6894 '(#:tests? #f
273 #f 6895 #:phases (modify-phases %standard-phases
274 #:phases 6896 (delete 'build)
275 (modify-phases 6897 (add-after 'patch-dependencies 'delete-dev-dependencies
276 %standard-phases 6898 (lambda _
277 (delete 'configure) 6899 (delete-dependencies '("grunt" "grunt-contrib-jshint")))))))
278 (delete 'build)))) 6900 (inputs `(("node-file-system" ,node-file-system-2.2.2)
279 (inputs 6901 ("node-ajax-request" ,node-ajax-request-1.2.3)))
280 `(("node-file-system" ,node-file-system-2.2.2) 6902 (home-page "https://github.com/douzi8/base64-img")
281 ("node-ajax-request" ,node-ajax-request-1.2.3))) 6903 (synopsis "Convert img or svg to base64, or convert base64 to img")
282 (home-page 6904 (description "Convert img or svg to base64, or convert base64 to img")
283 "https://github.com/douzi8/base64-img")
284 (synopsis
285 "Convert img or svg to base64, or convert base64 to img")
286 (description
287 "Convert img or svg to base64, or convert base64 to img")
288 (license license:isc))) 6905 (license license:isc)))
289 6906
290(define-public node-base64-js-1.5.1 6907(define-public node-base64-js-1.5.1
291 (package 6908 (package
292 (name "node-base64-js") 6909 (name "node-base64-js")
293 (version "1.5.1") 6910 (version "1.5.1")
294 (source 6911 (source (origin
295 (origin 6912 (method url-fetch)
296 (method url-fetch) 6913 (uri
297 (uri "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz") 6914 "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz")
298 (sha256 6915 (sha256
299 (base32 6916 (base32
300 "118a46skxnrgx5bdd68ny9xxjcvyb7b1clj2hf82d196nm2skdxi")))) 6917 "118a46skxnrgx5bdd68ny9xxjcvyb7b1clj2hf82d196nm2skdxi"))))
301 (build-system node-build-system) 6918 (build-system node-build-system)
302 (arguments 6919 (arguments
303 `(#:tests? 6920 '(#:tests? #f
304 #f 6921 #:phases (modify-phases %standard-phases
305 #:phases 6922 (delete 'build)
306 (modify-phases 6923 (add-after 'patch-dependencies 'delete-dev-dependencies
307 %standard-phases 6924 (lambda _
308 (delete 'configure) 6925 (delete-dependencies '("babel-minify" "benchmark"
309 (delete 'build)))) 6926 "browserify" "standard" "tape")))))))
310 (home-page 6927 (home-page "https://github.com/beatgammit/base64-js")
311 "https://github.com/beatgammit/base64-js")
312 (synopsis "Base64 encoding/decoding in pure JS") 6928 (synopsis "Base64 encoding/decoding in pure JS")
313 (description 6929 (description "Base64 encoding/decoding in pure JS")
314 "Base64 encoding/decoding in pure JS")
315 (license license:expat))) 6930 (license license:expat)))
316 6931
317(define-public node-bowser-2.11.0 6932(define-public node-bowser-2.11.0
318 (package 6933 (package
319 (name "node-bowser") 6934 (name "node-bowser")
320 (version "2.11.0") 6935 (version "2.11.0")
321 (source 6936 (source (origin
322 (origin 6937 (method url-fetch)
323 (method url-fetch) 6938 (uri "https://registry.npmjs.org/bowser/-/bowser-2.11.0.tgz")
324 (uri "https://registry.npmjs.org/bowser/-/bowser-2.11.0.tgz") 6939 (sha256
325 (sha256 6940 (base32
326 (base32 6941 "1mrsgjann2d0lnwivfqprh9x1dg48k1vq9mff1cwz8zgc1mbkrm7"))))
327 "1mrsgjann2d0lnwivfqprh9x1dg48k1vq9mff1cwz8zgc1mbkrm7")))) 6942 (build-system node-build-system)
328 (build-system node-build-system) 6943 (arguments
329 (arguments 6944 '(#:tests? #f
330 `(#:tests? 6945 #:phases (modify-phases %standard-phases
331 #f 6946 (delete 'build)
332 #:phases 6947 (add-after 'patch-dependencies 'delete-dev-dependencies
333 (modify-phases 6948 (lambda _
334 %standard-phases 6949 (delete-dependencies '("@babel/cli" "@babel/core"
335 (delete 'configure) 6950 "@babel/polyfill"
336 (delete 'build)))) 6951 "@babel/preset-env"
337 (home-page 6952 "@babel/register"
338 "https://github.com/lancedikson/bowser") 6953 "ava"
6954 "babel-eslint"
6955 "babel-loader"
6956 "babel-plugin-add-module-exports"
6957 "babel-plugin-istanbul"
6958 "compression-webpack-plugin"
6959 "coveralls"
6960 "docdash"
6961 "eslint"
6962 "eslint-config-airbnb-base"
6963 "eslint-plugin-ava"
6964 "eslint-plugin-import"
6965 "gh-pages"
6966 "jsdoc"
6967 "nyc"
6968 "sinon"
6969 "testem"
6970 "webpack"
6971 "webpack-bundle-analyzer"
6972 "webpack-cli"
6973 "yamljs")))))))
6974 (home-page "https://github.com/lancedikson/bowser")
339 (synopsis "Lightweight browser detector") 6975 (synopsis "Lightweight browser detector")
340 (description "Lightweight browser detector") 6976 (description "Lightweight browser detector")
341 (license license:expat))) 6977 (license license:expat)))
342 6978
343(define-public node-arr-flatten-1.1.0
344 (package
345 (name "node-arr-flatten")
346 (version "1.1.0")
347 (source
348 (origin
349 (method url-fetch)
350 (uri "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz")
351 (sha256
352 (base32
353 "0amnq01y6y8j49rdcib9yh8n95wk2ajs3qcckccvv1x6bf6nfvay"))))
354 (build-system node-build-system)
355 (arguments
356 `(#:tests?
357 #f
358 #:phases
359 (modify-phases
360 %standard-phases
361 (delete 'configure)
362 (delete 'build))))
363 (home-page
364 "https://github.com/jonschlinkert/arr-flatten")
365 (synopsis
366 "Recursively flatten an array or arrays.")
367 (description
368 "Recursively flatten an array or arrays.")
369 (license license:expat)))
370
371(define-public node-arr-diff-2.0.0 6979(define-public node-arr-diff-2.0.0
372 (package 6980 (package
373 (name "node-arr-diff") 6981 (name "node-arr-diff")
374 (version "2.0.0") 6982 (version "2.0.0")
375 (source 6983 (source (origin
376 (origin 6984 (method url-fetch)
377 (method url-fetch) 6985 (uri "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz")
378 (uri "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz") 6986 (sha256
379 (sha256 6987 (base32
380 (base32 6988 "180fm2zz2qqygr715i4dwdpqypvf2gap4wds1crdhpdlbc3c2wpd"))))
381 "180fm2zz2qqygr715i4dwdpqypvf2gap4wds1crdhpdlbc3c2wpd")))) 6989 (build-system node-build-system)
382 (build-system node-build-system) 6990 (arguments
383 (arguments 6991 '(#:tests? #f
384 `(#:tests? 6992 #:phases (modify-phases %standard-phases
385 #f 6993 (delete 'build)
386 #:phases 6994 (add-after 'patch-dependencies 'delete-dev-dependencies
387 (modify-phases 6995 (lambda _
388 %standard-phases 6996 (delete-dependencies '("array-differ" "array-slice"
389 (delete 'configure) 6997 "benchmarked" "chalk" "mocha"
390 (delete 'build)))) 6998 "should")))))))
391 (inputs 6999 (inputs `(("node-arr-flatten" ,node-arr-flatten-1.1.0)))
392 `(("node-arr-flatten" ,node-arr-flatten-1.1.0))) 7000 (home-page "https://github.com/jonschlinkert/arr-diff")
393 (home-page
394 "https://github.com/jonschlinkert/arr-diff")
395 (synopsis 7001 (synopsis
396 "Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.") 7002 "Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.")
397 (description 7003 (description
398 "Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.") 7004 "Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.")
399 (license license:expat))) 7005 (license license:expat)))
400 7006
401(define-public node-array-unique-0.2.1 7007(define-public node-array-unique-0.2.1
402 (package 7008 (package
403 (name "node-array-unique") 7009 (name "node-array-unique")
404 (version "0.2.1") 7010 (version "0.2.1")
405 (source 7011 (source (origin
406 (origin 7012 (method url-fetch)
407 (method url-fetch) 7013 (uri
408 (uri "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz") 7014 "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz")
409 (sha256 7015 (sha256
410 (base32 7016 (base32
411 "12j74kq24w0xpj6zxdqj0zlgr97ls02yqph2vbbk05q7bgbkckvy")))) 7017 "12j74kq24w0xpj6zxdqj0zlgr97ls02yqph2vbbk05q7bgbkckvy"))))
412 (build-system node-build-system) 7018 (build-system node-build-system)
413 (arguments 7019 (arguments
414 `(#:tests? 7020 '(#:tests? #f
415 #f 7021 #:phases (modify-phases %standard-phases
416 #:phases 7022 (delete 'build)
417 (modify-phases 7023 (add-after 'patch-dependencies 'delete-dev-dependencies
418 %standard-phases 7024 (lambda _
419 (delete 'configure) 7025 (delete-dependencies '("array-uniq" "benchmarked"
420 (delete 'build)))) 7026 "mocha" "should")))))))
421 (home-page 7027 (home-page "https://github.com/jonschlinkert/array-unique")
422 "https://github.com/jonschlinkert/array-unique")
423 (synopsis
424 "Return an array free of duplicate values. Fastest ES5 implementation.")
425 (description
426 "Return an array free of duplicate values. Fastest ES5 implementation.")
427 (license (license:non-copyleft "unknown"))))
428
429(define-public node-is-number-2.1.0
430 (package
431 (name "node-is-number")
432 (version "2.1.0")
433 (source
434 (origin
435 (method url-fetch)
436 (uri "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz")
437 (sha256
438 (base32
439 "07v7lz3vb6iq9f36ksnbf60gy91dggaa32l0m8026zpa5ccrx8r2"))))
440 (build-system node-build-system)
441 (arguments
442 `(#:tests?
443 #f
444 #:phases
445 (modify-phases
446 %standard-phases
447 (delete 'configure)
448 (delete 'build))))
449 (inputs `(("node-kind-of" ,node-kind-of-3.2.2)))
450 (home-page
451 "https://github.com/jonschlinkert/is-number")
452 (synopsis 7028 (synopsis
453 "Returns true if the value is a number. comprehensive tests.") 7029 "Return an array free of duplicate values. Fastest ES5 implementation.")
454 (description 7030 (description
455 "Returns true if the value is a number. comprehensive tests.") 7031 "Return an array free of duplicate values. Fastest ES5 implementation.")
456 (license license:expat))) 7032 (license license:expat)))
457 7033
458(define-public node-is-number-4.0.0 7034(define-public node-is-number-4.0.0
459 (package 7035 (package
460 (name "node-is-number") 7036 (name "node-is-number")
461 (version "4.0.0") 7037 (version "4.0.0")
462 (source 7038 (source (origin
463 (origin 7039 (method url-fetch)
464 (method url-fetch) 7040 (uri
465 (uri "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz") 7041 "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz")
466 (sha256 7042 (sha256
467 (base32 7043 (base32
468 "1f47qljw0w6ajdkln18gxzv1qbhbxr88lrs6w485vk0g1b3wqnsy")))) 7044 "1f47qljw0w6ajdkln18gxzv1qbhbxr88lrs6w485vk0g1b3wqnsy"))))
469 (build-system node-build-system) 7045 (build-system node-build-system)
470 (arguments 7046 (arguments
471 `(#:tests? 7047 '(#:tests? #f
472 #f 7048 #:phases (modify-phases %standard-phases
473 #:phases 7049 (delete 'build)
474 (modify-phases 7050 (add-after 'patch-dependencies 'delete-dev-dependencies
475 %standard-phases 7051 (lambda _
476 (delete 'configure) 7052 (delete-dependencies '("benchmarked" "chalk"
477 (delete 'build)))) 7053 "gulp-format-md" "mocha")))))))
478 (home-page 7054 (home-page "https://github.com/jonschlinkert/is-number")
479 "https://github.com/jonschlinkert/is-number") 7055 (synopsis "Returns true if the value is a number. comprehensive tests.")
480 (synopsis 7056 (description "Returns true if the value is a number. comprehensive tests.")
481 "Returns true if the value is a number. comprehensive tests.")
482 (description
483 "Returns true if the value is a number. comprehensive tests.")
484 (license license:expat))) 7057 (license license:expat)))
485 7058
486(define-public node-math-random-1.0.4 7059(define-public node-math-random-1.0.4
487 (package 7060 (package
488 (name "node-math-random") 7061 (name "node-math-random")
489 (version "1.0.4") 7062 (version "1.0.4")
490 (source 7063 (source (origin
491 (origin 7064 (method url-fetch)
492 (method url-fetch) 7065 (uri
493 (uri "https://registry.npmjs.org/math-random/-/math-random-1.0.4.tgz") 7066 "https://registry.npmjs.org/math-random/-/math-random-1.0.4.tgz")
494 (sha256 7067 (sha256
495 (base32 7068 (base32
496 "0882pbcf4m1irc214h2ddi3faspwah70813ryvxl14h3ar0jnqjx")))) 7069 "0882pbcf4m1irc214h2ddi3faspwah70813ryvxl14h3ar0jnqjx"))))
497 (build-system node-build-system) 7070 (build-system node-build-system)
498 (arguments 7071 (arguments
499 `(#:tests? 7072 '(#:tests? #f
500 #f 7073 #:phases (modify-phases %standard-phases
501 #:phases 7074 (delete 'build)
502 (modify-phases 7075 (add-after 'patch-dependencies 'delete-dev-dependencies
503 %standard-phases 7076 (lambda _
504 (delete 'configure) 7077 (delete-dependencies '("array-unique" "dexy")))))))
505 (delete 'build)))) 7078 (home-page "https://github.com/michaelrhodes/math-random#readme")
506 (home-page
507 "https://github.com/michaelrhodes/math-random#readme")
508 (synopsis 7079 (synopsis
509 "math-random is an drop-in replacement for Math.random that uses cryptographically secure random number generation, where available. It works in both browser and node environments.") 7080 "math-random is an drop-in replacement for Math.random that uses cryptographically secure random number generation, where available. It works in both browser and node environments.")
510 (description 7081 (description
511 "math-random is an drop-in replacement for Math.random that uses cryptographically secure random number generation, where available. It works in both browser and node environments.") 7082 "math-random is an drop-in replacement for Math.random that uses cryptographically secure random number generation, where available. It works in both browser and node environments.")
512 (license license:expat))) 7083 (license license:expat)))
513 7084
514(define-public node-randomatic-3.1.1 7085(define-public node-randomatic-3.1.1
515 (package 7086 (package
516 (name "node-randomatic") 7087 (name "node-randomatic")
517 (version "3.1.1") 7088 (version "3.1.1")
518 (source 7089 (source (origin
519 (origin 7090 (method url-fetch)
520 (method url-fetch) 7091 (uri
521 (uri "https://registry.npmjs.org/randomatic/-/randomatic-3.1.1.tgz") 7092 "https://registry.npmjs.org/randomatic/-/randomatic-3.1.1.tgz")
522 (sha256 7093 (sha256
523 (base32 7094 (base32
524 "1jawbnz6qqy98w7v45yp1wby00ykwrpmai5bmvbkw1nw9q56cy0p")))) 7095 "1jawbnz6qqy98w7v45yp1wby00ykwrpmai5bmvbkw1nw9q56cy0p"))))
525 (build-system node-build-system) 7096 (build-system node-build-system)
526 (arguments 7097 (arguments
527 `(#:tests? 7098 '(#:tests? #f
528 #f 7099 #:phases (modify-phases %standard-phases
529 #:phases 7100 (delete 'build)
530 (modify-phases 7101 (add-after 'patch-dependencies 'delete-dev-dependencies
531 %standard-phases 7102 (lambda _
532 (delete 'configure) 7103 (delete-dependencies '("ansi-bold" "benchmarked" "glob"
533 (delete 'build)))) 7104 "gulp-format-md" "mocha")))))))
534 (inputs 7105 (inputs `(("node-math-random" ,node-math-random-1.0.4)
535 `(("node-math-random" ,node-math-random-1.0.4) 7106 ("node-kind-of" ,node-kind-of-6.0.3)
536 ("node-kind-of" ,node-kind-of-6.0.3) 7107 ("node-is-number" ,node-is-number-4.0.0)))
537 ("node-is-number" ,node-is-number-4.0.0))) 7108 (home-page "https://github.com/jonschlinkert/randomatic")
538 (home-page
539 "https://github.com/jonschlinkert/randomatic")
540 (synopsis
541 "Generate randomized strings of a specified length using simple character sequences. The original generate-password.")
542 (description
543 "Generate randomized strings of a specified length using simple character sequences. The original generate-password.")
544 (license license:expat)))
545
546(define-public node-repeat-string-1.6.1
547 (package
548 (name "node-repeat-string")
549 (version "1.6.1")
550 (source
551 (origin
552 (method url-fetch)
553 (uri "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz")
554 (sha256
555 (base32
556 "1zmlk22rp97i5yfxqlb9hix87zlznngd60pm8qwhcg6bssacpq8b"))))
557 (build-system node-build-system)
558 (arguments
559 `(#:tests?
560 #f
561 #:phases
562 (modify-phases
563 %standard-phases
564 (delete 'configure)
565 (delete 'build))))
566 (home-page
567 "https://github.com/jonschlinkert/repeat-string")
568 (synopsis 7109 (synopsis
569 "Repeat the given string n times. Fastest implementation for repeating a string.") 7110 "Generate randomized strings of a specified length using simple character sequences. The original generate-password.")
570 (description 7111 (description
571 "Repeat the given string n times. Fastest implementation for repeating a string.") 7112 "Generate randomized strings of a specified length using simple character sequences. The original generate-password.")
572 (license license:expat))) 7113 (license license:expat)))
573 7114
574(define-public node-fill-range-2.2.4 7115(define-public node-fill-range-2.2.4
575 (package 7116 (package
576 (name "node-fill-range") 7117 (name "node-fill-range")
577 (version "2.2.4") 7118 (version "2.2.4")
578 (source 7119 (source (origin
579 (origin 7120 (method url-fetch)
580 (method url-fetch) 7121 (uri
581 (uri "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz") 7122 "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz")
582 (sha256 7123 (sha256
583 (base32 7124 (base32
584 "183q5x2pvh9xwbpm1lrhazqbm5pg400nxi6rirpks4980fiph7fi")))) 7125 "183q5x2pvh9xwbpm1lrhazqbm5pg400nxi6rirpks4980fiph7fi"))))
585 (build-system node-build-system) 7126 (build-system node-build-system)
586 (arguments 7127 (arguments
587 `(#:tests? 7128 '(#:tests? #f
588 #f 7129 #:phases (modify-phases %standard-phases
589 #:phases 7130 (delete 'build)
590 (modify-phases 7131 (add-after 'patch-dependencies 'delete-dev-dependencies
591 %standard-phases 7132 (lambda _
592 (delete 'configure) 7133 (delete-dependencies '("benchmarked" "chalk"
593 (delete 'build)))) 7134 "gulp-format-md" "should")))))))
594 (inputs 7135 (inputs `(("node-repeat-string" ,node-repeat-string-1.6.1)
595 `(("node-repeat-string" ,node-repeat-string-1.6.1) 7136 ("node-repeat-element" ,node-repeat-element-1.1.4)
596 ("node-repeat-element" 7137 ("node-randomatic" ,node-randomatic-3.1.1)
597 ,node-repeat-element-1.1.3) 7138 ("node-isobject" ,node-isobject-2.1.0)
598 ("node-randomatic" ,node-randomatic-3.1.1) 7139 ("node-is-number" ,node-is-number-2.1.0)))
599 ("node-isobject" ,node-isobject-2.1.0) 7140 (home-page "https://github.com/jonschlinkert/fill-range")
600 ("node-is-number" ,node-is-number-2.1.0))) 7141 (synopsis
601 (home-page 7142 "Fill in a range of numbers or letters, optionally passing an increment or multiplier to use.")
602 "https://github.com/jonschlinkert/fill-range") 7143 (description
603 (synopsis 7144 "Fill in a range of numbers or letters, optionally passing an increment or multiplier to use.")
604 "Fill in a range of numbers or letters, optionally passing an increment or multiplier to use.")
605 (description
606 "Fill in a range of numbers or letters, optionally passing an increment or multiplier to use.")
607 (license license:expat))) 7145 (license license:expat)))
608 7146
609(define-public node-expand-range-1.8.2 7147(define-public node-expand-range-1.8.2
610 (package 7148 (package
611 (name "node-expand-range") 7149 (name "node-expand-range")
612 (version "1.8.2") 7150 (version "1.8.2")
613 (source 7151 (source (origin
614 (origin 7152 (method url-fetch)
615 (method url-fetch) 7153 (uri
616 (uri "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz") 7154 "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz")
617 (sha256 7155 (sha256
618 (base32 7156 (base32
619 "1d78rg12y81sy87jfdr5i9a2dq7smg47w5s249f7bfgwlcn848zl")))) 7157 "1d78rg12y81sy87jfdr5i9a2dq7smg47w5s249f7bfgwlcn848zl"))))
620 (build-system node-build-system) 7158 (build-system node-build-system)
621 (arguments 7159 (arguments
622 `(#:tests? 7160 '(#:tests? #f
623 #f 7161 #:phases (modify-phases %standard-phases
624 #:phases 7162 (delete 'build)
625 (modify-phases 7163 (add-after 'patch-dependencies 'delete-dev-dependencies
626 %standard-phases 7164 (lambda _
627 (delete 'configure) 7165 (delete-dependencies '("benchmarked" "brace-expansion"
628 (delete 'build)))) 7166 "glob" "gulp-format-md"
629 (inputs 7167 "minimatch" "mocha")))))))
630 `(("node-fill-range" ,node-fill-range-2.2.4))) 7168 (inputs `(("node-fill-range" ,node-fill-range-2.2.4)))
631 (home-page 7169 (home-page "https://github.com/jonschlinkert/expand-range")
632 "https://github.com/jonschlinkert/expand-range")
633 (synopsis 7170 (synopsis
634 "Fast, bash-like range expansion. Expand a range of numbers or letters, uppercase or lowercase. See the benchmarks. Used by micromatch.") 7171 "Fast, bash-like range expansion. Expand a range of numbers or letters, uppercase or lowercase. See the benchmarks. Used by micromatch.")
635 (description 7172 (description
636 "Fast, bash-like range expansion. Expand a range of numbers or letters, uppercase or lowercase. See the benchmarks. Used by micromatch.") 7173 "Fast, bash-like range expansion. Expand a range of numbers or letters, uppercase or lowercase. See the benchmarks. Used by micromatch.")
637 (license license:expat))) 7174 (license license:expat)))
638 7175
639(define-public node-preserve-0.2.0 7176(define-public node-preserve-0.2.0
640 (package 7177 (package
641 (name "node-preserve") 7178 (name "node-preserve")
642 (version "0.2.0") 7179 (version "0.2.0")
643 (source 7180 (source (origin
644 (origin 7181 (method url-fetch)
645 (method url-fetch) 7182 (uri "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz")
646 (uri "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz") 7183 (sha256
647 (sha256 7184 (base32
648 (base32 7185 "10lk61d1axbbh6j2cglvbcxamn7vh6dy5mmgkc2agmj05nlmlkr9"))))
649 "10lk61d1axbbh6j2cglvbcxamn7vh6dy5mmgkc2agmj05nlmlkr9")))) 7186 (build-system node-build-system)
650 (build-system node-build-system) 7187 (arguments
651 (arguments 7188 '(#:tests? #f
652 `(#:tests? 7189 #:phases (modify-phases %standard-phases
653 #f 7190 (delete 'build)
654 #:phases 7191 (add-after 'patch-dependencies 'delete-dev-dependencies
655 (modify-phases 7192 (lambda _
656 %standard-phases 7193 (delete-dependencies '("benchmarked" "chalk"
657 (delete 'configure) 7194 "js-beautify" "mocha" "should")))))))
658 (delete 'build)))) 7195 (home-page "https://github.com/jonschlinkert/preserve")
659 (home-page
660 "https://github.com/jonschlinkert/preserve")
661 (synopsis 7196 (synopsis
662 "Temporarily substitute tokens in the given `string` with placeholders, then put them back after transforming the string.") 7197 "Temporarily substitute tokens in the given `string` with placeholders, then put them back after transforming the string.")
663 (description 7198 (description
664 "Temporarily substitute tokens in the given `string` with placeholders, then put them back after transforming the string.") 7199 "Temporarily substitute tokens in the given `string` with placeholders, then put them back after transforming the string.")
665 (license (license:non-copyleft "unknown")))) 7200 (license license:expat)))
666 7201
667(define-public node-braces-1.8.5 7202(define-public node-braces-1.8.5
668 (package 7203 (package
669 (name "node-braces") 7204 (name "node-braces")
670 (version "1.8.5") 7205 (version "1.8.5")
671 (source 7206 (source (origin
672 (origin 7207 (method url-fetch)
673 (method url-fetch) 7208 (uri "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz")
674 (uri "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz") 7209 (sha256
675 (sha256 7210 (base32
676 (base32 7211 "1593ijg9gjm1sgyk1cpqc71ac57md8izkhg4n5p18vnbri0xqzww"))))
677 "1593ijg9gjm1sgyk1cpqc71ac57md8izkhg4n5p18vnbri0xqzww")))) 7212 (build-system node-build-system)
678 (build-system node-build-system) 7213 (arguments
679 (arguments 7214 '(#:tests? #f
680 `(#:tests? 7215 #:phases (modify-phases %standard-phases
681 #f 7216 (delete 'build)
682 #:phases 7217 (add-after 'patch-dependencies 'delete-dev-dependencies
683 (modify-phases 7218 (lambda _
684 %standard-phases 7219 (delete-dependencies '("benchmarked" "brace-expansion"
685 (delete 'configure) 7220 "chalk"
686 (delete 'build)))) 7221 "gulp-format-md"
687 (inputs 7222 "minimatch"
688 `(("node-repeat-element" 7223 "minimist"
689 ,node-repeat-element-1.1.3) 7224 "mocha"
690 ("node-preserve" ,node-preserve-0.2.0) 7225 "should")))))))
691 ("node-expand-range" ,node-expand-range-1.8.2))) 7226 (inputs `(("node-repeat-element" ,node-repeat-element-1.1.4)
692 (home-page 7227 ("node-preserve" ,node-preserve-0.2.0)
693 "https://github.com/jonschlinkert/braces") 7228 ("node-expand-range" ,node-expand-range-1.8.2)))
694 (synopsis 7229 (home-page "https://github.com/jonschlinkert/braces")
695 "Fastest brace expansion for node.js, with the most complete support for the Bash 4.3 braces specification.") 7230 (synopsis
696 (description 7231 "Fastest brace expansion for node.js, with the most complete support for the Bash 4.3 braces specification.")
697 "Fastest brace expansion for node.js, with the most complete support for the Bash 4.3 braces specification.") 7232 (description
7233 "Fastest brace expansion for node.js, with the most complete support for the Bash 4.3 braces specification.")
698 (license license:expat))) 7234 (license license:expat)))
699 7235
700(define-public node-is-posix-bracket-0.1.1 7236(define-public node-is-posix-bracket-0.1.1
701 (package 7237 (package
702 (name "node-is-posix-bracket") 7238 (name "node-is-posix-bracket")
703 (version "0.1.1") 7239 (version "0.1.1")
704 (source 7240 (source (origin
705 (origin 7241 (method url-fetch)
706 (method url-fetch) 7242 (uri
707 (uri "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz") 7243 "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz")
708 (sha256 7244 (sha256
709 (base32 7245 (base32
710 "01yzwk96c7zvc0zlh7wg200ajpk1av5aahcgc1avxizwp53m1343")))) 7246 "01yzwk96c7zvc0zlh7wg200ajpk1av5aahcgc1avxizwp53m1343"))))
711 (build-system node-build-system) 7247 (build-system node-build-system)
712 (arguments 7248 (arguments
713 `(#:tests? 7249 '(#:tests? #f
714 #f 7250 #:phases (modify-phases %standard-phases
715 #:phases 7251 (delete 'build)
716 (modify-phases 7252 (add-after 'patch-dependencies 'delete-dev-dependencies
717 %standard-phases 7253 (lambda _
718 (delete 'configure) 7254 (delete-dependencies '("gulp-format-md" "mocha")))))))
719 (delete 'build)))) 7255 (home-page "https://github.com/jonschlinkert/is-posix-bracket")
720 (home-page
721 "https://github.com/jonschlinkert/is-posix-bracket")
722 (synopsis 7256 (synopsis
723 "Returns true if the given string is a POSIX bracket expression (POSIX character class).") 7257 "Returns true if the given string is a POSIX bracket expression (POSIX character class).")
724 (description 7258 (description
725 "Returns true if the given string is a POSIX bracket expression (POSIX character class).") 7259 "Returns true if the given string is a POSIX bracket expression (POSIX character class).")
726 (license license:expat))) 7260 (license license:expat)))
727 7261
728(define-public node-expand-brackets-0.1.5 7262(define-public node-expand-brackets-0.1.5
729 (package 7263 (package
730 (name "node-expand-brackets") 7264 (name "node-expand-brackets")
731 (version "0.1.5") 7265 (version "0.1.5")
732 (source 7266 (source (origin
733 (origin 7267 (method url-fetch)
734 (method url-fetch) 7268 (uri
735 (uri "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz") 7269 "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz")
736 (sha256 7270 (sha256
737 (base32 7271 (base32
738 "1fzgbcp2faxj7d6i41iybacbxaig8gpkx329dvcysic2yy2rn1c3")))) 7272 "1fzgbcp2faxj7d6i41iybacbxaig8gpkx329dvcysic2yy2rn1c3"))))
739 (build-system node-build-system) 7273 (build-system node-build-system)
740 (arguments 7274 (arguments
741 `(#:tests? 7275 '(#:tests? #f
742 #f 7276 #:phases (modify-phases %standard-phases
743 #:phases 7277 (delete 'build)
744 (modify-phases 7278 (add-after 'patch-dependencies 'delete-dev-dependencies
745 %standard-phases 7279 (lambda _
746 (delete 'configure) 7280 (delete-dependencies '("gulp-format-md" "mocha" "should")))))))
747 (delete 'build)))) 7281 (inputs `(("node-is-posix-bracket" ,node-is-posix-bracket-0.1.1)))
748 (inputs 7282 (home-page "https://github.com/jonschlinkert/expand-brackets")
749 `(("node-is-posix-bracket"
750 ,node-is-posix-bracket-0.1.1)))
751 (home-page
752 "https://github.com/jonschlinkert/expand-brackets")
753 (synopsis 7283 (synopsis
754 "Expand POSIX bracket expressions (character classes) in glob patterns.") 7284 "Expand POSIX bracket expressions (character classes) in glob patterns.")
755 (description 7285 (description
756 "Expand POSIX bracket expressions (character classes) in glob patterns.") 7286 "Expand POSIX bracket expressions (character classes) in glob patterns.")
757 (license license:expat))) 7287 (license license:expat)))
758 7288
759(define-public node-extglob-0.3.2 7289(define-public node-extglob-0.3.2
760 (package 7290 (package
761 (name "node-extglob") 7291 (name "node-extglob")
762 (version "0.3.2") 7292 (version "0.3.2")
763 (source 7293 (source (origin
764 (origin 7294 (method url-fetch)
765 (method url-fetch) 7295 (uri "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz")
766 (uri "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz") 7296 (sha256
767 (sha256 7297 (base32
768 (base32 7298 "161asrmll909bda6hzz8ayfym5sp35yp45s25dcbfs3d9qcz0m98"))))
769 "161asrmll909bda6hzz8ayfym5sp35yp45s25dcbfs3d9qcz0m98")))) 7299 (build-system node-build-system)
770 (build-system node-build-system) 7300 (arguments
771 (arguments 7301 '(#:tests? #f
772 `(#:tests? 7302 #:phases (modify-phases %standard-phases
773 #f 7303 (delete 'build)
774 #:phases 7304 (add-after 'patch-dependencies 'delete-dev-dependencies
775 (modify-phases 7305 (lambda _
776 %standard-phases 7306 (delete-dependencies '("ansi-green" "micromatch"
777 (delete 'configure) 7307 "minimatch"
778 (delete 'build)))) 7308 "minimist"
779 (inputs 7309 "mocha"
780 `(("node-is-extglob" ,node-is-extglob-1.0.0))) 7310 "should"
781 (home-page 7311 "success-symbol")))))))
782 "https://github.com/jonschlinkert/extglob") 7312 (inputs `(("node-is-extglob" ,node-is-extglob-1.0.0)))
7313 (home-page "https://github.com/jonschlinkert/extglob")
783 (synopsis 7314 (synopsis
784 "Convert extended globs to regex-compatible strings. Add (almost) the expressive power of regular expressions to glob patterns.") 7315 "Convert extended globs to regex-compatible strings. Add (almost) the expressive power of regular expressions to glob patterns.")
785 (description 7316 (description
786 "Convert extended globs to regex-compatible strings. Add (almost) the expressive power of regular expressions to glob patterns.") 7317 "Convert extended globs to regex-compatible strings. Add (almost) the expressive power of regular expressions to glob patterns.")
787 (license license:expat))) 7318 (license license:expat)))
788 7319
789(define-public node-filename-regex-2.0.1 7320(define-public node-filename-regex-2.0.1
790 (package 7321 (package
791 (name "node-filename-regex") 7322 (name "node-filename-regex")
792 (version "2.0.1") 7323 (version "2.0.1")
793 (source 7324 (source (origin
794 (origin 7325 (method url-fetch)
795 (method url-fetch) 7326 (uri
796 (uri "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz") 7327 "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz")
797 (sha256 7328 (sha256
798 (base32 7329 (base32
799 "0swl7rv3vxrrmpjfr9i5fdbghif1s2yj9mdxmx6c27mg2kx88ya2")))) 7330 "0swl7rv3vxrrmpjfr9i5fdbghif1s2yj9mdxmx6c27mg2kx88ya2"))))
800 (build-system node-build-system) 7331 (build-system node-build-system)
801 (arguments 7332 (arguments
802 `(#:tests? 7333 '(#:tests? #f
803 #f 7334 #:phases (modify-phases %standard-phases
804 #:phases 7335 (delete 'build)
805 (modify-phases 7336 (add-after 'patch-dependencies 'delete-dev-dependencies
806 %standard-phases 7337 (lambda _
807 (delete 'configure) 7338 (delete-dependencies '("gulp-format-md")))))))
808 (delete 'build)))) 7339 (home-page "https://github.com/regexhq/filename-regex")
809 (home-page
810 "https://github.com/regexhq/filename-regex")
811 (synopsis
812 "Regular expression for matching file names, with or without extension.")
813 (description
814 "Regular expression for matching file names, with or without extension.")
815 (license license:expat)))
816
817(define-public node-is-glob-2.0.1
818 (package
819 (name "node-is-glob")
820 (version "2.0.1")
821 (source
822 (origin
823 (method url-fetch)
824 (uri "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz")
825 (sha256
826 (base32
827 "1bchcw1g5fdi2mrz362hjhlxvrbbg2ppyz7dcqkldpxjl5x2n777"))))
828 (build-system node-build-system)
829 (arguments
830 `(#:tests?
831 #f
832 #:phases
833 (modify-phases
834 %standard-phases
835 (delete 'configure)
836 (delete 'build))))
837 (inputs
838 `(("node-is-extglob" ,node-is-extglob-1.0.0)))
839 (home-page
840 "https://github.com/jonschlinkert/is-glob")
841 (synopsis
842 "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a bet")
843 (description
844 "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a bet")
845 (license license:expat)))
846
847(define-public node-normalize-path-2.1.1
848 (package
849 (name "node-normalize-path")
850 (version "2.1.1")
851 (source
852 (origin
853 (method url-fetch)
854 (uri "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz")
855 (sha256
856 (base32
857 "1d82jyqqyqgk8qkzb4sk7vnz6sgf8xznlm55mazlp43fc6w100cj"))))
858 (build-system node-build-system)
859 (arguments
860 `(#:tests?
861 #f
862 #:phases
863 (modify-phases
864 %standard-phases
865 (delete 'configure)
866 (delete 'build))))
867 (inputs
868 `(("node-remove-trailing-separator"
869 ,node-remove-trailing-separator-1.1.0)))
870 (home-page
871 "https://github.com/jonschlinkert/normalize-path")
872 (synopsis
873 "Normalize file path slashes to be unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes unless disabled.")
874 (description
875 "Normalize file path slashes to be unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes unless disabled.")
876 (license license:expat)))
877
878(define-public node-for-in-1.0.2
879 (package
880 (name "node-for-in")
881 (version "1.0.2")
882 (source
883 (origin
884 (method url-fetch)
885 (uri "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz")
886 (sha256
887 (base32
888 "0pm8dx9gvp9p91my9fqivajq7yhnxmn8scl391pgcv6d8h6s6zaf"))))
889 (build-system node-build-system)
890 (arguments
891 `(#:tests?
892 #f
893 #:phases
894 (modify-phases
895 %standard-phases
896 (delete 'configure)
897 (delete 'build))))
898 (home-page
899 "https://github.com/jonschlinkert/for-in")
900 (synopsis 7340 (synopsis
901 "Iterate over the own and inherited enumerable properties of an object, and return an object with properties that evaluate to true from the callback. Exit early by returning `false`. JavaScript/Node.js") 7341 "Regular expression for matching file names, with or without extension.")
902 (description 7342 (description
903 "Iterate over the own and inherited enumerable properties of an object, and return an object with properties that evaluate to true from the callback. Exit early by returning `false`. JavaScript/Node.js") 7343 "Regular expression for matching file names, with or without extension.")
904 (license license:expat))) 7344 (license license:expat)))
905 7345
906(define-public node-for-own-0.1.5 7346(define-public node-for-own-0.1.5
907 (package 7347 (package
908 (name "node-for-own") 7348 (name "node-for-own")
909 (version "0.1.5") 7349 (version "0.1.5")
910 (source 7350 (source (origin
911 (origin 7351 (method url-fetch)
912 (method url-fetch) 7352 (uri "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz")
913 (uri "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz") 7353 (sha256
914 (sha256 7354 (base32
915 (base32 7355 "0bxjf90a7n1r0l5vm93zrz00qzip9s4g4c3pzdg3grn2fw53byph"))))
916 "0bxjf90a7n1r0l5vm93zrz00qzip9s4g4c3pzdg3grn2fw53byph")))) 7356 (build-system node-build-system)
917 (build-system node-build-system) 7357 (arguments
918 (arguments 7358 '(#:tests? #f
919 `(#:tests? 7359 #:phases (modify-phases %standard-phases
920 #f 7360 (delete 'build)
921 #:phases 7361 (add-after 'patch-dependencies 'delete-dev-dependencies
922 (modify-phases 7362 (lambda _
923 %standard-phases 7363 (delete-dependencies '("gulp-format-md" "mocha")))))))
924 (delete 'configure)
925 (delete 'build))))
926 (inputs `(("node-for-in" ,node-for-in-1.0.2))) 7364 (inputs `(("node-for-in" ,node-for-in-1.0.2)))
927 (home-page 7365 (home-page "https://github.com/jonschlinkert/for-own")
928 "https://github.com/jonschlinkert/for-own")
929 (synopsis 7366 (synopsis
930 "Iterate over the own enumerable properties of an object, and return an object with properties that evaluate to true from the callback. Exit early by returning `false`. JavaScript/Node.js.") 7367 "Iterate over the own enumerable properties of an object, and return an object with properties that evaluate to true from the callback. Exit early by returning `false`. JavaScript/Node.js.")
931 (description 7368 (description
932 "Iterate over the own enumerable properties of an object, and return an object with properties that evaluate to true from the callback. Exit early by returning `false`. JavaScript/Node.js.") 7369 "Iterate over the own enumerable properties of an object, and return an object with properties that evaluate to true from the callback. Exit early by returning `false`. JavaScript/Node.js.")
933 (license license:expat))) 7370 (license license:expat)))
934 7371
935(define-public node-object-omit-2.0.1 7372(define-public node-object-omit-2.0.1
936 (package 7373 (package
937 (name "node-object-omit") 7374 (name "node-object-omit")
938 (version "2.0.1") 7375 (version "2.0.1")
939 (source 7376 (source (origin
940 (origin 7377 (method url-fetch)
941 (method url-fetch) 7378 (uri
942 (uri "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz") 7379 "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz")
943 (sha256 7380 (sha256
944 (base32 7381 (base32
945 "1zyjhjfjgmqbnszcxqlvncg7kahc045sp5w1j8f0z92cq9y25zws")))) 7382 "1zyjhjfjgmqbnszcxqlvncg7kahc045sp5w1j8f0z92cq9y25zws"))))
946 (build-system node-build-system) 7383 (build-system node-build-system)
947 (arguments 7384 (arguments
948 `(#:tests? 7385 '(#:tests? #f
949 #f 7386 #:phases (modify-phases %standard-phases
950 #:phases 7387 (delete 'build)
951 (modify-phases 7388 (add-after 'patch-dependencies 'delete-dev-dependencies
952 %standard-phases 7389 (lambda _
953 (delete 'configure) 7390 (delete-dependencies '("gulp-format-md" "mocha" "should")))))))
954 (delete 'build)))) 7391 (inputs `(("node-is-extendable" ,node-is-extendable-0.1.1)
955 (inputs 7392 ("node-for-own" ,node-for-own-0.1.5)))
956 `(("node-is-extendable" ,node-is-extendable-0.1.1) 7393 (home-page "https://github.com/jonschlinkert/object.omit")
957 ("node-for-own" ,node-for-own-0.1.5)))
958 (home-page
959 "https://github.com/jonschlinkert/object.omit")
960 (synopsis 7394 (synopsis
961 "Return a copy of an object excluding the given key, or array of keys. Also accepts an optional filter function as the last argument.") 7395 "Return a copy of an object excluding the given key, or array of keys. Also accepts an optional filter function as the last argument.")
962 (description 7396 (description
963 "Return a copy of an object excluding the given key, or array of keys. Also accepts an optional filter function as the last argument.") 7397 "Return a copy of an object excluding the given key, or array of keys. Also accepts an optional filter function as the last argument.")
964 (license license:expat))) 7398 (license license:expat)))
965 7399
966(define-public node-glob-base-0.3.0 7400(define-public node-glob-base-0.3.0
967 (package 7401 (package
968 (name "node-glob-base") 7402 (name "node-glob-base")
969 (version "0.3.0") 7403 (version "0.3.0")
970 (source 7404 (source (origin
971 (origin 7405 (method url-fetch)
972 (method url-fetch) 7406 (uri
973 (uri "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz") 7407 "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz")
974 (sha256 7408 (sha256
975 (base32 7409 (base32
976 "19d8xlkbibp313hidn9ldliqx9n7qlscf7pgxwi5ld1rak5r7an7")))) 7410 "19d8xlkbibp313hidn9ldliqx9n7qlscf7pgxwi5ld1rak5r7an7"))))
977 (build-system node-build-system) 7411 (build-system node-build-system)
978 (arguments 7412 (arguments
979 `(#:tests? 7413 '(#:tests? #f
980 #f 7414 #:phases (modify-phases %standard-phases
981 #:phases 7415 (delete 'build)
982 (modify-phases 7416 (add-after 'patch-dependencies 'delete-dev-dependencies
983 %standard-phases 7417 (lambda _
984 (delete 'configure) 7418 (delete-dependencies '("mocha" "should")))))))
985 (delete 'build)))) 7419 (inputs `(("node-is-glob" ,node-is-glob-2.0.1)
986 (inputs 7420 ("node-glob-parent" ,node-glob-parent-2.0.0)))
987 `(("node-is-glob" ,node-is-glob-2.0.1) 7421 (home-page "https://github.com/jonschlinkert/glob-base")
988 ("node-glob-parent" ,node-glob-parent-2.0.0)))
989 (home-page
990 "https://github.com/jonschlinkert/glob-base")
991 (synopsis 7422 (synopsis
992 "Returns an object with the (non-glob) base path and the actual pattern.") 7423 "Returns an object with the (non-glob) base path and the actual pattern.")
993 (description 7424 (description
994 "Returns an object with the (non-glob) base path and the actual pattern.") 7425 "Returns an object with the (non-glob) base path and the actual pattern.")
995 (license (license:non-copyleft "unknown")))) 7426 (license license:expat)))
996 7427
997(define-public node-is-dotfile-1.0.3 7428(define-public node-is-dotfile-1.0.3
998 (package 7429 (package
999 (name "node-is-dotfile") 7430 (name "node-is-dotfile")
1000 (version "1.0.3") 7431 (version "1.0.3")
1001 (source 7432 (source (origin
1002 (origin 7433 (method url-fetch)
1003 (method url-fetch) 7434 (uri
1004 (uri "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz") 7435 "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz")
1005 (sha256 7436 (sha256
1006 (base32 7437 (base32
1007 "13k7xhnmgbirvqs0lrggm7knqhkghm73pdha2sb5fq6ys9l6bili")))) 7438 "13k7xhnmgbirvqs0lrggm7knqhkghm73pdha2sb5fq6ys9l6bili"))))
1008 (build-system node-build-system) 7439 (build-system node-build-system)
1009 (arguments 7440 (arguments
1010 `(#:tests? 7441 '(#:tests? #f
1011 #f 7442 #:phases (modify-phases %standard-phases
1012 #:phases 7443 (delete 'build)
1013 (modify-phases 7444 (add-after 'patch-dependencies 'delete-dev-dependencies
1014 %standard-phases 7445 (lambda _
1015 (delete 'configure) 7446 (delete-dependencies '("benchmarked" "dotfile-regex"
1016 (delete 'build)))) 7447 "gulp-format-md" "mocha")))))))
1017 (home-page 7448 (home-page "https://github.com/jonschlinkert/is-dotfile")
1018 "https://github.com/jonschlinkert/is-dotfile")
1019 (synopsis 7449 (synopsis
1020 "Return true if a file path is (or has) a dotfile. Returns false if the path is a dot directory.") 7450 "Return true if a file path is (or has) a dotfile. Returns false if the path is a dot directory.")
1021 (description 7451 (description
1022 "Return true if a file path is (or has) a dotfile. Returns false if the path is a dot directory.") 7452 "Return true if a file path is (or has) a dotfile. Returns false if the path is a dot directory.")
1023 (license license:expat))) 7453 (license license:expat)))
1024 7454
1025(define-public node-parse-glob-3.0.4 7455(define-public node-parse-glob-3.0.4
1026 (package 7456 (package
1027 (name "node-parse-glob") 7457 (name "node-parse-glob")
1028 (version "3.0.4") 7458 (version "3.0.4")
1029 (source 7459 (source (origin
1030 (origin 7460 (method url-fetch)
1031 (method url-fetch) 7461 (uri
1032 (uri "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz") 7462 "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz")
1033 (sha256 7463 (sha256
1034 (base32 7464 (base32
1035 "1pj6awfzkdl4i9ljmfcqgr16qh8pp11hqb1jsx5lq4rhw12laxmh")))) 7465 "1pj6awfzkdl4i9ljmfcqgr16qh8pp11hqb1jsx5lq4rhw12laxmh"))))
1036 (build-system node-build-system) 7466 (build-system node-build-system)
1037 (arguments 7467 (arguments
1038 `(#:tests? 7468 '(#:tests? #f
1039 #f 7469 #:phases (modify-phases %standard-phases
1040 #:phases 7470 (delete 'build)
1041 (modify-phases 7471 (add-after 'patch-dependencies 'delete-dev-dependencies
1042 %standard-phases 7472 (lambda _
1043 (delete 'configure) 7473 (delete-dependencies '("browserify" "lodash" "mocha")))))))
1044 (delete 'build)))) 7474 (inputs `(("node-is-glob" ,node-is-glob-2.0.1)
1045 (inputs 7475 ("node-is-extglob" ,node-is-extglob-1.0.0)
1046 `(("node-is-glob" ,node-is-glob-2.0.1) 7476 ("node-is-dotfile" ,node-is-dotfile-1.0.3)
1047 ("node-is-extglob" ,node-is-extglob-1.0.0) 7477 ("node-glob-base" ,node-glob-base-0.3.0)))
1048 ("node-is-dotfile" ,node-is-dotfile-1.0.3) 7478 (home-page "https://github.com/jonschlinkert/parse-glob")
1049 ("node-glob-base" ,node-glob-base-0.3.0))) 7479 (synopsis "Parse a glob pattern into an object of tokens.")
1050 (home-page 7480 (description "Parse a glob pattern into an object of tokens.")
1051 "https://github.com/jonschlinkert/parse-glob")
1052 (synopsis
1053 "Parse a glob pattern into an object of tokens.")
1054 (description
1055 "Parse a glob pattern into an object of tokens.")
1056 (license license:expat))) 7481 (license license:expat)))
1057 7482
1058(define-public node-is-primitive-2.0.0 7483(define-public node-is-primitive-2.0.0
1059 (package 7484 (package
1060 (name "node-is-primitive") 7485 (name "node-is-primitive")
1061 (version "2.0.0") 7486 (version "2.0.0")
1062 (source 7487 (source (origin
1063 (origin 7488 (method url-fetch)
1064 (method url-fetch) 7489 (uri
1065 (uri "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz") 7490 "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz")
1066 (sha256 7491 (sha256
1067 (base32 7492 (base32
1068 "1s57swffqif8vd6zkbw3d5lg25c9236r9m1s8c7c616dmx3c4bnd")))) 7493 "1s57swffqif8vd6zkbw3d5lg25c9236r9m1s8c7c616dmx3c4bnd"))))
1069 (build-system node-build-system) 7494 (build-system node-build-system)
1070 (arguments 7495 (arguments
1071 `(#:tests? 7496 '(#:tests? #f
1072 #f 7497 #:phases (modify-phases %standard-phases
1073 #:phases 7498 (delete 'build)
1074 (modify-phases 7499 (add-after 'patch-dependencies 'delete-dev-dependencies
1075 %standard-phases 7500 (lambda _
1076 (delete 'configure) 7501 (delete-dependencies '("mocha" "should")))))))
1077 (delete 'build)))) 7502 (home-page "https://github.com/jonschlinkert/is-primitive")
1078 (home-page 7503 (synopsis "Returns `true` if the value is a primitive. ")
1079 "https://github.com/jonschlinkert/is-primitive") 7504 (description "Returns `true` if the value is a primitive. ")
1080 (synopsis 7505 (license license:expat)))
1081 "Returns `true` if the value is a primitive. ")
1082 (description
1083 "Returns `true` if the value is a primitive. ")
1084 (license (license:non-copyleft "unknown"))))
1085 7506
1086(define-public node-is-equal-shallow-0.1.3 7507(define-public node-is-equal-shallow-0.1.3
1087 (package 7508 (package
1088 (name "node-is-equal-shallow") 7509 (name "node-is-equal-shallow")
1089 (version "0.1.3") 7510 (version "0.1.3")
1090 (source 7511 (source (origin
1091 (origin 7512 (method url-fetch)
1092 (method url-fetch) 7513 (uri
1093 (uri "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz") 7514 "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz")
1094 (sha256 7515 (sha256
1095 (base32 7516 (base32
1096 "1scqzxqgasmdyzw658nayiaykw4ba82rqkz83svrcdvjvp68phql")))) 7517 "1scqzxqgasmdyzw658nayiaykw4ba82rqkz83svrcdvjvp68phql"))))
1097 (build-system node-build-system) 7518 (build-system node-build-system)
1098 (arguments 7519 (arguments
1099 `(#:tests? 7520 '(#:tests? #f
1100 #f 7521 #:phases (modify-phases %standard-phases
1101 #:phases 7522 (delete 'build)
1102 (modify-phases 7523 (add-after 'patch-dependencies 'delete-dev-dependencies
1103 %standard-phases 7524 (lambda _
1104 (delete 'configure) 7525 (delete-dependencies '("mocha" "should")))))))
1105 (delete 'build)))) 7526 (inputs `(("node-is-primitive" ,node-is-primitive-2.0.0)))
1106 (inputs 7527 (home-page "https://github.com/jonschlinkert/is-equal-shallow")
1107 `(("node-is-primitive" ,node-is-primitive-2.0.0)))
1108 (home-page
1109 "https://github.com/jonschlinkert/is-equal-shallow")
1110 (synopsis 7528 (synopsis
1111 "Does a shallow comparison of two objects, returning false if the keys or values differ.") 7529 "Does a shallow comparison of two objects, returning false if the keys or values differ.")
1112 (description 7530 (description
1113 "Does a shallow comparison of two objects, returning false if the keys or values differ.") 7531 "Does a shallow comparison of two objects, returning false if the keys or values differ.")
1114 (license license:expat))) 7532 (license license:expat)))
1115 7533
1116(define-public node-regex-cache-0.4.4 7534(define-public node-regex-cache-0.4.4
1117 (package 7535 (package
1118 (name "node-regex-cache") 7536 (name "node-regex-cache")
1119 (version "0.4.4") 7537 (version "0.4.4")
1120 (source 7538 (source (origin
1121 (origin 7539 (method url-fetch)
1122 (method url-fetch) 7540 (uri
1123 (uri "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz") 7541 "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz")
1124 (sha256 7542 (sha256
1125 (base32 7543 (base32
1126 "100lg733jk0j378l77n72w5qfqzyrnacf744y2icp170wwsrvm36")))) 7544 "100lg733jk0j378l77n72w5qfqzyrnacf744y2icp170wwsrvm36"))))
1127 (build-system node-build-system) 7545 (build-system node-build-system)
1128 (arguments 7546 (arguments
1129 `(#:tests? 7547 '(#:tests? #f
1130 #f 7548 #:phases (modify-phases %standard-phases
1131 #:phases 7549 (delete 'build)
1132 (modify-phases 7550 (add-after 'patch-dependencies 'delete-dev-dependencies
1133 %standard-phases 7551 (lambda _
1134 (delete 'configure) 7552 (delete-dependencies '("ansi-bold" "benchmarked"
1135 (delete 'build)))) 7553 "gulp-format-md" "micromatch"
1136 (inputs 7554 "should")))))))
1137 `(("node-is-equal-shallow" 7555 (inputs `(("node-is-equal-shallow" ,node-is-equal-shallow-0.1.3)))
1138 ,node-is-equal-shallow-0.1.3))) 7556 (home-page "https://github.com/jonschlinkert/regex-cache")
1139 (home-page
1140 "https://github.com/jonschlinkert/regex-cache")
1141 (synopsis 7557 (synopsis
1142 "Memoize the results of a call to the RegExp constructor, avoiding repetitious runtime compilation of the same string and options, resulting in surprising performance improvements.") 7558 "Memoize the results of a call to the RegExp constructor, avoiding repetitious runtime compilation of the same string and options, resulting in surprising performance improvements.")
1143 (description 7559 (description
1144 "Memoize the results of a call to the RegExp constructor, avoiding repetitious runtime compilation of the same string and options, resulting in surprising performance improvements.") 7560 "Memoize the results of a call to the RegExp constructor, avoiding repetitious runtime compilation of the same string and options, resulting in surprising performance improvements.")
1145 (license license:expat))) 7561 (license license:expat)))
1146 7562
1147(define-public node-micromatch-2.3.11 7563(define-public node-micromatch-2.3.11
1148 (package 7564 (package
1149 (name "node-micromatch") 7565 (name "node-micromatch")
1150 (version "2.3.11") 7566 (version "2.3.11")
1151 (source 7567 (source (origin
1152 (origin 7568 (method url-fetch)
1153 (method url-fetch) 7569 (uri
1154 (uri "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz") 7570 "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz")
1155 (sha256 7571 (sha256
1156 (base32 7572 (base32
1157 "1gz4w1hn7sh17wv82j53d97pr5fli3747sv28fb00r7ghbn5zxla")))) 7573 "1gz4w1hn7sh17wv82j53d97pr5fli3747sv28fb00r7ghbn5zxla"))))
1158 (build-system node-build-system) 7574 (build-system node-build-system)
1159 (arguments 7575 (arguments
1160 `(#:tests? 7576 '(#:tests? #f
1161 #f 7577 #:phases (modify-phases %standard-phases
1162 #:phases 7578 (delete 'build)
1163 (modify-phases 7579 (add-after 'patch-dependencies 'delete-dev-dependencies
1164 %standard-phases 7580 (lambda _
1165 (delete 'configure) 7581 (delete-dependencies '("benchmarked" "chalk"
1166 (delete 'build)))) 7582 "gulp"
1167 (inputs 7583 "gulp-eslint"
1168 `(("node-regex-cache" ,node-regex-cache-0.4.4) 7584 "gulp-format-md"
1169 ("node-parse-glob" ,node-parse-glob-3.0.4) 7585 "gulp-istanbul"
1170 ("node-object-omit" ,node-object-omit-2.0.1) 7586 "gulp-mocha"
1171 ("node-normalize-path" 7587 "minimatch"
1172 ,node-normalize-path-2.1.1) 7588 "minimist"
1173 ("node-kind-of" ,node-kind-of-3.2.2) 7589 "mocha"
1174 ("node-is-glob" ,node-is-glob-2.0.1) 7590 "multimatch"
1175 ("node-is-extglob" ,node-is-extglob-1.0.0) 7591 "should"
1176 ("node-filename-regex" 7592 "write")))))))
1177 ,node-filename-regex-2.0.1) 7593 (inputs `(("node-regex-cache" ,node-regex-cache-0.4.4)
1178 ("node-extglob" ,node-extglob-0.3.2) 7594 ("node-parse-glob" ,node-parse-glob-3.0.4)
1179 ("node-expand-brackets" 7595 ("node-object-omit" ,node-object-omit-2.0.1)
1180 ,node-expand-brackets-0.1.5) 7596 ("node-normalize-path" ,node-normalize-path-2.1.1)
1181 ("node-braces" ,node-braces-1.8.5) 7597 ("node-kind-of" ,node-kind-of-3.2.2)
1182 ("node-array-unique" ,node-array-unique-0.2.1) 7598 ("node-is-glob" ,node-is-glob-2.0.1)
1183 ("node-arr-diff" ,node-arr-diff-2.0.0))) 7599 ("node-is-extglob" ,node-is-extglob-1.0.0)
1184 (home-page 7600 ("node-filename-regex" ,node-filename-regex-2.0.1)
1185 "https://github.com/jonschlinkert/micromatch") 7601 ("node-extglob" ,node-extglob-0.3.2)
1186 (synopsis 7602 ("node-expand-brackets" ,node-expand-brackets-0.1.5)
1187 "Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.") 7603 ("node-braces" ,node-braces-1.8.5)
1188 (description 7604 ("node-array-unique" ,node-array-unique-0.2.1)
1189 "Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.") 7605 ("node-arr-diff" ,node-arr-diff-2.0.0)))
7606 (home-page "https://github.com/jonschlinkert/micromatch")
7607 (synopsis
7608 "Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.")
7609 (description
7610 "Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.")
1190 (license license:expat))) 7611 (license license:expat)))
1191 7612
1192(define-public node-remove-trailing-separator-1.1.0 7613(define-public node-remove-trailing-separator-1.1.0
1193 (package 7614 (package
1194 (name "node-remove-trailing-separator") 7615 (name "node-remove-trailing-separator")
1195 (version "1.1.0") 7616 (version "1.1.0")
1196 (source 7617 (source (origin
1197 (origin 7618 (method url-fetch)
1198 (method url-fetch) 7619 (uri
1199 (uri "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz") 7620 "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz")
1200 (sha256 7621 (sha256
1201 (base32 7622 (base32
1202 "08b3msz9s5kw1alivgn9saaz6w04grjqppkdk3qbr7blk38l04sf")))) 7623 "08b3msz9s5kw1alivgn9saaz6w04grjqppkdk3qbr7blk38l04sf"))))
1203 (build-system node-build-system) 7624 (build-system node-build-system)
1204 (arguments 7625 (arguments
1205 `(#:tests? 7626 '(#:tests? #f
1206 #f 7627 #:phases (modify-phases %standard-phases
1207 #:phases 7628 (delete 'build)
1208 (modify-phases 7629 (add-after 'patch-dependencies 'delete-dev-dependencies
1209 %standard-phases 7630 (lambda _
1210 (delete 'configure) 7631 (delete-dependencies '("ava" "coveralls" "nyc" "xo")))))))
1211 (delete 'build)))) 7632 (home-page "https://github.com/darsain/remove-trailing-separator#readme")
1212 (home-page 7633 (synopsis "Removes separators from the end of the string.")
1213 "https://github.com/darsain/remove-trailing-separator#readme") 7634 (description "Removes separators from the end of the string.")
7635 (license license:isc)))
7636
7637(define-public node-normalize-path-2.1.1
7638 (package
7639 (name "node-normalize-path")
7640 (version "2.1.1")
7641 (source (origin
7642 (method url-fetch)
7643 (uri
7644 "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz")
7645 (sha256
7646 (base32
7647 "1d82jyqqyqgk8qkzb4sk7vnz6sgf8xznlm55mazlp43fc6w100cj"))))
7648 (build-system node-build-system)
7649 (arguments
7650 '(#:tests? #f
7651 #:phases (modify-phases %standard-phases
7652 (delete 'build)
7653 (add-after 'patch-dependencies 'delete-dev-dependencies
7654 (lambda _
7655 (delete-dependencies '("benchmarked" "gulp-format-md"
7656 "minimist" "mocha")))))))
7657 (inputs `(("node-remove-trailing-separator" ,node-remove-trailing-separator-1.1.0)))
7658 (home-page "https://github.com/jonschlinkert/normalize-path")
1214 (synopsis 7659 (synopsis
1215 "Removes separators from the end of the string.") 7660 "Normalize file path slashes to be unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes unless disabled.")
1216 (description 7661 (description
1217 "Removes separators from the end of the string.") 7662 "Normalize file path slashes to be unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes unless disabled.")
1218 (license license:isc))) 7663 (license license:expat)))
1219 7664
1220(define-public node-anymatch-1.3.2 7665(define-public node-anymatch-1.3.2
1221 (package 7666 (package
1222 (name "node-anymatch") 7667 (name "node-anymatch")
1223 (version "1.3.2") 7668 (version "1.3.2")
1224 (source 7669 (source (origin
1225 (origin 7670 (method url-fetch)
1226 (method url-fetch) 7671 (uri "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz")
1227 (uri "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz") 7672 (sha256
1228 (sha256 7673 (base32
1229 (base32 7674 "1lr9c0ki26rl2xnbiqj8smgw0b5r5ns3jxmr41s4cwbkrh6jjfxs"))))
1230 "1lr9c0ki26rl2xnbiqj8smgw0b5r5ns3jxmr41s4cwbkrh6jjfxs")))) 7675 (build-system node-build-system)
1231 (build-system node-build-system) 7676 (arguments
1232 (arguments 7677 '(#:tests? #f
1233 `(#:tests? 7678 #:phases (modify-phases %standard-phases
1234 #f 7679 (delete 'build)
1235 #:phases 7680 (add-after 'patch-dependencies 'delete-dev-dependencies
1236 (modify-phases 7681 (lambda _
1237 %standard-phases 7682 (delete-dependencies '("coveralls" "istanbul" "mocha")))))))
1238 (delete 'configure) 7683 (inputs `(("node-normalize-path" ,node-normalize-path-2.1.1)
1239 (delete 'build)))) 7684 ("node-micromatch" ,node-micromatch-2.3.11)))
1240 (inputs
1241 `(("node-normalize-path"
1242 ,node-normalize-path-2.1.1)
1243 ("node-micromatch" ,node-micromatch-2.3.11)))
1244 (home-page "https://github.com/es128/anymatch") 7685 (home-page "https://github.com/es128/anymatch")
1245 (synopsis 7686 (synopsis
1246 "Matches strings against configurable strings, globs, regular expressions, and/or functions") 7687 "Matches strings against configurable strings, globs, regular expressions, and/or functions")
1247 (description 7688 (description
1248 "Matches strings against configurable strings, globs, regular expressions, and/or functions") 7689 "Matches strings against configurable strings, globs, regular expressions, and/or functions")
1249 (license license:isc))) 7690 (license license:isc)))
1250 7691
1251(define-public node-async-each-1.0.3 7692(define-public node-async-each-1.0.6
1252 (package 7693 (package
1253 (name "node-async-each") 7694 (name "node-async-each")
1254 (version "1.0.3") 7695 (version "1.0.6")
1255 (source 7696 (source (origin
1256 (origin 7697 (method url-fetch)
1257 (method url-fetch) 7698 (uri
1258 (uri "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz") 7699 "https://registry.npmjs.org/async-each/-/async-each-1.0.6.tgz")
1259 (sha256 7700 (sha256
1260 (base32 7701 (base32
1261 "0qv3hchym99lkq4jsikkdirwxzs3kifdfpyrinazc543hipbhxla")))) 7702 "0gwpwdm80y3bj88m63yjjsp7v8xvsmmm8d6wm1hmnp0gk4wsb82b"))))
1262 (build-system node-build-system) 7703 (build-system node-build-system)
1263 (arguments 7704 (arguments
1264 `(#:tests? 7705 '(#:tests? #f
1265 #f 7706 #:phases (modify-phases %standard-phases
1266 #:phases 7707 (delete 'build))))
1267 (modify-phases 7708 (home-page "https://github.com/paulmillr/async-each/")
1268 %standard-phases
1269 (delete 'configure)
1270 (delete 'build))))
1271 (home-page
1272 "https://github.com/paulmillr/async-each/")
1273 (synopsis 7709 (synopsis
1274 "No-bullshit, ultra-simple, 35-lines-of-code async parallel forEach / map function for JavaScript.") 7710 "No-bullshit, ultra-simple, 35-lines-of-code async parallel forEach / map function for JavaScript.")
1275 (description 7711 (description
1276 "No-bullshit, ultra-simple, 35-lines-of-code async parallel forEach / map function for JavaScript.") 7712 "No-bullshit, ultra-simple, 35-lines-of-code async parallel forEach / map function for JavaScript.")
1277 (license license:expat))) 7713 (license license:expat)))
1278 7714
1279(define-public node-glob-parent-2.0.0 7715(define-public node-glob-parent-2.0.0
1280 (package 7716 (package
1281 (name "node-glob-parent") 7717 (name "node-glob-parent")
1282 (version "2.0.0") 7718 (version "2.0.0")
1283 (source 7719 (source (origin
1284 (origin 7720 (method url-fetch)
1285 (method url-fetch) 7721 (uri
1286 (uri "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz") 7722 "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz")
1287 (sha256 7723 (sha256
1288 (base32 7724 (base32
1289 "0kc5f3hd4n5aj58gvaslcfqnadx3zwk1qwmilgggqf5jv4wc0cb3")))) 7725 "0kc5f3hd4n5aj58gvaslcfqnadx3zwk1qwmilgggqf5jv4wc0cb3"))))
1290 (build-system node-build-system) 7726 (build-system node-build-system)
1291 (arguments 7727 (arguments
1292 `(#:tests? 7728 '(#:tests? #f
1293 #f 7729 #:phases (modify-phases %standard-phases
1294 #:phases 7730 (delete 'build)
1295 (modify-phases 7731 (add-after 'patch-dependencies 'delete-dev-dependencies
1296 %standard-phases 7732 (lambda _
1297 (delete 'configure) 7733 (delete-dependencies '("coveralls" "istanbul" "mocha")))))))
1298 (delete 'build))))
1299 (inputs `(("node-is-glob" ,node-is-glob-2.0.1))) 7734 (inputs `(("node-is-glob" ,node-is-glob-2.0.1)))
1300 (home-page 7735 (home-page "https://github.com/es128/glob-parent")
1301 "https://github.com/es128/glob-parent") 7736 (synopsis "Strips glob magic from a string to provide the parent path")
1302 (synopsis 7737 (description "Strips glob magic from a string to provide the parent path")
1303 "Strips glob magic from a string to provide the parent path")
1304 (description
1305 "Strips glob magic from a string to provide the parent path")
1306 (license license:isc)))
1307
1308(define-public node-inherits-2.0.4
1309 (package
1310 (name "node-inherits")
1311 (version "2.0.4")
1312 (source
1313 (origin
1314 (method url-fetch)
1315 (uri "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz")
1316 (sha256
1317 (base32
1318 "1bxg4igfni2hymabg8bkw86wd3qhhzhsswran47sridk3dnbqkfr"))))
1319 (build-system node-build-system)
1320 (arguments
1321 `(#:tests?
1322 #f
1323 #:phases
1324 (modify-phases
1325 %standard-phases
1326 (delete 'configure)
1327 (delete 'build))))
1328 (home-page
1329 "https://github.com/isaacs/inherits#readme")
1330 (synopsis
1331 "Browser-friendly inheritance fully compatible with standard node.js inherits()")
1332 (description
1333 "Browser-friendly inheritance fully compatible with standard node.js inherits()")
1334 (license license:isc))) 7738 (license license:isc)))
1335 7739
1336(define-public node-binary-extensions-1.13.1 7740(define-public node-binary-extensions-1.13.1
1337 (package 7741 (package
1338 (name "node-binary-extensions") 7742 (name "node-binary-extensions")
1339 (version "1.13.1") 7743 (version "1.13.1")
1340 (source 7744 (source (origin
1341 (origin 7745 (method url-fetch)
1342 (method url-fetch) 7746 (uri
1343 (uri "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz") 7747 "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz")
1344 (sha256 7748 (sha256
1345 (base32 7749 (base32
1346 "172h5sjqa46zwblrzbjqdr0v3jjcasfvsgm6zqq5jgd6xxjq2kkh")))) 7750 "172h5sjqa46zwblrzbjqdr0v3jjcasfvsgm6zqq5jgd6xxjq2kkh"))))
1347 (build-system node-build-system) 7751 (build-system node-build-system)
1348 (arguments 7752 (arguments
1349 `(#:tests? 7753 '(#:tests? #f
1350 #f 7754 #:phases (modify-phases %standard-phases
1351 #:phases 7755 (delete 'build)
1352 (modify-phases 7756 (add-after 'patch-dependencies 'delete-dev-dependencies
1353 %standard-phases 7757 (lambda _
1354 (delete 'configure) 7758 (delete-dependencies '("ava")))))))
1355 (delete 'build)))) 7759 (home-page "https://github.com/sindresorhus/binary-extensions#readme")
1356 (home-page
1357 "https://github.com/sindresorhus/binary-extensions#readme")
1358 (synopsis "List of binary file extensions") 7760 (synopsis "List of binary file extensions")
1359 (description "List of binary file extensions") 7761 (description "List of binary file extensions")
1360 (license license:expat))) 7762 (license license:expat)))
@@ -1363,879 +7765,780 @@
1363 (package 7765 (package
1364 (name "node-is-binary-path") 7766 (name "node-is-binary-path")
1365 (version "1.0.1") 7767 (version "1.0.1")
1366 (source 7768 (source (origin
1367 (origin 7769 (method url-fetch)
1368 (method url-fetch) 7770 (uri
1369 (uri "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz") 7771 "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz")
1370 (sha256 7772 (sha256
1371 (base32 7773 (base32
1372 "05ylaj9wal46fvlzz34fbfmb0v870bc69k1h9l0lqgkbs1091vpl")))) 7774 "05ylaj9wal46fvlzz34fbfmb0v870bc69k1h9l0lqgkbs1091vpl"))))
1373 (build-system node-build-system) 7775 (build-system node-build-system)
1374 (arguments 7776 (arguments
1375 `(#:tests? 7777 '(#:tests? #f
1376 #f 7778 #:phases (modify-phases %standard-phases
1377 #:phases 7779 (delete 'build)
1378 (modify-phases 7780 (add-after 'patch-dependencies 'delete-dev-dependencies
1379 %standard-phases 7781 (lambda _
1380 (delete 'configure) 7782 (delete-dependencies '("ava")))))))
1381 (delete 'build)))) 7783 (inputs `(("node-binary-extensions" ,node-binary-extensions-1.13.1)))
1382 (inputs 7784 (home-page "https://github.com/sindresorhus/is-binary-path")
1383 `(("node-binary-extensions"
1384 ,node-binary-extensions-1.13.1)))
1385 (home-page
1386 "https://github.com/sindresorhus/is-binary-path")
1387 (synopsis "Check if a filepath is a binary file") 7785 (synopsis "Check if a filepath is a binary file")
1388 (description 7786 (description "Check if a filepath is a binary file")
1389 "Check if a filepath is a binary file")
1390 (license license:expat))) 7787 (license license:expat)))
1391 7788
1392(define-public node-is-extglob-1.0.0 7789(define-public node-is-extglob-1.0.0
1393 (package 7790 (package
1394 (name "node-is-extglob") 7791 (name "node-is-extglob")
1395 (version "1.0.0") 7792 (version "1.0.0")
1396 (source 7793 (source (origin
1397 (origin 7794 (method url-fetch)
1398 (method url-fetch) 7795 (uri
1399 (uri "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz") 7796 "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz")
1400 (sha256 7797 (sha256
1401 (base32 7798 (base32
1402 "17arbivg9gky2l24xr5jjr2zpqslq73amb7sgp1flnadqcxmcgj7")))) 7799 "17arbivg9gky2l24xr5jjr2zpqslq73amb7sgp1flnadqcxmcgj7"))))
1403 (build-system node-build-system) 7800 (build-system node-build-system)
1404 (arguments 7801 (arguments
1405 `(#:tests? 7802 '(#:tests? #f
1406 #f 7803 #:phases (modify-phases %standard-phases
1407 #:phases 7804 (delete 'build)
1408 (modify-phases 7805 (add-after 'patch-dependencies 'delete-dev-dependencies
1409 %standard-phases 7806 (lambda _
1410 (delete 'configure) 7807 (delete-dependencies '("mocha" "should")))))))
1411 (delete 'build)))) 7808 (home-page "https://github.com/jonschlinkert/is-extglob")
1412 (home-page 7809 (synopsis "Returns true if a string has an extglob.")
1413 "https://github.com/jonschlinkert/is-extglob") 7810 (description "Returns true if a string has an extglob.")
1414 (synopsis
1415 "Returns true if a string has an extglob.")
1416 (description
1417 "Returns true if a string has an extglob.")
1418 (license license:expat))) 7811 (license license:expat)))
1419 7812
1420(define-public node-graceful-fs-4.2.6 7813(define-public node-is-glob-2.0.1
1421 (package 7814 (package
1422 (name "node-graceful-fs") 7815 (name "node-is-glob")
1423 (version "4.2.6") 7816 (version "2.0.1")
1424 (source 7817 (source (origin
1425 (origin 7818 (method url-fetch)
1426 (method url-fetch) 7819 (uri "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz")
1427 (uri "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz") 7820 (sha256
1428 (sha256 7821 (base32
1429 (base32 7822 "1bchcw1g5fdi2mrz362hjhlxvrbbg2ppyz7dcqkldpxjl5x2n777"))))
1430 "0dz5rck3zvvblkxq2234654axjslp6ackixnb5dsh9nzxm8l4cr5")))) 7823 (build-system node-build-system)
1431 (build-system node-build-system) 7824 (arguments
1432 (arguments 7825 '(#:tests? #f
1433 `(#:tests? 7826 #:phases (modify-phases %standard-phases
1434 #f 7827 (delete 'build)
1435 #:phases 7828 (add-after 'patch-dependencies 'delete-dev-dependencies
1436 (modify-phases 7829 (lambda _
1437 %standard-phases 7830 (delete-dependencies '("mocha")))))))
1438 (delete 'configure) 7831 (inputs `(("node-is-extglob" ,node-is-extglob-1.0.0)))
1439 (delete 'build)))) 7832 (home-page "https://github.com/jonschlinkert/is-glob")
1440 (home-page
1441 "https://github.com/isaacs/node-graceful-fs#readme")
1442 (synopsis 7833 (synopsis
1443 "A drop-in replacement for fs, making various improvements.") 7834 "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a bet")
1444 (description 7835 (description
1445 "A drop-in replacement for fs, making various improvements.") 7836 "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a bet")
1446 (license license:isc))) 7837 (license license:expat)))
7838
7839(define-public node-arr-flatten-1.1.0
7840 (package
7841 (name "node-arr-flatten")
7842 (version "1.1.0")
7843 (source (origin
7844 (method url-fetch)
7845 (uri
7846 "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz")
7847 (sha256
7848 (base32
7849 "0amnq01y6y8j49rdcib9yh8n95wk2ajs3qcckccvv1x6bf6nfvay"))))
7850 (build-system node-build-system)
7851 (arguments
7852 '(#:tests? #f
7853 #:phases (modify-phases %standard-phases
7854 (delete 'build)
7855 (add-after 'patch-dependencies 'delete-dev-dependencies
7856 (lambda _
7857 (delete-dependencies '("ansi-bold" "array-flatten"
7858 "array-slice"
7859 "benchmarked"
7860 "compute-flatten"
7861 "flatit"
7862 "flatten"
7863 "flatten-array"
7864 "glob"
7865 "gulp-format-md"
7866 "just-flatten-it"
7867 "lodash.flattendeep"
7868 "m_flattened"
7869 "mocha"
7870 "utils-flatten"
7871 "write")))))))
7872 (home-page "https://github.com/jonschlinkert/arr-flatten")
7873 (synopsis "Recursively flatten an array or arrays.")
7874 (description "Recursively flatten an array or arrays.")
7875 (license license:expat)))
7876
7877(define-public node-repeat-string-1.6.1
7878 (package
7879 (name "node-repeat-string")
7880 (version "1.6.1")
7881 (source (origin
7882 (method url-fetch)
7883 (uri
7884 "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz")
7885 (sha256
7886 (base32
7887 "1zmlk22rp97i5yfxqlb9hix87zlznngd60pm8qwhcg6bssacpq8b"))))
7888 (build-system node-build-system)
7889 (arguments
7890 '(#:tests? #f
7891 #:phases (modify-phases %standard-phases
7892 (delete 'build)
7893 (add-after 'patch-dependencies 'delete-dev-dependencies
7894 (lambda _
7895 (delete-dependencies '("ansi-cyan" "benchmarked"
7896 "gulp-format-md"
7897 "isobject"
7898 "mocha"
7899 "repeating"
7900 "text-table"
7901 "yargs-parser")))))))
7902 (home-page "https://github.com/jonschlinkert/repeat-string")
7903 (synopsis
7904 "Repeat the given string n times. Fastest implementation for repeating a string.")
7905 (description
7906 "Repeat the given string n times. Fastest implementation for repeating a string.")
7907 (license license:expat)))
1447 7908
1448(define-public node-to-regex-range-2.1.1 7909(define-public node-to-regex-range-2.1.1
1449 (package 7910 (package
1450 (name "node-to-regex-range") 7911 (name "node-to-regex-range")
1451 (version "2.1.1") 7912 (version "2.1.1")
1452 (source 7913 (source (origin
1453 (origin 7914 (method url-fetch)
1454 (method url-fetch) 7915 (uri
1455 (uri "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz") 7916 "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz")
1456 (sha256 7917 (sha256
1457 (base32 7918 (base32
1458 "0rw8mjvncwxhyg5m7mzwqg16ddpyq5qzdwds0v0jnskqhklh14bq")))) 7919 "0rw8mjvncwxhyg5m7mzwqg16ddpyq5qzdwds0v0jnskqhklh14bq"))))
1459 (build-system node-build-system) 7920 (build-system node-build-system)
1460 (arguments 7921 (arguments
1461 `(#:tests? 7922 '(#:tests? #f
1462 #f 7923 #:phases (modify-phases %standard-phases
1463 #:phases 7924 (delete 'build)
1464 (modify-phases 7925 (add-after 'patch-dependencies 'delete-dev-dependencies
1465 %standard-phases 7926 (lambda _
1466 (delete 'configure) 7927 (delete-dependencies '("fill-range" "gulp-format-md"
1467 (delete 'build)))) 7928 "mocha" "text-table" "time-diff")))))))
1468 (inputs 7929 (inputs `(("node-repeat-string" ,node-repeat-string-1.6.1)
1469 `(("node-repeat-string" ,node-repeat-string-1.6.1) 7930 ("node-is-number" ,node-is-number-3.0.0)))
1470 ("node-is-number" ,node-is-number-3.0.0))) 7931 (home-page "https://github.com/micromatch/to-regex-range")
1471 (home-page
1472 "https://github.com/micromatch/to-regex-range")
1473 (synopsis 7932 (synopsis
1474 "Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions.") 7933 "Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions.")
1475 (description 7934 (description
1476 "Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions.") 7935 "Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions.")
1477 (license license:expat))) 7936 (license license:expat)))
1478 7937
1479(define-public node-fill-range-4.0.0 7938(define-public node-fill-range-4.0.0
1480 (package 7939 (package
1481 (name "node-fill-range") 7940 (name "node-fill-range")
1482 (version "4.0.0") 7941 (version "4.0.0")
1483 (source 7942 (source (origin
1484 (origin 7943 (method url-fetch)
1485 (method url-fetch) 7944 (uri
1486 (uri "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz") 7945 "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz")
1487 (sha256 7946 (sha256
1488 (base32 7947 (base32
1489 "14kaakn1yhkfsclqds0pg1g87aibi8nkrwn0axvfasj495hv2wzx")))) 7948 "14kaakn1yhkfsclqds0pg1g87aibi8nkrwn0axvfasj495hv2wzx"))))
1490 (build-system node-build-system) 7949 (build-system node-build-system)
1491 (arguments 7950 (arguments
1492 `(#:tests? 7951 '(#:tests? #f
1493 #f 7952 #:phases (modify-phases %standard-phases
1494 #:phases 7953 (delete 'build)
1495 (modify-phases 7954 (add-after 'patch-dependencies 'delete-dev-dependencies
1496 %standard-phases 7955 (lambda _
1497 (delete 'configure) 7956 (delete-dependencies '("ansi-cyan" "benchmarked"
1498 (delete 'build)))) 7957 "gulp-format-md" "minimist"
1499 (inputs 7958 "mocha")))))))
1500 `(("node-to-regex-range" 7959 (inputs `(("node-to-regex-range" ,node-to-regex-range-2.1.1)
1501 ,node-to-regex-range-2.1.1) 7960 ("node-repeat-string" ,node-repeat-string-1.6.1)
1502 ("node-repeat-string" ,node-repeat-string-1.6.1) 7961 ("node-is-number" ,node-is-number-3.0.0)
1503 ("node-is-number" ,node-is-number-3.0.0) 7962 ("node-extend-shallow" ,node-extend-shallow-2.0.1)))
1504 ("node-extend-shallow" 7963 (home-page "https://github.com/jonschlinkert/fill-range")
1505 ,node-extend-shallow-2.0.1)))
1506 (home-page
1507 "https://github.com/jonschlinkert/fill-range")
1508 (synopsis 7964 (synopsis
1509 "Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`") 7965 "Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`")
1510 (description 7966 (description
1511 "Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`") 7967 "Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`")
1512 (license license:expat))) 7968 (license license:expat)))
1513 7969
1514(define-public node-repeat-element-1.1.3 7970(define-public node-repeat-element-1.1.4
1515 (package 7971 (package
1516 (name "node-repeat-element") 7972 (name "node-repeat-element")
1517 (version "1.1.3") 7973 (version "1.1.4")
1518 (source 7974 (source (origin
1519 (origin 7975 (method url-fetch)
1520 (method url-fetch) 7976 (uri
1521 (uri "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz") 7977 "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz")
1522 (sha256 7978 (sha256
1523 (base32 7979 (base32
1524 "1p71vsqclms9dxadcpnaajh8jkp3acxlkv6xic7f9x98dpdss8g6")))) 7980 "0iy9kfkd7dj9lh1pk7ffq8yxh4v0kb96azkj7yg0g9p34bab0vrn"))))
1525 (build-system node-build-system) 7981 (build-system node-build-system)
1526 (arguments 7982 (arguments
1527 `(#:tests? 7983 '(#:tests? #f
1528 #f 7984 #:phases (modify-phases %standard-phases
1529 #:phases 7985 (delete 'build)
1530 (modify-phases 7986 (add-after 'patch-dependencies 'delete-dev-dependencies
1531 %standard-phases 7987 (lambda _
1532 (delete 'configure) 7988 (delete-dependencies '("benchmarked" "chalk" "glob"
1533 (delete 'build)))) 7989 "gulp-format-md" "minimist"
1534 (home-page 7990 "mocha")))))))
1535 "https://github.com/jonschlinkert/repeat-element") 7991 (home-page "https://github.com/jonschlinkert/repeat-element")
1536 (synopsis 7992 (synopsis "Create an array by repeating the given value n times.")
1537 "Create an array by repeating the given value n times.") 7993 (description "Create an array by repeating the given value n times.")
1538 (description
1539 "Create an array by repeating the given value n times.")
1540 (license license:expat)))
1541
1542(define-public node-kind-of-3.2.2
1543 (package
1544 (name "node-kind-of")
1545 (version "3.2.2")
1546 (source
1547 (origin
1548 (method url-fetch)
1549 (uri "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz")
1550 (sha256
1551 (base32
1552 "0isxns331nf5f4h8yj0vb4rj626bscxh1rh7j92vk8lbzcs2x93q"))))
1553 (build-system node-build-system)
1554 (arguments
1555 `(#:tests?
1556 #f
1557 #:phases
1558 (modify-phases
1559 %standard-phases
1560 (delete 'configure)
1561 (delete 'build))))
1562 (inputs
1563 `(("node-is-buffer" ,node-is-buffer-1.1.6)))
1564 (home-page
1565 "https://github.com/jonschlinkert/kind-of")
1566 (synopsis "Get the native type of a value.")
1567 (description "Get the native type of a value.")
1568 (license license:expat))) 7994 (license license:expat)))
1569 7995
1570(define-public node-snapdragon-util-3.0.1 7996(define-public node-snapdragon-util-3.0.1
1571 (package 7997 (package
1572 (name "node-snapdragon-util") 7998 (name "node-snapdragon-util")
1573 (version "3.0.1") 7999 (version "3.0.1")
1574 (source 8000 (source (origin
1575 (origin 8001 (method url-fetch)
1576 (method url-fetch) 8002 (uri
1577 (uri "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz") 8003 "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz")
1578 (sha256 8004 (sha256
1579 (base32 8005 (base32
1580 "0c4fcrilagmpsrhh4mjfj7ah0vdxwkm9a4h5658bj8m7machxm2f")))) 8006 "0c4fcrilagmpsrhh4mjfj7ah0vdxwkm9a4h5658bj8m7machxm2f"))))
1581 (build-system node-build-system) 8007 (build-system node-build-system)
1582 (arguments 8008 (arguments
1583 `(#:tests? 8009 '(#:tests? #f
1584 #f 8010 #:phases (modify-phases %standard-phases
1585 #:phases 8011 (delete 'build)
1586 (modify-phases 8012 (add-after 'patch-dependencies 'delete-dev-dependencies
1587 %standard-phases 8013 (lambda _
1588 (delete 'configure) 8014 (delete-dependencies '("define-property" "gulp"
1589 (delete 'build)))) 8015 "gulp-eslint"
8016 "gulp-format-md"
8017 "gulp-istanbul"
8018 "gulp-mocha"
8019 "isobject"
8020 "mocha"
8021 "snapdragon"
8022 "snapdragon-node")))))))
1590 (inputs `(("node-kind-of" ,node-kind-of-3.2.2))) 8023 (inputs `(("node-kind-of" ,node-kind-of-3.2.2)))
1591 (home-page 8024 (home-page "https://github.com/jonschlinkert/snapdragon-util")
1592 "https://github.com/jonschlinkert/snapdragon-util") 8025 (synopsis "Utilities for the snapdragon parser/compiler.")
1593 (synopsis 8026 (description "Utilities for the snapdragon parser/compiler.")
1594 "Utilities for the snapdragon parser/compiler.")
1595 (description
1596 "Utilities for the snapdragon parser/compiler.")
1597 (license license:expat))) 8027 (license license:expat)))
1598 8028
1599(define-public node-snapdragon-node-2.1.1 8029(define-public node-snapdragon-node-2.1.1
1600 (package 8030 (package
1601 (name "node-snapdragon-node") 8031 (name "node-snapdragon-node")
1602 (version "2.1.1") 8032 (version "2.1.1")
1603 (source 8033 (source (origin
1604 (origin 8034 (method url-fetch)
1605 (method url-fetch) 8035 (uri
1606 (uri "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz") 8036 "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz")
1607 (sha256 8037 (sha256
1608 (base32 8038 (base32
1609 "0idm24bf2jvwgqi8fx1fkn1w78ylqnpm137s2m0g0ni43y19i97j")))) 8039 "0idm24bf2jvwgqi8fx1fkn1w78ylqnpm137s2m0g0ni43y19i97j"))))
1610 (build-system node-build-system) 8040 (build-system node-build-system)
1611 (arguments 8041 (arguments
1612 `(#:tests? 8042 '(#:tests? #f
1613 #f 8043 #:phases (modify-phases %standard-phases
1614 #:phases 8044 (delete 'build)
1615 (modify-phases 8045 (add-after 'patch-dependencies 'delete-dev-dependencies
1616 %standard-phases 8046 (lambda _
1617 (delete 'configure) 8047 (delete-dependencies '("gulp" "gulp-eslint"
1618 (delete 'build)))) 8048 "gulp-format-md"
1619 (inputs 8049 "gulp-istanbul"
1620 `(("node-snapdragon-util" 8050 "gulp-mocha"
1621 ,node-snapdragon-util-3.0.1) 8051 "mocha"
1622 ("node-isobject" ,node-isobject-3.0.1) 8052 "snapdragon")))))))
1623 ("node-define-property" 8053 (inputs `(("node-snapdragon-util" ,node-snapdragon-util-3.0.1)
1624 ,node-define-property-1.0.0))) 8054 ("node-isobject" ,node-isobject-3.0.1)
1625 (home-page 8055 ("node-define-property" ,node-define-property-1.0.0)))
1626 "https://github.com/jonschlinkert/snapdragon-node") 8056 (home-page "https://github.com/jonschlinkert/snapdragon-node")
1627 (synopsis 8057 (synopsis
1628 "Snapdragon utility for creating a new AST node in custom code, such as plugins.") 8058 "Snapdragon utility for creating a new AST node in custom code, such as plugins.")
1629 (description 8059 (description
1630 "Snapdragon utility for creating a new AST node in custom code, such as plugins.") 8060 "Snapdragon utility for creating a new AST node in custom code, such as plugins.")
1631 (license license:expat)))
1632
1633(define-public node-split-string-3.1.0
1634 (package
1635 (name "node-split-string")
1636 (version "3.1.0")
1637 (source
1638 (origin
1639 (method url-fetch)
1640 (uri "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz")
1641 (sha256
1642 (base32
1643 "1bx5n7bga42bd5d804w7y06wx96qk524gylxl4xi3i8nb8ch86na"))))
1644 (build-system node-build-system)
1645 (arguments
1646 `(#:tests?
1647 #f
1648 #:phases
1649 (modify-phases
1650 %standard-phases
1651 (delete 'configure)
1652 (delete 'build))))
1653 (inputs
1654 `(("node-extend-shallow"
1655 ,node-extend-shallow-3.0.2)))
1656 (home-page
1657 "https://github.com/jonschlinkert/split-string")
1658 (synopsis
1659 "Split a string on a character except when the character is escaped.")
1660 (description
1661 "Split a string on a character except when the character is escaped.")
1662 (license license:expat))) 8061 (license license:expat)))
1663 8062
1664(define-public node-braces-2.3.2 8063(define-public node-braces-2.3.2
1665 (package 8064 (package
1666 (name "node-braces") 8065 (name "node-braces")
1667 (version "2.3.2") 8066 (version "2.3.2")
1668 (source 8067 (source (origin
1669 (origin 8068 (method url-fetch)
1670 (method url-fetch) 8069 (uri "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz")
1671 (uri "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz") 8070 (sha256
1672 (sha256 8071 (base32
1673 (base32 8072 "10608dfl1pxajw0nwrsh69769q659yjyw88b0mrlprnn0z1wya1l"))))
1674 "10608dfl1pxajw0nwrsh69769q659yjyw88b0mrlprnn0z1wya1l")))) 8073 (build-system node-build-system)
1675 (build-system node-build-system) 8074 (arguments
1676 (arguments 8075 '(#:tests? #f
1677 `(#:tests? 8076 #:phases (modify-phases %standard-phases
1678 #f 8077 (delete 'build)
1679 #:phases 8078 (add-after 'patch-dependencies 'delete-dev-dependencies
1680 (modify-phases 8079 (lambda _
1681 %standard-phases 8080 (delete-dependencies '("ansi-cyan" "benchmarked"
1682 (delete 'configure) 8081 "brace-expansion"
1683 (delete 'build)))) 8082 "cross-spawn"
1684 (inputs 8083 "gulp"
1685 `(("node-to-regex" ,node-to-regex-3.0.2) 8084 "gulp-eslint"
1686 ("node-split-string" ,node-split-string-3.1.0) 8085 "gulp-format-md"
1687 ("node-snapdragon-node" 8086 "gulp-istanbul"
1688 ,node-snapdragon-node-2.1.1) 8087 "gulp-mocha"
1689 ("node-snapdragon" ,node-snapdragon-0.8.2) 8088 "gulp-unused"
1690 ("node-repeat-element" 8089 "is-windows"
1691 ,node-repeat-element-1.1.3) 8090 "minimatch"
1692 ("node-isobject" ,node-isobject-3.0.1) 8091 "mocha"
1693 ("node-fill-range" ,node-fill-range-4.0.0) 8092 "noncharacters"
1694 ("node-extend-shallow" 8093 "text-table"
1695 ,node-extend-shallow-2.0.1) 8094 "time-diff"
1696 ("node-array-unique" ,node-array-unique-0.3.2) 8095 "yargs-parser")))))))
1697 ("node-arr-flatten" ,node-arr-flatten-1.1.0))) 8096 (inputs `(("node-to-regex" ,node-to-regex-3.0.2)
1698 (home-page 8097 ("node-split-string" ,node-split-string-3.1.0)
1699 "https://github.com/micromatch/braces") 8098 ("node-snapdragon-node" ,node-snapdragon-node-2.1.1)
1700 (synopsis 8099 ("node-snapdragon" ,node-snapdragon-0.8.2)
1701 "Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.") 8100 ("node-repeat-element" ,node-repeat-element-1.1.4)
1702 (description 8101 ("node-isobject" ,node-isobject-3.0.1)
1703 "Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.") 8102 ("node-fill-range" ,node-fill-range-4.0.0)
1704 (license license:expat))) 8103 ("node-extend-shallow" ,node-extend-shallow-2.0.1)
1705 8104 ("node-array-unique" ,node-array-unique-0.3.2)
1706(define-public node-debug-2.6.9 8105 ("node-arr-flatten" ,node-arr-flatten-1.1.0)))
1707 (package 8106 (home-page "https://github.com/micromatch/braces")
1708 (name "node-debug") 8107 (synopsis
1709 (version "2.6.9") 8108 "Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.")
1710 (source 8109 (description
1711 (origin 8110 "Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.")
1712 (method url-fetch)
1713 (uri "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz")
1714 (sha256
1715 (base32
1716 "160wvc74r8aypds7pym3hq4qpa786hpk4vif58ggiwcqcv34ibil"))))
1717 (build-system node-build-system)
1718 (arguments
1719 `(#:tests?
1720 #f
1721 #:phases
1722 (modify-phases
1723 %standard-phases
1724 (delete 'configure)
1725 (delete 'build))))
1726 (inputs `(("node-ms" ,node-ms-2.0.0)))
1727 (home-page
1728 "https://github.com/visionmedia/debug#readme")
1729 (synopsis "small debugging utility")
1730 (description "small debugging utility")
1731 (license license:expat))) 8111 (license license:expat)))
1732 8112
1733(define-public node-posix-character-classes-0.1.1 8113(define-public node-posix-character-classes-0.1.1
1734 (package 8114 (package
1735 (name "node-posix-character-classes") 8115 (name "node-posix-character-classes")
1736 (version "0.1.1") 8116 (version "0.1.1")
1737 (source 8117 (source (origin
1738 (origin 8118 (method url-fetch)
1739 (method url-fetch) 8119 (uri
1740 (uri "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz") 8120 "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz")
1741 (sha256 8121 (sha256
1742 (base32 8122 (base32
1743 "08c07ib7iaj34d1mnjhll0bq0yh3kb98q4mf334js2l4166y9rcr")))) 8123 "08c07ib7iaj34d1mnjhll0bq0yh3kb98q4mf334js2l4166y9rcr"))))
1744 (build-system node-build-system) 8124 (build-system node-build-system)
1745 (arguments 8125 (arguments
1746 `(#:tests? 8126 '(#:tests? #f
1747 #f 8127 #:phases (modify-phases %standard-phases
1748 #:phases 8128 (delete 'build)
1749 (modify-phases 8129 (add-after 'patch-dependencies 'delete-dev-dependencies
1750 %standard-phases 8130 (lambda _
1751 (delete 'configure) 8131 (delete-dependencies '("gulp-format-md" "mocha")))))))
1752 (delete 'build)))) 8132 (home-page "https://github.com/jonschlinkert/posix-character-classes")
1753 (home-page 8133 (synopsis "POSIX character classes for creating regular expressions.")
1754 "https://github.com/jonschlinkert/posix-character-classes") 8134 (description "POSIX character classes for creating regular expressions.")
1755 (synopsis
1756 "POSIX character classes for creating regular expressions.")
1757 (description
1758 "POSIX character classes for creating regular expressions.")
1759 (license license:expat))) 8135 (license license:expat)))
1760 8136
1761(define-public node-expand-brackets-2.1.4 8137(define-public node-expand-brackets-2.1.4
1762 (package 8138 (package
1763 (name "node-expand-brackets") 8139 (name "node-expand-brackets")
1764 (version "2.1.4") 8140 (version "2.1.4")
1765 (source 8141 (source (origin
1766 (origin 8142 (method url-fetch)
1767 (method url-fetch) 8143 (uri
1768 (uri "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz") 8144 "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz")
1769 (sha256 8145 (sha256
1770 (base32 8146 (base32
1771 "0csxpxfx1xkf2dp10vpifynkrx8csx7md7gysvhy5xr094hdr3nq")))) 8147 "0csxpxfx1xkf2dp10vpifynkrx8csx7md7gysvhy5xr094hdr3nq"))))
1772 (build-system node-build-system) 8148 (build-system node-build-system)
1773 (arguments 8149 (arguments
1774 `(#:tests? 8150 '(#:tests? #f
1775 #f 8151 #:phases (modify-phases %standard-phases
1776 #:phases 8152 (delete 'build)
1777 (modify-phases 8153 (add-after 'patch-dependencies 'delete-dev-dependencies
1778 %standard-phases 8154 (lambda _
1779 (delete 'configure) 8155 (delete-dependencies '("bash-match" "gulp-format-md"
1780 (delete 'build)))) 8156 "helper-changelog"
1781 (inputs 8157 "minimatch"
1782 `(("node-to-regex" ,node-to-regex-3.0.2) 8158 "mocha"
1783 ("node-snapdragon" ,node-snapdragon-0.8.2) 8159 "multimatch"
1784 ("node-regex-not" ,node-regex-not-1.0.2) 8160 "yargs-parser")))))))
1785 ("node-posix-character-classes" 8161 (inputs `(("node-to-regex" ,node-to-regex-3.0.2)
1786 ,node-posix-character-classes-0.1.1) 8162 ("node-snapdragon" ,node-snapdragon-0.8.2)
1787 ("node-extend-shallow" 8163 ("node-regex-not" ,node-regex-not-1.0.2)
1788 ,node-extend-shallow-2.0.1) 8164 ("node-posix-character-classes" ,node-posix-character-classes-0.1.1)
1789 ("node-define-property" 8165 ("node-extend-shallow" ,node-extend-shallow-2.0.1)
1790 ,node-define-property-0.2.5) 8166 ("node-define-property" ,node-define-property-0.2.5)
1791 ("node-debug" ,node-debug-2.6.9))) 8167 ("node-debug" ,node-debug-2.6.9)))
1792 (home-page 8168 (home-page "https://github.com/jonschlinkert/expand-brackets")
1793 "https://github.com/jonschlinkert/expand-brackets") 8169 (synopsis
1794 (synopsis 8170 "Expand POSIX bracket expressions (character classes) in glob patterns.")
1795 "Expand POSIX bracket expressions (character classes) in glob patterns.") 8171 (description
1796 (description 8172 "Expand POSIX bracket expressions (character classes) in glob patterns.")
1797 "Expand POSIX bracket expressions (character classes) in glob patterns.")
1798 (license license:expat))) 8173 (license license:expat)))
1799 8174
1800(define-public node-extglob-2.0.4 8175(define-public node-extglob-2.0.4
1801 (package 8176 (package
1802 (name "node-extglob") 8177 (name "node-extglob")
1803 (version "2.0.4") 8178 (version "2.0.4")
1804 (source 8179 (source (origin
1805 (origin 8180 (method url-fetch)
1806 (method url-fetch) 8181 (uri "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz")
1807 (uri "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz") 8182 (sha256
1808 (sha256 8183 (base32
1809 (base32 8184 "1wza438hvcr83b28zic65h8jq8k0p0v9iw9b1lfk1zhb5xrkp8sy"))))
1810 "1wza438hvcr83b28zic65h8jq8k0p0v9iw9b1lfk1zhb5xrkp8sy")))) 8185 (build-system node-build-system)
1811 (build-system node-build-system) 8186 (arguments
1812 (arguments 8187 '(#:tests? #f
1813 `(#:tests? 8188 #:phases (modify-phases %standard-phases
1814 #f 8189 (delete 'build)
1815 #:phases 8190 (add-after 'patch-dependencies 'delete-dev-dependencies
1816 (modify-phases 8191 (lambda _
1817 %standard-phases 8192 (delete-dependencies '("bash-match" "for-own"
1818 (delete 'configure) 8193 "gulp"
1819 (delete 'build)))) 8194 "gulp-eslint"
1820 (inputs 8195 "gulp-format-md"
1821 `(("node-to-regex" ,node-to-regex-3.0.2) 8196 "gulp-istanbul"
1822 ("node-snapdragon" ,node-snapdragon-0.8.2) 8197 "gulp-mocha"
1823 ("node-regex-not" ,node-regex-not-1.0.2) 8198 "gulp-unused"
1824 ("node-fragment-cache" 8199 "helper-changelog"
1825 ,node-fragment-cache-0.2.1) 8200 "is-windows"
1826 ("node-extend-shallow" 8201 "micromatch"
1827 ,node-extend-shallow-2.0.1) 8202 "minimatch"
1828 ("node-expand-brackets" 8203 "minimist"
1829 ,node-expand-brackets-2.1.4) 8204 "mocha"
1830 ("node-define-property" 8205 "multimatch")))))))
1831 ,node-define-property-1.0.0) 8206 (inputs `(("node-to-regex" ,node-to-regex-3.0.2)
1832 ("node-array-unique" ,node-array-unique-0.3.2))) 8207 ("node-snapdragon" ,node-snapdragon-0.8.2)
1833 (home-page 8208 ("node-regex-not" ,node-regex-not-1.0.2)
1834 "https://github.com/micromatch/extglob") 8209 ("node-fragment-cache" ,node-fragment-cache-0.2.1)
1835 (synopsis 8210 ("node-extend-shallow" ,node-extend-shallow-2.0.1)
1836 "Extended glob support for JavaScript. Adds (almost) the expressive power of regular expressions to glob patterns.") 8211 ("node-expand-brackets" ,node-expand-brackets-2.1.4)
1837 (description 8212 ("node-define-property" ,node-define-property-1.0.0)
1838 "Extended glob support for JavaScript. Adds (almost) the expressive power of regular expressions to glob patterns.") 8213 ("node-array-unique" ,node-array-unique-0.3.2)))
8214 (home-page "https://github.com/micromatch/extglob")
8215 (synopsis
8216 "Extended glob support for JavaScript. Adds (almost) the expressive power of regular expressions to glob patterns.")
8217 (description
8218 "Extended glob support for JavaScript. Adds (almost) the expressive power of regular expressions to glob patterns.")
1839 (license license:expat))) 8219 (license license:expat)))
1840 8220
1841(define-public node-arr-diff-4.0.0 8221(define-public node-arr-diff-4.0.0
1842 (package 8222 (package
1843 (name "node-arr-diff") 8223 (name "node-arr-diff")
1844 (version "4.0.0") 8224 (version "4.0.0")
1845 (source 8225 (source (origin
1846 (origin 8226 (method url-fetch)
1847 (method url-fetch) 8227 (uri "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz")
1848 (uri "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz") 8228 (sha256
1849 (sha256 8229 (base32
1850 (base32 8230 "1735byq6vmrvqkv9n5400494mh9vd6x4knzkybgr55km5dgpdcyx"))))
1851 "1735byq6vmrvqkv9n5400494mh9vd6x4knzkybgr55km5dgpdcyx")))) 8231 (build-system node-build-system)
1852 (build-system node-build-system) 8232 (arguments
1853 (arguments 8233 '(#:tests? #f
1854 `(#:tests? 8234 #:phases (modify-phases %standard-phases
1855 #f 8235 (delete 'build)
1856 #:phases 8236 (add-after 'patch-dependencies 'delete-dev-dependencies
1857 (modify-phases 8237 (lambda _
1858 %standard-phases 8238 (delete-dependencies '("ansi-bold" "arr-flatten"
1859 (delete 'configure) 8239 "array-differ"
1860 (delete 'build)))) 8240 "benchmarked"
1861 (home-page 8241 "gulp-format-md"
1862 "https://github.com/jonschlinkert/arr-diff") 8242 "minimist"
8243 "mocha")))))))
8244 (home-page "https://github.com/jonschlinkert/arr-diff")
1863 (synopsis 8245 (synopsis
1864 "Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.") 8246 "Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.")
1865 (description 8247 (description
1866 "Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.") 8248 "Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.")
1867 (license license:expat))) 8249 (license license:expat)))
1868 8250
1869(define-public node-array-unique-0.3.2 8251(define-public node-array-unique-0.3.2
1870 (package 8252 (package
1871 (name "node-array-unique") 8253 (name "node-array-unique")
1872 (version "0.3.2") 8254 (version "0.3.2")
1873 (source 8255 (source (origin
1874 (origin 8256 (method url-fetch)
1875 (method url-fetch) 8257 (uri
1876 (uri "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz") 8258 "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz")
1877 (sha256 8259 (sha256
1878 (base32 8260 (base32
1879 "0bkrb481qri7qad5h4bzw9hq161wfqgxdj5g11a5bnlfylqczg9g")))) 8261 "0bkrb481qri7qad5h4bzw9hq161wfqgxdj5g11a5bnlfylqczg9g"))))
1880 (build-system node-build-system) 8262 (build-system node-build-system)
1881 (arguments 8263 (arguments
1882 `(#:tests? 8264 '(#:tests? #f
1883 #f 8265 #:phases (modify-phases %standard-phases
1884 #:phases 8266 (delete 'build)
1885 (modify-phases 8267 (add-after 'patch-dependencies 'delete-dev-dependencies
1886 %standard-phases 8268 (lambda _
1887 (delete 'configure) 8269 (delete-dependencies '("array-uniq" "benchmarked"
1888 (delete 'build)))) 8270 "gulp-format-md" "mocha" "should")))))))
1889 (home-page 8271 (home-page "https://github.com/jonschlinkert/array-unique")
1890 "https://github.com/jonschlinkert/array-unique")
1891 (synopsis 8272 (synopsis
1892 "Remove duplicate values from an array. Fastest ES5 implementation.") 8273 "Remove duplicate values from an array. Fastest ES5 implementation.")
1893 (description 8274 (description
1894 "Remove duplicate values from an array. Fastest ES5 implementation.") 8275 "Remove duplicate values from an array. Fastest ES5 implementation.")
1895 (license license:expat))) 8276 (license license:expat)))
1896 8277
1897(define-public node-fragment-cache-0.2.1 8278(define-public node-fragment-cache-0.2.1
1898 (package 8279 (package
1899 (name "node-fragment-cache") 8280 (name "node-fragment-cache")
1900 (version "0.2.1") 8281 (version "0.2.1")
1901 (source 8282 (source (origin
1902 (origin 8283 (method url-fetch)
1903 (method url-fetch) 8284 (uri
1904 (uri "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz") 8285 "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz")
1905 (sha256 8286 (sha256
1906 (base32 8287 (base32
1907 "114jfm5qpvz52127hf4ny4vz1qs7a597hql5lj0g2ncixn8sqg76")))) 8288 "114jfm5qpvz52127hf4ny4vz1qs7a597hql5lj0g2ncixn8sqg76"))))
1908 (build-system node-build-system) 8289 (build-system node-build-system)
1909 (arguments 8290 (arguments
1910 `(#:tests? 8291 '(#:tests? #f
1911 #f 8292 #:phases (modify-phases %standard-phases
1912 #:phases 8293 (delete 'build)
1913 (modify-phases 8294 (add-after 'patch-dependencies 'delete-dev-dependencies
1914 %standard-phases 8295 (lambda _
1915 (delete 'configure) 8296 (delete-dependencies '("gulp" "gulp-eslint"
1916 (delete 'build)))) 8297 "gulp-format-md" "gulp-istanbul"
1917 (inputs 8298 "gulp-mocha" "mocha")))))))
1918 `(("node-map-cache" ,node-map-cache-0.2.2))) 8299 (inputs `(("node-map-cache" ,node-map-cache-0.2.2)))
1919 (home-page 8300 (home-page "https://github.com/jonschlinkert/fragment-cache")
1920 "https://github.com/jonschlinkert/fragment-cache") 8301 (synopsis "A cache for managing namespaced sub-caches")
1921 (synopsis 8302 (description "A cache for managing namespaced sub-caches")
1922 "A cache for managing namespaced sub-caches")
1923 (description
1924 "A cache for managing namespaced sub-caches")
1925 (license license:expat))) 8303 (license license:expat)))
1926 8304
1927(define-public node-is-windows-1.0.2 8305(define-public node-is-windows-1.0.2
1928 (package 8306 (package
1929 (name "node-is-windows") 8307 (name "node-is-windows")
1930 (version "1.0.2") 8308 (version "1.0.2")
1931 (source 8309 (source (origin
1932 (origin 8310 (method url-fetch)
1933 (method url-fetch) 8311 (uri
1934 (uri "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz") 8312 "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz")
1935 (sha256 8313 (sha256
1936 (base32 8314 (base32
1937 "18iihzz6fs6sfrgq1bpvgkfk3cza6r9wrrgn7ahcbbra1lkjh4bv")))) 8315 "18iihzz6fs6sfrgq1bpvgkfk3cza6r9wrrgn7ahcbbra1lkjh4bv"))))
1938 (build-system node-build-system) 8316 (build-system node-build-system)
1939 (arguments 8317 (arguments
1940 `(#:tests? 8318 '(#:tests? #f
1941 #f 8319 #:phases (modify-phases %standard-phases
1942 #:phases 8320 (delete 'build)
1943 (modify-phases 8321 (add-after 'patch-dependencies 'delete-dev-dependencies
1944 %standard-phases 8322 (lambda _
1945 (delete 'configure) 8323 (delete-dependencies '("gulp-format-md" "mocha")))))))
1946 (delete 'build)))) 8324 (home-page "https://github.com/jonschlinkert/is-windows")
1947 (home-page
1948 "https://github.com/jonschlinkert/is-windows")
1949 (synopsis
1950 "Returns true if the platform is windows. UMD module, works with node.js, commonjs, browser, AMD, electron, etc.")
1951 (description
1952 "Returns true if the platform is windows. UMD module, works with node.js, commonjs, browser, AMD, electron, etc.")
1953 (license license:expat)))
1954
1955(define-public node-to-regex-3.0.2
1956 (package
1957 (name "node-to-regex")
1958 (version "3.0.2")
1959 (source
1960 (origin
1961 (method url-fetch)
1962 (uri "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz")
1963 (sha256
1964 (base32
1965 "039l28qygjrjy10jz9cm3j066nw5fkfimzkp5ipq47w2pl2ii0w6"))))
1966 (build-system node-build-system)
1967 (arguments
1968 `(#:tests?
1969 #f
1970 #:phases
1971 (modify-phases
1972 %standard-phases
1973 (delete 'configure)
1974 (delete 'build))))
1975 (inputs
1976 `(("node-safe-regex" ,node-safe-regex-1.1.0)
1977 ("node-regex-not" ,node-regex-not-1.0.2)
1978 ("node-extend-shallow"
1979 ,node-extend-shallow-3.0.2)
1980 ("node-define-property"
1981 ,node-define-property-2.0.2)))
1982 (home-page
1983 "https://github.com/jonschlinkert/to-regex")
1984 (synopsis 8325 (synopsis
1985 "Generate a regex from a string or array of strings.") 8326 "Returns true if the platform is windows. UMD module, works with node.js, commonjs, browser, AMD, electron, etc.")
1986 (description 8327 (description
1987 "Generate a regex from a string or array of strings.") 8328 "Returns true if the platform is windows. UMD module, works with node.js, commonjs, browser, AMD, electron, etc.")
1988 (license license:expat))) 8329 (license license:expat)))
1989 8330
1990(define-public node-nanomatch-1.2.13 8331(define-public node-nanomatch-1.2.13
1991 (package 8332 (package
1992 (name "node-nanomatch") 8333 (name "node-nanomatch")
1993 (version "1.2.13") 8334 (version "1.2.13")
1994 (source 8335 (source (origin
1995 (origin 8336 (method url-fetch)
1996 (method url-fetch) 8337 (uri
1997 (uri "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz") 8338 "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz")
1998 (sha256 8339 (sha256
1999 (base32 8340 (base32
2000 "1f4fxk7azvglyi6gfbkxmh91pd3n6i7av03y9bpizfn37xjf7g0z")))) 8341 "1f4fxk7azvglyi6gfbkxmh91pd3n6i7av03y9bpizfn37xjf7g0z"))))
2001 (build-system node-build-system) 8342 (build-system node-build-system)
2002 (arguments 8343 (arguments
2003 `(#:tests? 8344 '(#:tests? #f
2004 #f 8345 #:phases (modify-phases %standard-phases
2005 #:phases 8346 (delete 'build)
2006 (modify-phases 8347 (add-after 'patch-dependencies 'delete-dev-dependencies
2007 %standard-phases 8348 (lambda _
2008 (delete 'configure) 8349 (delete-dependencies '("bash-match" "for-own"
2009 (delete 'build)))) 8350 "gulp"
2010 (inputs 8351 "gulp-format-md"
2011 `(("node-to-regex" ,node-to-regex-3.0.2) 8352 "gulp-istanbul"
2012 ("node-snapdragon" ,node-snapdragon-0.8.2) 8353 "gulp-mocha"
2013 ("node-regex-not" ,node-regex-not-1.0.2) 8354 "helper-changelog"
2014 ("node-object-pick" ,node-object-pick-1.3.0) 8355 "minimatch"
2015 ("node-kind-of" ,node-kind-of-6.0.3) 8356 "minimist"
2016 ("node-is-windows" ,node-is-windows-1.0.2) 8357 "mocha"
2017 ("node-fragment-cache" 8358 "multimatch")))))))
2018 ,node-fragment-cache-0.2.1) 8359 (inputs `(("node-to-regex" ,node-to-regex-3.0.2)
2019 ("node-extend-shallow" 8360 ("node-snapdragon" ,node-snapdragon-0.8.2)
2020 ,node-extend-shallow-3.0.2) 8361 ("node-regex-not" ,node-regex-not-1.0.2)
2021 ("node-define-property" 8362 ("node-object-pick" ,node-object-pick-1.3.0)
2022 ,node-define-property-2.0.2) 8363 ("node-kind-of" ,node-kind-of-6.0.3)
2023 ("node-array-unique" ,node-array-unique-0.3.2) 8364 ("node-is-windows" ,node-is-windows-1.0.2)
2024 ("node-arr-diff" ,node-arr-diff-4.0.0))) 8365 ("node-fragment-cache" ,node-fragment-cache-0.2.1)
2025 (home-page 8366 ("node-extend-shallow" ,node-extend-shallow-3.0.2)
2026 "https://github.com/micromatch/nanomatch") 8367 ("node-define-property" ,node-define-property-2.0.2)
2027 (synopsis 8368 ("node-array-unique" ,node-array-unique-0.3.2)
2028 "Fast, minimal glob matcher for node.js. Similar to micromatch, minimatch and multimatch, but complete Bash 4.3 wildcard support only (no support for exglobs, posix brackets or braces)") 8369 ("node-arr-diff" ,node-arr-diff-4.0.0)))
2029 (description 8370 (home-page "https://github.com/micromatch/nanomatch")
2030 "Fast, minimal glob matcher for node.js. Similar to micromatch, minimatch and multimatch, but complete Bash 4.3 wildcard support only (no support for exglobs, posix brackets or braces)") 8371 (synopsis
8372 "Fast, minimal glob matcher for node.js. Similar to micromatch, minimatch and multimatch, but complete Bash 4.3 wildcard support only (no support for exglobs, posix brackets or braces)")
8373 (description
8374 "Fast, minimal glob matcher for node.js. Similar to micromatch, minimatch and multimatch, but complete Bash 4.3 wildcard support only (no support for exglobs, posix brackets or braces)")
2031 (license license:expat))) 8375 (license license:expat)))
2032 8376
2033(define-public node-object-pick-1.3.0 8377(define-public node-object-pick-1.3.0
2034 (package 8378 (package
2035 (name "node-object-pick") 8379 (name "node-object-pick")
2036 (version "1.3.0") 8380 (version "1.3.0")
2037 (source 8381 (source (origin
2038 (origin 8382 (method url-fetch)
2039 (method url-fetch) 8383 (uri
2040 (uri "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz") 8384 "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz")
2041 (sha256 8385 (sha256
2042 (base32 8386 (base32
2043 "02zfyg9vkizb5vanjy3d976cnbjnx4qrcjrd92z2ylyl4ih24040")))) 8387 "02zfyg9vkizb5vanjy3d976cnbjnx4qrcjrd92z2ylyl4ih24040"))))
2044 (build-system node-build-system) 8388 (build-system node-build-system)
2045 (arguments 8389 (arguments
2046 `(#:tests? 8390 '(#:tests? #f
2047 #f 8391 #:phases (modify-phases %standard-phases
2048 #:phases 8392 (delete 'build)
2049 (modify-phases 8393 (add-after 'patch-dependencies 'delete-dev-dependencies
2050 %standard-phases 8394 (lambda _
2051 (delete 'configure) 8395 (delete-dependencies '("gulp-format-md" "mocha" "vinyl")))))))
2052 (delete 'build)))) 8396 (inputs `(("node-isobject" ,node-isobject-3.0.1)))
2053 (inputs 8397 (home-page "https://github.com/jonschlinkert/object.pick")
2054 `(("node-isobject" ,node-isobject-3.0.1)))
2055 (home-page
2056 "https://github.com/jonschlinkert/object.pick")
2057 (synopsis
2058 "Returns a filtered copy of an object with only the specified keys, similar to `_.pick` from lodash / underscore.")
2059 (description
2060 "Returns a filtered copy of an object with only the specified keys, similar to `_.pick` from lodash / underscore.")
2061 (license license:expat)))
2062
2063(define-public node-regex-not-1.0.2
2064 (package
2065 (name "node-regex-not")
2066 (version "1.0.2")
2067 (source
2068 (origin
2069 (method url-fetch)
2070 (uri "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz")
2071 (sha256
2072 (base32
2073 "0xpjprkrk0c9fn6yhqay3bm8vw44k197smcfby89g3sfjsxlhi7s"))))
2074 (build-system node-build-system)
2075 (arguments
2076 `(#:tests?
2077 #f
2078 #:phases
2079 (modify-phases
2080 %standard-phases
2081 (delete 'configure)
2082 (delete 'build))))
2083 (inputs
2084 `(("node-safe-regex" ,node-safe-regex-1.1.0)
2085 ("node-extend-shallow"
2086 ,node-extend-shallow-3.0.2)))
2087 (home-page
2088 "https://github.com/jonschlinkert/regex-not")
2089 (synopsis 8398 (synopsis
2090 "Create a javascript regular expression for matching everything except for the given string.") 8399 "Returns a filtered copy of an object with only the specified keys, similar to `_.pick` from lodash / underscore.")
2091 (description 8400 (description
2092 "Create a javascript regular expression for matching everything except for the given string.") 8401 "Returns a filtered copy of an object with only the specified keys, similar to `_.pick` from lodash / underscore.")
2093 (license license:expat))) 8402 (license license:expat)))
2094 8403
2095(define-public node-map-visit-1.0.0 8404(define-public node-map-visit-1.0.0
2096 (package 8405 (package
2097 (name "node-map-visit") 8406 (name "node-map-visit")
2098 (version "1.0.0") 8407 (version "1.0.0")
2099 (source 8408 (source (origin
2100 (origin 8409 (method url-fetch)
2101 (method url-fetch) 8410 (uri
2102 (uri "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz") 8411 "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz")
2103 (sha256 8412 (sha256
2104 (base32 8413 (base32
2105 "19fhyr0jmskx32s1s9b6p0jb96gmbxxnbmzx4sc42sxzwkfmqvpi")))) 8414 "19fhyr0jmskx32s1s9b6p0jb96gmbxxnbmzx4sc42sxzwkfmqvpi"))))
2106 (build-system node-build-system) 8415 (build-system node-build-system)
2107 (arguments 8416 (arguments
2108 `(#:tests? 8417 '(#:tests? #f
2109 #f 8418 #:phases (modify-phases %standard-phases
2110 #:phases 8419 (delete 'build)
2111 (modify-phases 8420 (add-after 'patch-dependencies 'delete-dev-dependencies
2112 %standard-phases 8421 (lambda _
2113 (delete 'configure) 8422 (delete-dependencies '("clone-deep" "extend-shallow"
2114 (delete 'build)))) 8423 "gulp-format-md" "lodash" "mocha")))))))
2115 (inputs 8424 (inputs `(("node-object-visit" ,node-object-visit-1.0.1)))
2116 `(("node-object-visit" ,node-object-visit-1.0.1))) 8425 (home-page "https://github.com/jonschlinkert/map-visit")
2117 (home-page 8426 (synopsis "Map `visit` over an array of objects.")
2118 "https://github.com/jonschlinkert/map-visit") 8427 (description "Map `visit` over an array of objects.")
2119 (synopsis
2120 "Map `visit` over an array of objects.")
2121 (description
2122 "Map `visit` over an array of objects.")
2123 (license license:expat))) 8428 (license license:expat)))
2124 8429
2125(define-public node-object-visit-1.0.1 8430(define-public node-object-visit-1.0.1
2126 (package 8431 (package
2127 (name "node-object-visit") 8432 (name "node-object-visit")
2128 (version "1.0.1") 8433 (version "1.0.1")
2129 (source 8434 (source (origin
2130 (origin 8435 (method url-fetch)
2131 (method url-fetch) 8436 (uri
2132 (uri "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz") 8437 "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz")
2133 (sha256 8438 (sha256
2134 (base32 8439 (base32
2135 "05qpsh7jyq40dk2mqm85hbcaapb4g4hyjcb4z6b2kcziqfiynpsl")))) 8440 "05qpsh7jyq40dk2mqm85hbcaapb4g4hyjcb4z6b2kcziqfiynpsl"))))
2136 (build-system node-build-system) 8441 (build-system node-build-system)
2137 (arguments 8442 (arguments
2138 `(#:tests? 8443 '(#:tests? #f
2139 #f 8444 #:phases (modify-phases %standard-phases
2140 #:phases 8445 (delete 'build)
2141 (modify-phases 8446 (add-after 'patch-dependencies 'delete-dev-dependencies
2142 %standard-phases 8447 (lambda _
2143 (delete 'configure) 8448 (delete-dependencies '("gulp" "gulp-eslint"
2144 (delete 'build)))) 8449 "gulp-format-md" "gulp-istanbul"
2145 (inputs 8450 "gulp-mocha" "mocha")))))))
2146 `(("node-isobject" ,node-isobject-3.0.1))) 8451 (inputs `(("node-isobject" ,node-isobject-3.0.1)))
2147 (home-page 8452 (home-page "https://github.com/jonschlinkert/object-visit")
2148 "https://github.com/jonschlinkert/object-visit") 8453 (synopsis "Call a specified method on each value in the given object.")
2149 (synopsis 8454 (description "Call a specified method on each value in the given object.")
2150 "Call a specified method on each value in the given object.")
2151 (description
2152 "Call a specified method on each value in the given object.")
2153 (license license:expat))) 8455 (license license:expat)))
2154 8456
2155(define-public node-collection-visit-1.0.0 8457(define-public node-collection-visit-1.0.0
2156 (package 8458 (package
2157 (name "node-collection-visit") 8459 (name "node-collection-visit")
2158 (version "1.0.0") 8460 (version "1.0.0")
2159 (source 8461 (source (origin
2160 (origin 8462 (method url-fetch)
2161 (method url-fetch) 8463 (uri
2162 (uri "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz") 8464 "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz")
2163 (sha256 8465 (sha256
2164 (base32 8466 (base32
2165 "062q78a3fjfvk4vplkay9hd4rx6f1xw4r0438sa0hbv62jf5bc46")))) 8467 "062q78a3fjfvk4vplkay9hd4rx6f1xw4r0438sa0hbv62jf5bc46"))))
2166 (build-system node-build-system) 8468 (build-system node-build-system)
2167 (arguments 8469 (arguments
2168 `(#:tests? 8470 '(#:tests? #f
2169 #f 8471 #:phases (modify-phases %standard-phases
2170 #:phases 8472 (delete 'build)
2171 (modify-phases 8473 (add-after 'patch-dependencies 'delete-dev-dependencies
2172 %standard-phases 8474 (lambda _
2173 (delete 'configure) 8475 (delete-dependencies '("clone-deep" "gulp"
2174 (delete 'build)))) 8476 "gulp-eslint"
2175 (inputs 8477 "gulp-format-md"
2176 `(("node-object-visit" ,node-object-visit-1.0.1) 8478 "gulp-istanbul"
2177 ("node-map-visit" ,node-map-visit-1.0.0))) 8479 "gulp-mocha"
2178 (home-page 8480 "mocha")))))))
2179 "https://github.com/jonschlinkert/collection-visit") 8481 (inputs `(("node-object-visit" ,node-object-visit-1.0.1)
2180 (synopsis 8482 ("node-map-visit" ,node-map-visit-1.0.0)))
2181 "Visit a method over the items in an object, or map visit over the objects in an array.") 8483 (home-page "https://github.com/jonschlinkert/collection-visit")
2182 (description 8484 (synopsis
2183 "Visit a method over the items in an object, or map visit over the objects in an array.") 8485 "Visit a method over the items in an object, or map visit over the objects in an array.")
8486 (description
8487 "Visit a method over the items in an object, or map visit over the objects in an array.")
2184 (license license:expat))) 8488 (license license:expat)))
2185 8489
2186(define-public node-is-number-3.0.0 8490(define-public node-is-number-3.0.0
2187 (package 8491 (package
2188 (name "node-is-number") 8492 (name "node-is-number")
2189 (version "3.0.0") 8493 (version "3.0.0")
2190 (source 8494 (source (origin
2191 (origin 8495 (method url-fetch)
2192 (method url-fetch) 8496 (uri
2193 (uri "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz") 8497 "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz")
2194 (sha256 8498 (sha256
2195 (base32 8499 (base32
2196 "19rpbi5ryx3y28bh0pwm99az1mridh0p2sinfdxkcbpbxfx5zbf4")))) 8500 "19rpbi5ryx3y28bh0pwm99az1mridh0p2sinfdxkcbpbxfx5zbf4"))))
2197 (build-system node-build-system) 8501 (build-system node-build-system)
2198 (arguments 8502 (arguments
2199 `(#:tests? 8503 '(#:tests? #f
2200 #f 8504 #:phases (modify-phases %standard-phases
2201 #:phases 8505 (delete 'build)
2202 (modify-phases 8506 (add-after 'patch-dependencies 'delete-dev-dependencies
2203 %standard-phases 8507 (lambda _
2204 (delete 'configure) 8508 (delete-dependencies '("benchmarked" "chalk"
2205 (delete 'build)))) 8509 "gulp-format-md" "mocha")))))))
2206 (inputs `(("node-kind-of" ,node-kind-of-3.2.2))) 8510 (inputs `(("node-kind-of" ,node-kind-of-3.2.2)))
2207 (home-page 8511 (home-page "https://github.com/jonschlinkert/is-number")
2208 "https://github.com/jonschlinkert/is-number") 8512 (synopsis "Returns true if the value is a number. comprehensive tests.")
2209 (synopsis 8513 (description "Returns true if the value is a number. comprehensive tests.")
2210 "Returns true if the value is a number. comprehensive tests.")
2211 (description
2212 "Returns true if the value is a number. comprehensive tests.")
2213 (license license:expat))) 8514 (license license:expat)))
2214 8515
2215(define-public node-kind-of-4.0.0 8516(define-public node-kind-of-4.0.0
2216 (package 8517 (package
2217 (name "node-kind-of") 8518 (name "node-kind-of")
2218 (version "4.0.0") 8519 (version "4.0.0")
2219 (source 8520 (source (origin
2220 (origin 8521 (method url-fetch)
2221 (method url-fetch) 8522 (uri "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz")
2222 (uri "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz") 8523 (sha256
2223 (sha256 8524 (base32
2224 (base32 8525 "0afwg6007r7l0c9r7jghdk8pwvfffmykhybpwrs0nlks59d2ziym"))))
2225 "0afwg6007r7l0c9r7jghdk8pwvfffmykhybpwrs0nlks59d2ziym")))) 8526 (build-system node-build-system)
2226 (build-system node-build-system) 8527 (arguments
2227 (arguments 8528 '(#:tests? #f
2228 `(#:tests? 8529 #:phases (modify-phases %standard-phases
2229 #f 8530 (delete 'build)
2230 #:phases 8531 (add-after 'patch-dependencies 'delete-dev-dependencies
2231 (modify-phases 8532 (lambda _
2232 %standard-phases 8533 (delete-dependencies '("ansi-bold" "benchmarked"
2233 (delete 'configure) 8534 "browserify"
2234 (delete 'build)))) 8535 "glob"
2235 (inputs 8536 "gulp-format-md"
2236 `(("node-is-buffer" ,node-is-buffer-1.1.6))) 8537 "mocha"
2237 (home-page 8538 "type-of"
2238 "https://github.com/jonschlinkert/kind-of") 8539 "typeof")))))))
8540 (inputs `(("node-is-buffer" ,node-is-buffer-1.1.6)))
8541 (home-page "https://github.com/jonschlinkert/kind-of")
2239 (synopsis "Get the native type of a value.") 8542 (synopsis "Get the native type of a value.")
2240 (description "Get the native type of a value.") 8543 (description "Get the native type of a value.")
2241 (license license:expat))) 8544 (license license:expat)))
@@ -2244,794 +8547,621 @@
2244 (package 8547 (package
2245 (name "node-has-values") 8548 (name "node-has-values")
2246 (version "1.0.0") 8549 (version "1.0.0")
2247 (source 8550 (source (origin
2248 (origin 8551 (method url-fetch)
2249 (method url-fetch) 8552 (uri
2250 (uri "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz") 8553 "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz")
2251 (sha256 8554 (sha256
2252 (base32 8555 (base32
2253 "19ggazh85imjwxnvvhabypdpmyl0q4mgm3frwfx2dx3ffq1g1bwc")))) 8556 "19ggazh85imjwxnvvhabypdpmyl0q4mgm3frwfx2dx3ffq1g1bwc"))))
2254 (build-system node-build-system) 8557 (build-system node-build-system)
2255 (arguments 8558 (arguments
2256 `(#:tests? 8559 '(#:tests? #f
2257 #f 8560 #:phases (modify-phases %standard-phases
2258 #:phases 8561 (delete 'build)
2259 (modify-phases 8562 (add-after 'patch-dependencies 'delete-dev-dependencies
2260 %standard-phases 8563 (lambda _
2261 (delete 'configure) 8564 (delete-dependencies '("gulp-format-md" "mocha")))))))
2262 (delete 'build)))) 8565 (inputs `(("node-kind-of" ,node-kind-of-4.0.0)
2263 (inputs 8566 ("node-is-number" ,node-is-number-3.0.0)))
2264 `(("node-kind-of" ,node-kind-of-4.0.0) 8567 (home-page "https://github.com/jonschlinkert/has-values")
2265 ("node-is-number" ,node-is-number-3.0.0)))
2266 (home-page
2267 "https://github.com/jonschlinkert/has-values")
2268 (synopsis 8568 (synopsis
2269 "Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays. ") 8569 "Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays. ")
2270 (description 8570 (description
2271 "Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays. ") 8571 "Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays. ")
2272 (license license:expat))) 8572 (license license:expat)))
2273 8573
2274(define-public node-has-value-1.0.0 8574(define-public node-has-value-1.0.0
2275 (package 8575 (package
2276 (name "node-has-value") 8576 (name "node-has-value")
2277 (version "1.0.0") 8577 (version "1.0.0")
2278 (source 8578 (source (origin
2279 (origin 8579 (method url-fetch)
2280 (method url-fetch) 8580 (uri
2281 (uri "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz") 8581 "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz")
2282 (sha256 8582 (sha256
2283 (base32 8583 (base32
2284 "1ikpbff1imw3nqqp9q9siwh7p93r1pdigiv6kgryx6l8hwiwbxr9")))) 8584 "1ikpbff1imw3nqqp9q9siwh7p93r1pdigiv6kgryx6l8hwiwbxr9"))))
2285 (build-system node-build-system) 8585 (build-system node-build-system)
2286 (arguments 8586 (arguments
2287 `(#:tests? 8587 '(#:tests? #f
2288 #f 8588 #:phases (modify-phases %standard-phases
2289 #:phases 8589 (delete 'build)
2290 (modify-phases 8590 (add-after 'patch-dependencies 'delete-dev-dependencies
2291 %standard-phases 8591 (lambda _
2292 (delete 'configure) 8592 (delete-dependencies '("gulp-format-md" "mocha")))))))
2293 (delete 'build)))) 8593 (inputs `(("node-isobject" ,node-isobject-3.0.1)
2294 (inputs 8594 ("node-has-values" ,node-has-values-1.0.0)
2295 `(("node-isobject" ,node-isobject-3.0.1) 8595 ("node-get-value" ,node-get-value-2.0.6)))
2296 ("node-has-values" ,node-has-values-1.0.0) 8596 (home-page "https://github.com/jonschlinkert/has-value")
2297 ("node-get-value" ,node-get-value-2.0.6)))
2298 (home-page
2299 "https://github.com/jonschlinkert/has-value")
2300 (synopsis
2301 "Returns true if a value exists, false if empty. Works with deeply nested values using object paths.")
2302 (description
2303 "Returns true if a value exists, false if empty. Works with deeply nested values using object paths.")
2304 (license license:expat)))
2305
2306(define-public node-set-value-2.0.1
2307 (package
2308 (name "node-set-value")
2309 (version "2.0.1")
2310 (source
2311 (origin
2312 (method url-fetch)
2313 (uri "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz")
2314 (sha256
2315 (base32
2316 "0qbp2ndx2qmmn6i7y92lk8jaj79cv36gpv9lq29lgw52wr6jbrl0"))))
2317 (build-system node-build-system)
2318 (arguments
2319 `(#:tests?
2320 #f
2321 #:phases
2322 (modify-phases
2323 %standard-phases
2324 (delete 'configure)
2325 (delete 'build))))
2326 (inputs
2327 `(("node-split-string" ,node-split-string-3.1.0)
2328 ("node-is-plain-object"
2329 ,node-is-plain-object-2.0.4)
2330 ("node-is-extendable" ,node-is-extendable-0.1.1)
2331 ("node-extend-shallow"
2332 ,node-extend-shallow-2.0.1)))
2333 (home-page
2334 "https://github.com/jonschlinkert/set-value")
2335 (synopsis 8597 (synopsis
2336 "Create nested values and any intermediaries using dot notation (`'a.b.c'`) paths.") 8598 "Returns true if a value exists, false if empty. Works with deeply nested values using object paths.")
2337 (description 8599 (description
2338 "Create nested values and any intermediaries using dot notation (`'a.b.c'`) paths.") 8600 "Returns true if a value exists, false if empty. Works with deeply nested values using object paths.")
2339 (license license:expat))) 8601 (license license:expat)))
2340 8602
2341(define-public node-to-object-path-0.3.0 8603(define-public node-to-object-path-0.3.0
2342 (package 8604 (package
2343 (name "node-to-object-path") 8605 (name "node-to-object-path")
2344 (version "0.3.0") 8606 (version "0.3.0")
2345 (source 8607 (source (origin
2346 (origin 8608 (method url-fetch)
2347 (method url-fetch) 8609 (uri
2348 (uri "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz") 8610 "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz")
2349 (sha256 8611 (sha256
2350 (base32 8612 (base32
2351 "01n40v8xlqm635rp6cyz0jpw6295wm9fkr6m85nqcf457rfbqc68")))) 8613 "01n40v8xlqm635rp6cyz0jpw6295wm9fkr6m85nqcf457rfbqc68"))))
2352 (build-system node-build-system) 8614 (build-system node-build-system)
2353 (arguments 8615 (arguments
2354 `(#:tests? 8616 '(#:tests? #f
2355 #f 8617 #:phases (modify-phases %standard-phases
2356 #:phases 8618 (delete 'build)
2357 (modify-phases 8619 (add-after 'patch-dependencies 'delete-dev-dependencies
2358 %standard-phases 8620 (lambda _
2359 (delete 'configure) 8621 (delete-dependencies '("base" "mocha")))))))
2360 (delete 'build))))
2361 (inputs `(("node-kind-of" ,node-kind-of-3.2.2))) 8622 (inputs `(("node-kind-of" ,node-kind-of-3.2.2)))
2362 (home-page 8623 (home-page "https://github.com/jonschlinkert/to-object-path")
2363 "https://github.com/jonschlinkert/to-object-path") 8624 (synopsis "Create an object path from a list or array of strings.")
2364 (synopsis 8625 (description "Create an object path from a list or array of strings.")
2365 "Create an object path from a list or array of strings.")
2366 (description
2367 "Create an object path from a list or array of strings.")
2368 (license license:expat))) 8626 (license license:expat)))
2369 8627
2370(define-public node-get-value-2.0.6 8628(define-public node-split-string-3.1.0
2371 (package
2372 (name "node-get-value")
2373 (version "2.0.6")
2374 (source
2375 (origin
2376 (method url-fetch)
2377 (uri "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz")
2378 (sha256
2379 (base32
2380 "057wz0ya7zlgz59m08zbaasvzfdxjzgd6bzphd2xwsydhjwnw02l"))))
2381 (build-system node-build-system)
2382 (arguments
2383 `(#:tests?
2384 #f
2385 #:phases
2386 (modify-phases
2387 %standard-phases
2388 (delete 'configure)
2389 (delete 'build))))
2390 (home-page
2391 "https://github.com/jonschlinkert/get-value")
2392 (synopsis
2393 "Use property paths (`a.b.c`) to get a nested value from an object.")
2394 (description
2395 "Use property paths (`a.b.c`) to get a nested value from an object.")
2396 (license license:expat)))
2397
2398(define-public node-is-extendable-0.1.1
2399 (package
2400 (name "node-is-extendable")
2401 (version "0.1.1")
2402 (source
2403 (origin
2404 (method url-fetch)
2405 (uri "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz")
2406 (sha256
2407 (base32
2408 "12f91w1hcv9hw2jlrxf3831zhw7fb0bmzdybzsqb71h5phyjnd7b"))))
2409 (build-system node-build-system)
2410 (arguments
2411 `(#:tests?
2412 #f
2413 #:phases
2414 (modify-phases
2415 %standard-phases
2416 (delete 'configure)
2417 (delete 'build))))
2418 (home-page
2419 "https://github.com/jonschlinkert/is-extendable")
2420 (synopsis
2421 "Returns true if a value is any of the object types: array, regexp, plain object, function or date. This is useful for determining if a value can be extended, e.g. \"can the value have keys?\"")
2422 (description
2423 "Returns true if a value is any of the object types: array, regexp, plain object, function or date. This is useful for determining if a value can be extended, e.g. \"can the value have keys?\"")
2424 (license license:expat)))
2425
2426(define-public node-is-plain-object-2.0.4
2427 (package 8629 (package
2428 (name "node-is-plain-object") 8630 (name "node-split-string")
2429 (version "2.0.4") 8631 (version "3.1.0")
2430 (source 8632 (source (origin
2431 (origin 8633 (method url-fetch)
2432 (method url-fetch) 8634 (uri
2433 (uri "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz") 8635 "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz")
2434 (sha256 8636 (sha256
2435 (base32 8637 (base32
2436 "1ipx9y0c1kmq6irjxix6vcxfax6ilnns9pkgjc6cq8ygnyagv4s8")))) 8638 "1bx5n7bga42bd5d804w7y06wx96qk524gylxl4xi3i8nb8ch86na"))))
2437 (build-system node-build-system) 8639 (build-system node-build-system)
2438 (arguments 8640 (arguments
2439 `(#:tests? 8641 '(#:tests? #f
2440 #f 8642 #:phases (modify-phases %standard-phases
2441 #:phases 8643 (delete 'build)
2442 (modify-phases 8644 (add-after 'patch-dependencies 'delete-dev-dependencies
2443 %standard-phases 8645 (lambda _
2444 (delete 'configure) 8646 (delete-dependencies '("gulp-format-md" "mocha")))))))
2445 (delete 'build)))) 8647 (inputs `(("node-extend-shallow" ,node-extend-shallow-3.0.2)))
2446 (inputs 8648 (home-page "https://github.com/jonschlinkert/split-string")
2447 `(("node-isobject" ,node-isobject-3.0.1)))
2448 (home-page
2449 "https://github.com/jonschlinkert/is-plain-object")
2450 (synopsis 8649 (synopsis
2451 "Returns true if an object was created by the `Object` constructor.") 8650 "Split a string on a character except when the character is escaped.")
2452 (description 8651 (description
2453 "Returns true if an object was created by the `Object` constructor.") 8652 "Split a string on a character except when the character is escaped.")
2454 (license license:expat))) 8653 (license license:expat)))
2455 8654
2456(define-public node-extend-shallow-3.0.2 8655(define-public node-set-value-2.0.1
2457 (package 8656 (package
2458 (name "node-extend-shallow") 8657 (name "node-set-value")
2459 (version "3.0.2") 8658 (version "2.0.1")
2460 (source 8659 (source (origin
2461 (origin 8660 (method url-fetch)
2462 (method url-fetch) 8661 (uri
2463 (uri "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz") 8662 "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz")
2464 (sha256 8663 (sha256
2465 (base32 8664 (base32
2466 "02bickcbljfrxfix2rbvq5j2cdlwm0dqflxc2ky4l6jp97bcl6m0")))) 8665 "0qbp2ndx2qmmn6i7y92lk8jaj79cv36gpv9lq29lgw52wr6jbrl0"))))
2467 (build-system node-build-system) 8666 (build-system node-build-system)
2468 (arguments 8667 (arguments
2469 `(#:tests? 8668 '(#:tests? #f
2470 #f 8669 #:phases (modify-phases %standard-phases
2471 #:phases 8670 (delete 'build)
2472 (modify-phases 8671 (add-after 'patch-dependencies 'delete-dev-dependencies
2473 %standard-phases 8672 (lambda _
2474 (delete 'configure) 8673 (delete-dependencies '("gulp-format-md" "mocha")))))))
2475 (delete 'build)))) 8674 (inputs `(("node-split-string" ,node-split-string-3.1.0)
2476 (inputs 8675 ("node-is-plain-object" ,node-is-plain-object-2.0.4)
2477 `(("node-is-extendable" ,node-is-extendable-1.0.1) 8676 ("node-is-extendable" ,node-is-extendable-0.1.1)
2478 ("node-assign-symbols" 8677 ("node-extend-shallow" ,node-extend-shallow-2.0.1)))
2479 ,node-assign-symbols-1.0.0))) 8678 (home-page "https://github.com/jonschlinkert/set-value")
2480 (home-page
2481 "https://github.com/jonschlinkert/extend-shallow")
2482 (synopsis 8679 (synopsis
2483 "Extend an object with the properties of additional objects. node.js/javascript util.") 8680 "Create nested values and any intermediaries using dot notation (`'a.b.c'`) paths.")
2484 (description 8681 (description
2485 "Extend an object with the properties of additional objects. node.js/javascript util.") 8682 "Create nested values and any intermediaries using dot notation (`'a.b.c'`) paths.")
2486 (license license:expat))) 8683 (license license:expat)))
2487 8684
2488(define-public node-union-value-1.0.1 8685(define-public node-union-value-1.0.1
2489 (package 8686 (package
2490 (name "node-union-value") 8687 (name "node-union-value")
2491 (version "1.0.1") 8688 (version "1.0.1")
2492 (source 8689 (source (origin
2493 (origin 8690 (method url-fetch)
2494 (method url-fetch) 8691 (uri
2495 (uri "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz") 8692 "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz")
2496 (sha256 8693 (sha256
2497 (base32 8694 (base32
2498 "00rjw4hvxnj5vrji9qzbxn6y9rx6av1q3nv8ilyxpska3q0zpj75")))) 8695 "00rjw4hvxnj5vrji9qzbxn6y9rx6av1q3nv8ilyxpska3q0zpj75"))))
2499 (build-system node-build-system) 8696 (build-system node-build-system)
2500 (arguments 8697 (arguments
2501 `(#:tests? 8698 '(#:tests? #f
2502 #f 8699 #:phases (modify-phases %standard-phases
2503 #:phases 8700 (delete 'build)
2504 (modify-phases 8701 (add-after 'patch-dependencies 'delete-dev-dependencies
2505 %standard-phases 8702 (lambda _
2506 (delete 'configure) 8703 (delete-dependencies '("gulp-format-md" "mocha" "should")))))))
2507 (delete 'build)))) 8704 (inputs `(("node-set-value" ,node-set-value-2.0.1)
2508 (inputs 8705 ("node-is-extendable" ,node-is-extendable-0.1.1)
2509 `(("node-set-value" ,node-set-value-2.0.1) 8706 ("node-get-value" ,node-get-value-2.0.6)
2510 ("node-is-extendable" ,node-is-extendable-0.1.1) 8707 ("node-arr-union" ,node-arr-union-3.1.0)))
2511 ("node-get-value" ,node-get-value-2.0.6) 8708 (home-page "https://github.com/jonschlinkert/union-value")
2512 ("node-arr-union" ,node-arr-union-3.1.0)))
2513 (home-page
2514 "https://github.com/jonschlinkert/union-value")
2515 (synopsis 8709 (synopsis
2516 "Set an array of unique values as the property of an object. Supports setting deeply nested properties using using object-paths/dot notation.") 8710 "Set an array of unique values as the property of an object. Supports setting deeply nested properties using using object-paths/dot notation.")
2517 (description 8711 (description
2518 "Set an array of unique values as the property of an object. Supports setting deeply nested properties using using object-paths/dot notation.") 8712 "Set an array of unique values as the property of an object. Supports setting deeply nested properties using using object-paths/dot notation.")
8713 (license license:expat)))
8714
8715(define-public node-get-value-2.0.6
8716 (package
8717 (name "node-get-value")
8718 (version "2.0.6")
8719 (source (origin
8720 (method url-fetch)
8721 (uri
8722 "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz")
8723 (sha256
8724 (base32
8725 "057wz0ya7zlgz59m08zbaasvzfdxjzgd6bzphd2xwsydhjwnw02l"))))
8726 (build-system node-build-system)
8727 (arguments
8728 '(#:tests? #f
8729 #:phases (modify-phases %standard-phases
8730 (delete 'build)
8731 (add-after 'patch-dependencies 'delete-dev-dependencies
8732 (lambda _
8733 (delete-dependencies '("ansi-bold" "arr-reduce"
8734 "benchmarked"
8735 "dot-prop"
8736 "getobject"
8737 "gulp"
8738 "gulp-eslint"
8739 "gulp-format-md"
8740 "gulp-istanbul"
8741 "gulp-mocha"
8742 "isobject"
8743 "matched"
8744 "minimist")))))))
8745 (home-page "https://github.com/jonschlinkert/get-value")
8746 (synopsis
8747 "Use property paths (`a.b.c`) to get a nested value from an object.")
8748 (description
8749 "Use property paths (`a.b.c`) to get a nested value from an object.")
2519 (license license:expat))) 8750 (license license:expat)))
2520 8751
2521(define-public node-has-values-0.1.4 8752(define-public node-has-values-0.1.4
2522 (package 8753 (package
2523 (name "node-has-values") 8754 (name "node-has-values")
2524 (version "0.1.4") 8755 (version "0.1.4")
2525 (source 8756 (source (origin
2526 (origin 8757 (method url-fetch)
2527 (method url-fetch) 8758 (uri
2528 (uri "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz") 8759 "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz")
2529 (sha256 8760 (sha256
2530 (base32 8761 (base32
2531 "1lnp2ww5w0lxxiqrm3scyaddj7csdrd4ldsmsvapys4rdfgnx0m6")))) 8762 "1lnp2ww5w0lxxiqrm3scyaddj7csdrd4ldsmsvapys4rdfgnx0m6"))))
2532 (build-system node-build-system) 8763 (build-system node-build-system)
2533 (arguments 8764 (arguments
2534 `(#:tests? 8765 '(#:tests? #f
2535 #f 8766 #:phases (modify-phases %standard-phases
2536 #:phases 8767 (delete 'build)
2537 (modify-phases 8768 (add-after 'patch-dependencies 'delete-dev-dependencies
2538 %standard-phases 8769 (lambda _
2539 (delete 'configure) 8770 (delete-dependencies '("gulp-format-md" "mocha")))))))
2540 (delete 'build)))) 8771 (home-page "https://github.com/jonschlinkert/has-values")
2541 (home-page
2542 "https://github.com/jonschlinkert/has-values")
2543 (synopsis 8772 (synopsis
2544 "Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays. ") 8773 "Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays. ")
2545 (description 8774 (description
2546 "Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays. ") 8775 "Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays. ")
2547 (license license:expat)))
2548
2549(define-public node-isarray-1.0.0
2550 (package
2551 (name "node-isarray")
2552 (version "1.0.0")
2553 (source
2554 (origin
2555 (method url-fetch)
2556 (uri "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz")
2557 (sha256
2558 (base32
2559 "11qcjpdzigcwcprhv7nyarlzjcwf3sv5i66q75zf08jj9zqpcg72"))))
2560 (build-system node-build-system)
2561 (arguments
2562 `(#:tests?
2563 #f
2564 #:phases
2565 (modify-phases
2566 %standard-phases
2567 (delete 'configure)
2568 (delete 'build))))
2569 (home-page
2570 "https://github.com/juliangruber/isarray")
2571 (synopsis "Array#isArray for older browsers")
2572 (description "Array#isArray for older browsers")
2573 (license license:expat))) 8776 (license license:expat)))
2574 8777
2575(define-public node-isobject-2.1.0 8778(define-public node-isobject-2.1.0
2576 (package 8779 (package
2577 (name "node-isobject") 8780 (name "node-isobject")
2578 (version "2.1.0") 8781 (version "2.1.0")
2579 (source 8782 (source (origin
2580 (origin 8783 (method url-fetch)
2581 (method url-fetch) 8784 (uri "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz")
2582 (uri "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz") 8785 (sha256
2583 (sha256 8786 (base32
2584 (base32 8787 "14df1spjczhml90421sq645shkxwggrbbkgp1qgal29kslc7av32"))))
2585 "14df1spjczhml90421sq645shkxwggrbbkgp1qgal29kslc7av32")))) 8788 (build-system node-build-system)
2586 (build-system node-build-system) 8789 (arguments
2587 (arguments 8790 '(#:tests? #f
2588 `(#:tests? 8791 #:phases (modify-phases %standard-phases
2589 #f 8792 (delete 'build)
2590 #:phases 8793 (add-after 'patch-dependencies 'delete-dev-dependencies
2591 (modify-phases 8794 (lambda _
2592 %standard-phases 8795 (delete-dependencies '("gulp-format-md" "mocha")))))))
2593 (delete 'configure)
2594 (delete 'build))))
2595 (inputs `(("node-isarray" ,node-isarray-1.0.0))) 8796 (inputs `(("node-isarray" ,node-isarray-1.0.0)))
2596 (home-page 8797 (home-page "https://github.com/jonschlinkert/isobject")
2597 "https://github.com/jonschlinkert/isobject")
2598 (synopsis 8798 (synopsis
2599 "Returns true if the value is an object and not an array or null.") 8799 "Returns true if the value is an object and not an array or null.")
2600 (description 8800 (description
2601 "Returns true if the value is an object and not an array or null.") 8801 "Returns true if the value is an object and not an array or null.")
2602 (license license:expat))) 8802 (license license:expat)))
2603 8803
2604(define-public node-has-value-0.3.1 8804(define-public node-has-value-0.3.1
2605 (package 8805 (package
2606 (name "node-has-value") 8806 (name "node-has-value")
2607 (version "0.3.1") 8807 (version "0.3.1")
2608 (source 8808 (source (origin
2609 (origin 8809 (method url-fetch)
2610 (method url-fetch) 8810 (uri
2611 (uri "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz") 8811 "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz")
2612 (sha256 8812 (sha256
2613 (base32 8813 (base32
2614 "1h4dnzr9rszpj0a015529r1c9g8ysy4wym6ay99vc6dls02jhmny")))) 8814 "1h4dnzr9rszpj0a015529r1c9g8ysy4wym6ay99vc6dls02jhmny"))))
2615 (build-system node-build-system) 8815 (build-system node-build-system)
2616 (arguments 8816 (arguments
2617 `(#:tests? 8817 '(#:tests? #f
2618 #f 8818 #:phases (modify-phases %standard-phases
2619 #:phases 8819 (delete 'build)
2620 (modify-phases 8820 (add-after 'patch-dependencies 'delete-dev-dependencies
2621 %standard-phases 8821 (lambda _
2622 (delete 'configure) 8822 (delete-dependencies '("gulp-format-md" "mocha")))))))
2623 (delete 'build)))) 8823 (inputs `(("node-isobject" ,node-isobject-2.1.0)
2624 (inputs 8824 ("node-has-values" ,node-has-values-0.1.4)
2625 `(("node-isobject" ,node-isobject-2.1.0) 8825 ("node-get-value" ,node-get-value-2.0.6)))
2626 ("node-has-values" ,node-has-values-0.1.4) 8826 (home-page "https://github.com/jonschlinkert/has-value")
2627 ("node-get-value" ,node-get-value-2.0.6)))
2628 (home-page
2629 "https://github.com/jonschlinkert/has-value")
2630 (synopsis 8827 (synopsis
2631 "Returns true if a value exists, false if empty. Works with deeply nested values using object paths.") 8828 "Returns true if a value exists, false if empty. Works with deeply nested values using object paths.")
2632 (description 8829 (description
2633 "Returns true if a value exists, false if empty. Works with deeply nested values using object paths.") 8830 "Returns true if a value exists, false if empty. Works with deeply nested values using object paths.")
2634 (license license:expat))) 8831 (license license:expat)))
2635 8832
2636(define-public node-unset-value-1.0.0 8833(define-public node-unset-value-1.0.0
2637 (package 8834 (package
2638 (name "node-unset-value") 8835 (name "node-unset-value")
2639 (version "1.0.0") 8836 (version "1.0.0")
2640 (source 8837 (source (origin
2641 (origin 8838 (method url-fetch)
2642 (method url-fetch) 8839 (uri
2643 (uri "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz") 8840 "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz")
2644 (sha256 8841 (sha256
2645 (base32 8842 (base32
2646 "11jj8ggkz8c54sf0zyqwlnwv89i5gj572ywbry7ispy6lqa84qsk")))) 8843 "11jj8ggkz8c54sf0zyqwlnwv89i5gj572ywbry7ispy6lqa84qsk"))))
2647 (build-system node-build-system) 8844 (build-system node-build-system)
2648 (arguments 8845 (arguments
2649 `(#:tests? 8846 '(#:tests? #f
2650 #f 8847 #:phases (modify-phases %standard-phases
2651 #:phases 8848 (delete 'build)
2652 (modify-phases 8849 (add-after 'patch-dependencies 'delete-dev-dependencies
2653 %standard-phases 8850 (lambda _
2654 (delete 'configure) 8851 (delete-dependencies '("gulp-format-md" "mocha" "should")))))))
2655 (delete 'build)))) 8852 (inputs `(("node-isobject" ,node-isobject-3.0.1)
2656 (inputs 8853 ("node-has-value" ,node-has-value-0.3.1)))
2657 `(("node-isobject" ,node-isobject-3.0.1) 8854 (home-page "https://github.com/jonschlinkert/unset-value")
2658 ("node-has-value" ,node-has-value-0.3.1))) 8855 (synopsis "Delete nested properties from an object using dot notation.")
2659 (home-page 8856 (description "Delete nested properties from an object using dot notation.")
2660 "https://github.com/jonschlinkert/unset-value")
2661 (synopsis
2662 "Delete nested properties from an object using dot notation.")
2663 (description
2664 "Delete nested properties from an object using dot notation.")
2665 (license license:expat))) 8857 (license license:expat)))
2666 8858
2667(define-public node-cache-base-1.0.1 8859(define-public node-cache-base-1.0.1
2668 (package 8860 (package
2669 (name "node-cache-base") 8861 (name "node-cache-base")
2670 (version "1.0.1") 8862 (version "1.0.1")
2671 (source 8863 (source (origin
2672 (origin 8864 (method url-fetch)
2673 (method url-fetch) 8865 (uri
2674 (uri "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz") 8866 "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz")
2675 (sha256 8867 (sha256
2676 (base32 8868 (base32
2677 "1iny3winp8x5ac39hx52baq60g2hsp4pcx95a634c83klawdaw78")))) 8869 "1iny3winp8x5ac39hx52baq60g2hsp4pcx95a634c83klawdaw78"))))
2678 (build-system node-build-system) 8870 (build-system node-build-system)
2679 (arguments 8871 (arguments
2680 `(#:tests? 8872 '(#:tests? #f
2681 #f 8873 #:phases (modify-phases %standard-phases
2682 #:phases 8874 (delete 'build)
2683 (modify-phases 8875 (add-after 'patch-dependencies 'delete-dev-dependencies
2684 %standard-phases 8876 (lambda _
2685 (delete 'configure) 8877 (delete-dependencies '("gulp-format-md" "mocha")))))))
2686 (delete 'build)))) 8878 (inputs `(("node-unset-value" ,node-unset-value-1.0.0)
2687 (inputs 8879 ("node-union-value" ,node-union-value-1.0.1)
2688 `(("node-unset-value" ,node-unset-value-1.0.0) 8880 ("node-to-object-path" ,node-to-object-path-0.3.0)
2689 ("node-union-value" ,node-union-value-1.0.1) 8881 ("node-set-value" ,node-set-value-2.0.1)
2690 ("node-to-object-path" 8882 ("node-isobject" ,node-isobject-3.0.1)
2691 ,node-to-object-path-0.3.0) 8883 ("node-has-value" ,node-has-value-1.0.0)
2692 ("node-set-value" ,node-set-value-2.0.1) 8884 ("node-get-value" ,node-get-value-2.0.6)
2693 ("node-isobject" ,node-isobject-3.0.1) 8885 ("node-component-emitter" ,node-component-emitter-1.3.0)
2694 ("node-has-value" ,node-has-value-1.0.0) 8886 ("node-collection-visit" ,node-collection-visit-1.0.0)))
2695 ("node-get-value" ,node-get-value-2.0.6) 8887 (home-page "https://github.com/jonschlinkert/cache-base")
2696 ("node-component-emitter" 8888 (synopsis
2697 ,node-component-emitter-1.3.0) 8889 "Basic object cache with `get`, `set`, `del`, and `has` methods for node.js/javascript projects.")
2698 ("node-collection-visit" 8890 (description
2699 ,node-collection-visit-1.0.0))) 8891 "Basic object cache with `get`, `set`, `del`, and `has` methods for node.js/javascript projects.")
2700 (home-page
2701 "https://github.com/jonschlinkert/cache-base")
2702 (synopsis
2703 "Basic object cache with `get`, `set`, `del`, and `has` methods for node.js/javascript projects.")
2704 (description
2705 "Basic object cache with `get`, `set`, `del`, and `has` methods for node.js/javascript projects.")
2706 (license license:expat))) 8892 (license license:expat)))
2707 8893
2708(define-public node-arr-union-3.1.0 8894(define-public node-arr-union-3.1.0
2709 (package 8895 (package
2710 (name "node-arr-union") 8896 (name "node-arr-union")
2711 (version "3.1.0") 8897 (version "3.1.0")
2712 (source 8898 (source (origin
2713 (origin 8899 (method url-fetch)
2714 (method url-fetch) 8900 (uri
2715 (uri "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz") 8901 "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz")
2716 (sha256 8902 (sha256
2717 (base32 8903 (base32
2718 "1jrcfq6xnx3lbvnpl9pzfvc2v3bcgyir1vwcc7p0slhf6gglzd3p")))) 8904 "1jrcfq6xnx3lbvnpl9pzfvc2v3bcgyir1vwcc7p0slhf6gglzd3p"))))
2719 (build-system node-build-system) 8905 (build-system node-build-system)
2720 (arguments 8906 (arguments
2721 `(#:tests? 8907 '(#:tests? #f
2722 #f 8908 #:phases (modify-phases %standard-phases
2723 #:phases 8909 (delete 'build)
2724 (modify-phases 8910 (add-after 'patch-dependencies 'delete-dev-dependencies
2725 %standard-phases 8911 (lambda _
2726 (delete 'configure) 8912 (delete-dependencies '("ansi-bold" "array-union"
2727 (delete 'build)))) 8913 "array-unique"
2728 (home-page 8914 "benchmarked"
2729 "https://github.com/jonschlinkert/arr-union") 8915 "gulp-format-md"
2730 (synopsis 8916 "minimist"
2731 "Combines a list of arrays, returning a single array with unique values, using strict equality for comparisons.") 8917 "mocha"
2732 (description 8918 "should")))))))
2733 "Combines a list of arrays, returning a single array with unique values, using strict equality for comparisons.") 8919 (home-page "https://github.com/jonschlinkert/arr-union")
2734 (license license:expat))) 8920 (synopsis
2735 8921 "Combines a list of arrays, returning a single array with unique values, using strict equality for comparisons.")
2736(define-public node-isobject-3.0.1 8922 (description
2737 (package 8923 "Combines a list of arrays, returning a single array with unique values, using strict equality for comparisons.")
2738 (name "node-isobject")
2739 (version "3.0.1")
2740 (source
2741 (origin
2742 (method url-fetch)
2743 (uri "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz")
2744 (sha256
2745 (base32
2746 "0dvx6rhjj5b9q7fcjg24lfy2nr3a1d2ypqy9zf9lqr2s00mwkiiw"))))
2747 (build-system node-build-system)
2748 (arguments
2749 `(#:tests?
2750 #f
2751 #:phases
2752 (modify-phases
2753 %standard-phases
2754 (delete 'configure)
2755 (delete 'build))))
2756 (home-page
2757 "https://github.com/jonschlinkert/isobject")
2758 (synopsis
2759 "Returns true if the value is an object and not an array or null.")
2760 (description
2761 "Returns true if the value is an object and not an array or null.")
2762 (license license:expat))) 8924 (license license:expat)))
2763 8925
2764(define-public node-copy-descriptor-0.1.1 8926(define-public node-copy-descriptor-0.1.1
2765 (package 8927 (package
2766 (name "node-copy-descriptor") 8928 (name "node-copy-descriptor")
2767 (version "0.1.1") 8929 (version "0.1.1")
2768 (source 8930 (source (origin
2769 (origin 8931 (method url-fetch)
2770 (method url-fetch) 8932 (uri
2771 (uri "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz") 8933 "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz")
2772 (sha256 8934 (sha256
2773 (base32 8935 (base32
2774 "1dmlg6g04hfn1kmjklw6l33va255gsml1mrlz07jfv2a4alz4470")))) 8936 "1dmlg6g04hfn1kmjklw6l33va255gsml1mrlz07jfv2a4alz4470"))))
2775 (build-system node-build-system) 8937 (build-system node-build-system)
2776 (arguments 8938 (arguments
2777 `(#:tests? 8939 '(#:tests? #f
2778 #f 8940 #:phases (modify-phases %standard-phases
2779 #:phases 8941 (delete 'build)
2780 (modify-phases 8942 (add-after 'patch-dependencies 'delete-dev-dependencies
2781 %standard-phases 8943 (lambda _
2782 (delete 'configure) 8944 (delete-dependencies '("gulp-format-md" "mocha")))))))
2783 (delete 'build)))) 8945 (home-page "https://github.com/jonschlinkert/copy-descriptor")
2784 (home-page 8946 (synopsis "Copy a descriptor from object A to object B")
2785 "https://github.com/jonschlinkert/copy-descriptor") 8947 (description "Copy a descriptor from object A to object B")
2786 (synopsis
2787 "Copy a descriptor from object A to object B")
2788 (description
2789 "Copy a descriptor from object A to object B")
2790 (license license:expat))) 8948 (license license:expat)))
2791 8949
2792(define-public node-object-copy-0.1.0 8950(define-public node-object-copy-0.1.0
2793 (package 8951 (package
2794 (name "node-object-copy") 8952 (name "node-object-copy")
2795 (version "0.1.0") 8953 (version "0.1.0")
2796 (source 8954 (source (origin
2797 (origin 8955 (method url-fetch)
2798 (method url-fetch) 8956 (uri
2799 (uri "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz") 8957 "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz")
2800 (sha256 8958 (sha256
2801 (base32 8959 (base32
2802 "1b59pq32z0kdzhjkwphyk5h0m59gcc4qvmkvq7zb49yla00w5f0w")))) 8960 "1b59pq32z0kdzhjkwphyk5h0m59gcc4qvmkvq7zb49yla00w5f0w"))))
2803 (build-system node-build-system) 8961 (build-system node-build-system)
2804 (arguments 8962 (arguments
2805 `(#:tests? 8963 '(#:tests? #f
2806 #f 8964 #:phases (modify-phases %standard-phases
2807 #:phases 8965 (delete 'build)
2808 (modify-phases 8966 (add-after 'patch-dependencies 'delete-dev-dependencies
2809 %standard-phases 8967 (lambda _
2810 (delete 'configure) 8968 (delete-dependencies '("gulp-format-md" "mocha")))))))
2811 (delete 'build)))) 8969 (inputs `(("node-kind-of" ,node-kind-of-3.2.2)
2812 (inputs 8970 ("node-define-property" ,node-define-property-0.2.5)
2813 `(("node-kind-of" ,node-kind-of-3.2.2) 8971 ("node-copy-descriptor" ,node-copy-descriptor-0.1.1)))
2814 ("node-define-property" 8972 (home-page "https://github.com/jonschlinkert/object-copy")
2815 ,node-define-property-0.2.5)
2816 ("node-copy-descriptor"
2817 ,node-copy-descriptor-0.1.1)))
2818 (home-page
2819 "https://github.com/jonschlinkert/object-copy")
2820 (synopsis 8973 (synopsis
2821 "Copy static properties, prototype properties, and descriptors from one object to another.") 8974 "Copy static properties, prototype properties, and descriptors from one object to another.")
2822 (description 8975 (description
2823 "Copy static properties, prototype properties, and descriptors from one object to another.") 8976 "Copy static properties, prototype properties, and descriptors from one object to another.")
2824 (license license:expat))) 8977 (license license:expat)))
2825 8978
2826(define-public node-static-extend-0.1.2 8979(define-public node-static-extend-0.1.2
2827 (package 8980 (package
2828 (name "node-static-extend") 8981 (name "node-static-extend")
2829 (version "0.1.2") 8982 (version "0.1.2")
2830 (source 8983 (source (origin
2831 (origin 8984 (method url-fetch)
2832 (method url-fetch) 8985 (uri
2833 (uri "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz") 8986 "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz")
2834 (sha256 8987 (sha256
2835 (base32 8988 (base32
2836 "1hwg7diq3kg6q7d2ymj423562yx6nfdqlym538s6ca02zxjgi7nl")))) 8989 "1hwg7diq3kg6q7d2ymj423562yx6nfdqlym538s6ca02zxjgi7nl"))))
2837 (build-system node-build-system) 8990 (build-system node-build-system)
2838 (arguments 8991 (arguments
2839 `(#:tests? 8992 '(#:tests? #f
2840 #f 8993 #:phases (modify-phases %standard-phases
2841 #:phases 8994 (delete 'build)
2842 (modify-phases 8995 (add-after 'patch-dependencies 'delete-dev-dependencies
2843 %standard-phases 8996 (lambda _
2844 (delete 'configure) 8997 (delete-dependencies '("gulp-format-md" "mocha")))))))
2845 (delete 'build)))) 8998 (inputs `(("node-object-copy" ,node-object-copy-0.1.0)
2846 (inputs 8999 ("node-define-property" ,node-define-property-0.2.5)))
2847 `(("node-object-copy" ,node-object-copy-0.1.0) 9000 (home-page "https://github.com/jonschlinkert/static-extend")
2848 ("node-define-property"
2849 ,node-define-property-0.2.5)))
2850 (home-page
2851 "https://github.com/jonschlinkert/static-extend")
2852 (synopsis 9001 (synopsis
2853 "Adds a static `extend` method to a class, to simplify inheritance. Extends the static properties, prototype properties, and descriptors from a `Parent` constructor onto `Child` constructors.") 9002 "Adds a static `extend` method to a class, to simplify inheritance. Extends the static properties, prototype properties, and descriptors from a `Parent` constructor onto `Child` constructors.")
2854 (description 9003 (description
2855 "Adds a static `extend` method to a class, to simplify inheritance. Extends the static properties, prototype properties, and descriptors from a `Parent` constructor onto `Child` constructors.") 9004 "Adds a static `extend` method to a class, to simplify inheritance. Extends the static properties, prototype properties, and descriptors from a `Parent` constructor onto `Child` constructors.")
2856 (license license:expat))) 9005 (license license:expat)))
2857 9006
2858(define-public node-class-utils-0.3.6 9007(define-public node-class-utils-0.3.6
2859 (package 9008 (package
2860 (name "node-class-utils") 9009 (name "node-class-utils")
2861 (version "0.3.6") 9010 (version "0.3.6")
2862 (source 9011 (source (origin
2863 (origin 9012 (method url-fetch)
2864 (method url-fetch) 9013 (uri
2865 (uri "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz") 9014 "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz")
2866 (sha256 9015 (sha256
2867 (base32 9016 (base32
2868 "0567alh9j9bl7rj91frmjdpb4q5zig9rydzkdm9pmij85h7sffjh")))) 9017 "0567alh9j9bl7rj91frmjdpb4q5zig9rydzkdm9pmij85h7sffjh"))))
2869 (build-system node-build-system) 9018 (build-system node-build-system)
2870 (arguments 9019 (arguments
2871 `(#:tests? 9020 '(#:tests? #f
2872 #f 9021 #:phases (modify-phases %standard-phases
2873 #:phases 9022 (delete 'build)
2874 (modify-phases 9023 (add-after 'patch-dependencies 'delete-dev-dependencies
2875 %standard-phases 9024 (lambda _
2876 (delete 'configure) 9025 (delete-dependencies '("gulp" "gulp-eslint"
2877 (delete 'build)))) 9026 "gulp-format-md"
2878 (inputs 9027 "gulp-istanbul"
2879 `(("node-static-extend" ,node-static-extend-0.1.2) 9028 "gulp-mocha"
2880 ("node-isobject" ,node-isobject-3.0.1) 9029 "mocha"
2881 ("node-define-property" 9030 "should"
2882 ,node-define-property-0.2.5) 9031 "through2")))))))
2883 ("node-arr-union" ,node-arr-union-3.1.0))) 9032 (inputs `(("node-static-extend" ,node-static-extend-0.1.2)
2884 (home-page 9033 ("node-isobject" ,node-isobject-3.0.1)
2885 "https://github.com/jonschlinkert/class-utils") 9034 ("node-define-property" ,node-define-property-0.2.5)
2886 (synopsis 9035 ("node-arr-union" ,node-arr-union-3.1.0)))
2887 "Utils for working with JavaScript classes and prototype methods.") 9036 (home-page "https://github.com/jonschlinkert/class-utils")
2888 (description 9037 (synopsis
2889 "Utils for working with JavaScript classes and prototype methods.") 9038 "Utils for working with JavaScript classes and prototype methods.")
9039 (description
9040 "Utils for working with JavaScript classes and prototype methods.")
2890 (license license:expat))) 9041 (license license:expat)))
2891 9042
2892(define-public node-component-emitter-1.3.0 9043(define-public node-component-emitter-1.3.0
2893 (package 9044 (package
2894 (name "node-component-emitter") 9045 (name "node-component-emitter")
2895 (version "1.3.0") 9046 (version "1.3.0")
2896 (source 9047 (source (origin
2897 (origin 9048 (method url-fetch)
2898 (method url-fetch) 9049 (uri
2899 (uri "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz") 9050 "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz")
2900 (sha256 9051 (sha256
2901 (base32 9052 (base32
2902 "0qc1qx0ngvah8lmkn0d784vlxmya2kr5gpjcpfikxlpwx5v3wr0h")))) 9053 "0qc1qx0ngvah8lmkn0d784vlxmya2kr5gpjcpfikxlpwx5v3wr0h"))))
2903 (build-system node-build-system) 9054 (build-system node-build-system)
2904 (arguments 9055 (arguments
2905 `(#:tests? 9056 '(#:tests? #f
2906 #f 9057 #:phases (modify-phases %standard-phases
2907 #:phases 9058 (delete 'build)
2908 (modify-phases 9059 (add-after 'patch-dependencies 'delete-dev-dependencies
2909 %standard-phases 9060 (lambda _
2910 (delete 'configure) 9061 (delete-dependencies '("mocha" "should")))))))
2911 (delete 'build)))) 9062 (home-page "https://github.com/component/emitter#readme")
2912 (home-page
2913 "https://github.com/component/emitter#readme")
2914 (synopsis "Event emitter") 9063 (synopsis "Event emitter")
2915 (description "Event emitter") 9064 (description "Event emitter")
2916 (license license:expat))) 9065 (license license:expat)))
2917 9066
2918(define-public node-is-descriptor-1.0.2
2919 (package
2920 (name "node-is-descriptor")
2921 (version "1.0.2")
2922 (source
2923 (origin
2924 (method url-fetch)
2925 (uri "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz")
2926 (sha256
2927 (base32
2928 "1bbfdklsskykp1qw9h2mpxjk7hjh6685s1raq73lxbn2b6iyfppy"))))
2929 (build-system node-build-system)
2930 (arguments
2931 `(#:tests?
2932 #f
2933 #:phases
2934 (modify-phases
2935 %standard-phases
2936 (delete 'configure)
2937 (delete 'build))))
2938 (inputs
2939 `(("node-kind-of" ,node-kind-of-6.0.3)
2940 ("node-is-data-descriptor"
2941 ,node-is-data-descriptor-1.0.0)
2942 ("node-is-accessor-descriptor"
2943 ,node-is-accessor-descriptor-1.0.0)))
2944 (home-page
2945 "https://github.com/jonschlinkert/is-descriptor")
2946 (synopsis
2947 "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.")
2948 (description
2949 "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.")
2950 (license license:expat)))
2951
2952(define-public node-define-property-1.0.0 9067(define-public node-define-property-1.0.0
2953 (package 9068 (package
2954 (name "node-define-property") 9069 (name "node-define-property")
2955 (version "1.0.0") 9070 (version "1.0.0")
2956 (source 9071 (source (origin
2957 (origin 9072 (method url-fetch)
2958 (method url-fetch) 9073 (uri
2959 (uri "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz") 9074 "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz")
2960 (sha256 9075 (sha256
2961 (base32 9076 (base32
2962 "1547m4v074hgd28jzv4k82ig43pl7rgfnp0y832swxmlff4ra6m6")))) 9077 "1547m4v074hgd28jzv4k82ig43pl7rgfnp0y832swxmlff4ra6m6"))))
2963 (build-system node-build-system) 9078 (build-system node-build-system)
2964 (arguments 9079 (arguments
2965 `(#:tests? 9080 '(#:tests? #f
2966 #f 9081 #:phases (modify-phases %standard-phases
2967 #:phases 9082 (delete 'build)
2968 (modify-phases 9083 (add-after 'patch-dependencies 'delete-dev-dependencies
2969 %standard-phases 9084 (lambda _
2970 (delete 'configure) 9085 (delete-dependencies '("gulp-format-md" "mocha")))))))
2971 (delete 'build)))) 9086 (inputs `(("node-is-descriptor" ,node-is-descriptor-1.0.2)))
2972 (inputs 9087 (home-page "https://github.com/jonschlinkert/define-property")
2973 `(("node-is-descriptor" ,node-is-descriptor-1.0.2))) 9088 (synopsis "Define a non-enumerable property on an object.")
2974 (home-page 9089 (description "Define a non-enumerable property on an object.")
2975 "https://github.com/jonschlinkert/define-property") 9090 (license license:expat)))
9091
9092(define-public node-for-in-1.0.2
9093 (package
9094 (name "node-for-in")
9095 (version "1.0.2")
9096 (source (origin
9097 (method url-fetch)
9098 (uri "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz")
9099 (sha256
9100 (base32
9101 "0pm8dx9gvp9p91my9fqivajq7yhnxmn8scl391pgcv6d8h6s6zaf"))))
9102 (build-system node-build-system)
9103 (arguments
9104 '(#:tests? #f
9105 #:phases (modify-phases %standard-phases
9106 (delete 'build)
9107 (add-after 'patch-dependencies 'delete-dev-dependencies
9108 (lambda _
9109 (delete-dependencies '("gulp-format-md" "mocha")))))))
9110 (home-page "https://github.com/jonschlinkert/for-in")
2976 (synopsis 9111 (synopsis
2977 "Define a non-enumerable property on an object.") 9112 "Iterate over the own and inherited enumerable properties of an object, and return an object with properties that evaluate to true from the callback. Exit early by returning `false`. JavaScript/Node.js")
2978 (description 9113 (description
2979 "Define a non-enumerable property on an object.") 9114 "Iterate over the own and inherited enumerable properties of an object, and return an object with properties that evaluate to true from the callback. Exit early by returning `false`. JavaScript/Node.js")
2980 (license license:expat))) 9115 (license license:expat)))
2981 9116
2982(define-public node-mixin-deep-1.3.2 9117(define-public node-mixin-deep-1.3.2
2983 (package 9118 (package
2984 (name "node-mixin-deep") 9119 (name "node-mixin-deep")
2985 (version "1.3.2") 9120 (version "1.3.2")
2986 (source 9121 (source (origin
2987 (origin 9122 (method url-fetch)
2988 (method url-fetch) 9123 (uri
2989 (uri "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz") 9124 "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz")
2990 (sha256 9125 (sha256
2991 (base32 9126 (base32
2992 "0kdw3h2r5cpfazjdfjzh9yac7c2gb1vrl3nxm0bhl7pb3yh276iq")))) 9127 "0kdw3h2r5cpfazjdfjzh9yac7c2gb1vrl3nxm0bhl7pb3yh276iq"))))
2993 (build-system node-build-system) 9128 (build-system node-build-system)
2994 (arguments 9129 (arguments
2995 `(#:tests? 9130 '(#:tests? #f
2996 #f 9131 #:phases (modify-phases %standard-phases
2997 #:phases 9132 (delete 'build)
2998 (modify-phases 9133 (add-after 'patch-dependencies 'delete-dev-dependencies
2999 %standard-phases 9134 (lambda _
3000 (delete 'configure) 9135 (delete-dependencies '("gulp-format-md" "mocha" "should")))))))
3001 (delete 'build)))) 9136 (inputs `(("node-is-extendable" ,node-is-extendable-1.0.1)
3002 (inputs 9137 ("node-for-in" ,node-for-in-1.0.2)))
3003 `(("node-is-extendable" ,node-is-extendable-1.0.1) 9138 (home-page "https://github.com/jonschlinkert/mixin-deep")
3004 ("node-for-in" ,node-for-in-1.0.2)))
3005 (home-page
3006 "https://github.com/jonschlinkert/mixin-deep")
3007 (synopsis 9139 (synopsis
3008 "Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone.") 9140 "Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone.")
3009 (description 9141 (description
3010 "Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone.") 9142 "Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone.")
3011 (license license:expat))) 9143 (license license:expat)))
3012 9144
3013(define-public node-pascalcase-0.1.1 9145(define-public node-pascalcase-0.1.1
3014 (package 9146 (package
3015 (name "node-pascalcase") 9147 (name "node-pascalcase")
3016 (version "0.1.1") 9148 (version "0.1.1")
3017 (source 9149 (source (origin
3018 (origin 9150 (method url-fetch)
3019 (method url-fetch) 9151 (uri
3020 (uri "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz") 9152 "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz")
3021 (sha256 9153 (sha256
3022 (base32 9154 (base32
3023 "0hd2yjrsfhw3183dxzs5045xnas07in2ww5sl0m5jx035zcrqv2m")))) 9155 "0hd2yjrsfhw3183dxzs5045xnas07in2ww5sl0m5jx035zcrqv2m"))))
3024 (build-system node-build-system) 9156 (build-system node-build-system)
3025 (arguments 9157 (arguments
3026 `(#:tests? 9158 '(#:tests? #f
3027 #f 9159 #:phases (modify-phases %standard-phases
3028 #:phases 9160 (delete 'build)
3029 (modify-phases 9161 (add-after 'patch-dependencies 'delete-dev-dependencies
3030 %standard-phases 9162 (lambda _
3031 (delete 'configure) 9163 (delete-dependencies '("mocha" "should")))))))
3032 (delete 'build)))) 9164 (home-page "https://github.com/jonschlinkert/pascalcase")
3033 (home-page
3034 "https://github.com/jonschlinkert/pascalcase")
3035 (synopsis "Convert a string to pascal-case.") 9165 (synopsis "Convert a string to pascal-case.")
3036 (description "Convert a string to pascal-case.") 9166 (description "Convert a string to pascal-case.")
3037 (license license:expat))) 9167 (license license:expat)))
@@ -3040,119 +9170,121 @@
3040 (package 9170 (package
3041 (name "node-base") 9171 (name "node-base")
3042 (version "0.11.2") 9172 (version "0.11.2")
3043 (source 9173 (source (origin
3044 (origin 9174 (method url-fetch)
3045 (method url-fetch) 9175 (uri "https://registry.npmjs.org/base/-/base-0.11.2.tgz")
3046 (uri "https://registry.npmjs.org/base/-/base-0.11.2.tgz") 9176 (sha256
3047 (sha256 9177 (base32
3048 (base32 9178 "0wh3b37238q4x15diq4vp2vx6d6zqh9z0559p0kk6xh0v9b95ca0"))))
3049 "0wh3b37238q4x15diq4vp2vx6d6zqh9z0559p0kk6xh0v9b95ca0")))) 9179 (build-system node-build-system)
3050 (build-system node-build-system) 9180 (arguments
3051 (arguments 9181 '(#:tests? #f
3052 `(#:tests? 9182 #:phases (modify-phases %standard-phases
3053 #f 9183 (delete 'build)
3054 #:phases 9184 (add-after 'patch-dependencies 'delete-dev-dependencies
3055 (modify-phases 9185 (lambda _
3056 %standard-phases 9186 (delete-dependencies '("gulp" "gulp-eslint"
3057 (delete 'configure) 9187 "gulp-format-md"
3058 (delete 'build)))) 9188 "gulp-istanbul"
3059 (inputs 9189 "gulp-mocha"
3060 `(("node-pascalcase" ,node-pascalcase-0.1.1) 9190 "helper-coverage"
3061 ("node-mixin-deep" ,node-mixin-deep-1.3.2) 9191 "mocha"
3062 ("node-isobject" ,node-isobject-3.0.1) 9192 "should"
3063 ("node-define-property" 9193 "through2"
3064 ,node-define-property-1.0.0) 9194 "verb-generate-readme")))))))
3065 ("node-component-emitter" 9195 (inputs `(("node-pascalcase" ,node-pascalcase-0.1.1)
3066 ,node-component-emitter-1.3.0) 9196 ("node-mixin-deep" ,node-mixin-deep-1.3.2)
3067 ("node-class-utils" ,node-class-utils-0.3.6) 9197 ("node-isobject" ,node-isobject-3.0.1)
3068 ("node-cache-base" ,node-cache-base-1.0.1))) 9198 ("node-define-property" ,node-define-property-1.0.0)
9199 ("node-component-emitter" ,node-component-emitter-1.3.0)
9200 ("node-class-utils" ,node-class-utils-0.3.6)
9201 ("node-cache-base" ,node-cache-base-1.0.1)))
3069 (home-page "https://github.com/node-base/base") 9202 (home-page "https://github.com/node-base/base")
3070 (synopsis 9203 (synopsis
3071 "base is the foundation for creating modular, unit testable and highly pluggable node.js applications, starting with a handful of common methods, like `set`, `get`, `del` and `use`.") 9204 "base is the foundation for creating modular, unit testable and highly pluggable node.js applications, starting with a handful of common methods, like `set`, `get`, `del` and `use`.")
3072 (description 9205 (description
3073 "base is the foundation for creating modular, unit testable and highly pluggable node.js applications, starting with a handful of common methods, like `set`, `get`, `del` and `use`.") 9206 "base is the foundation for creating modular, unit testable and highly pluggable node.js applications, starting with a handful of common methods, like `set`, `get`, `del` and `use`.")
3074 (license license:expat))) 9207 (license license:expat)))
3075 9208
3076(define-public node-is-accessor-descriptor-0.1.6 9209(define-public node-is-accessor-descriptor-0.1.6
3077 (package 9210 (package
3078 (name "node-is-accessor-descriptor") 9211 (name "node-is-accessor-descriptor")
3079 (version "0.1.6") 9212 (version "0.1.6")
3080 (source 9213 (source (origin
3081 (origin 9214 (method url-fetch)
3082 (method url-fetch) 9215 (uri
3083 (uri "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz") 9216 "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz")
3084 (sha256 9217 (sha256
3085 (base32 9218 (base32
3086 "1j9kc4m771w28kdrph25q8q62yfiazg2gi6frnbfd66xfmimhmi3")))) 9219 "1j9kc4m771w28kdrph25q8q62yfiazg2gi6frnbfd66xfmimhmi3"))))
3087 (build-system node-build-system) 9220 (build-system node-build-system)
3088 (arguments 9221 (arguments
3089 `(#:tests? 9222 '(#:tests? #f
3090 #f 9223 #:phases (modify-phases %standard-phases
3091 #:phases 9224 (delete 'build)
3092 (modify-phases 9225 (add-after 'patch-dependencies 'delete-dev-dependencies
3093 %standard-phases 9226 (lambda _
3094 (delete 'configure) 9227 (delete-dependencies '("mocha" "should")))))))
3095 (delete 'build))))
3096 (inputs `(("node-kind-of" ,node-kind-of-3.2.2))) 9228 (inputs `(("node-kind-of" ,node-kind-of-3.2.2)))
3097 (home-page 9229 (home-page "https://github.com/jonschlinkert/is-accessor-descriptor")
3098 "https://github.com/jonschlinkert/is-accessor-descriptor")
3099 (synopsis 9230 (synopsis
3100 "Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.") 9231 "Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.")
3101 (description 9232 (description
3102 "Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.") 9233 "Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.")
3103 (license license:expat))) 9234 (license license:expat)))
3104 9235
3105(define-public node-is-data-descriptor-0.1.4 9236(define-public node-is-data-descriptor-0.1.4
3106 (package 9237 (package
3107 (name "node-is-data-descriptor") 9238 (name "node-is-data-descriptor")
3108 (version "0.1.4") 9239 (version "0.1.4")
3109 (source 9240 (source (origin
3110 (origin 9241 (method url-fetch)
3111 (method url-fetch) 9242 (uri
3112 (uri "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz") 9243 "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz")
3113 (sha256 9244 (sha256
3114 (base32 9245 (base32
3115 "0grcjmph4r8s17dd24mbq3ax09q9qgm6vrpjwkmhsc87nv42m9s3")))) 9246 "0grcjmph4r8s17dd24mbq3ax09q9qgm6vrpjwkmhsc87nv42m9s3"))))
3116 (build-system node-build-system) 9247 (build-system node-build-system)
3117 (arguments 9248 (arguments
3118 `(#:tests? 9249 '(#:tests? #f
3119 #f 9250 #:phases (modify-phases %standard-phases
3120 #:phases 9251 (delete 'build)
3121 (modify-phases 9252 (add-after 'patch-dependencies 'delete-dev-dependencies
3122 %standard-phases 9253 (lambda _
3123 (delete 'configure) 9254 (delete-dependencies '("mocha" "should")))))))
3124 (delete 'build))))
3125 (inputs `(("node-kind-of" ,node-kind-of-3.2.2))) 9255 (inputs `(("node-kind-of" ,node-kind-of-3.2.2)))
3126 (home-page 9256 (home-page "https://github.com/jonschlinkert/is-data-descriptor")
3127 "https://github.com/jonschlinkert/is-data-descriptor")
3128 (synopsis 9257 (synopsis
3129 "Returns true if a value has the characteristics of a valid JavaScript data descriptor.") 9258 "Returns true if a value has the characteristics of a valid JavaScript data descriptor.")
3130 (description 9259 (description
3131 "Returns true if a value has the characteristics of a valid JavaScript data descriptor.") 9260 "Returns true if a value has the characteristics of a valid JavaScript data descriptor.")
3132 (license license:expat))) 9261 (license license:expat)))
3133 9262
3134(define-public node-kind-of-5.1.0 9263(define-public node-kind-of-5.1.0
3135 (package 9264 (package
3136 (name "node-kind-of") 9265 (name "node-kind-of")
3137 (version "5.1.0") 9266 (version "5.1.0")
3138 (source 9267 (source (origin
3139 (origin 9268 (method url-fetch)
3140 (method url-fetch) 9269 (uri "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz")
3141 (uri "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz") 9270 (sha256
3142 (sha256 9271 (base32
3143 (base32 9272 "0wkp161zwgg2jp5rjnkw7d7lgczbxj6bwvqvh4s8j68ghk0c8q2d"))))
3144 "0wkp161zwgg2jp5rjnkw7d7lgczbxj6bwvqvh4s8j68ghk0c8q2d")))) 9273 (build-system node-build-system)
3145 (build-system node-build-system) 9274 (arguments
3146 (arguments 9275 '(#:tests? #f
3147 `(#:tests? 9276 #:phases (modify-phases %standard-phases
3148 #f 9277 (delete 'build)
3149 #:phases 9278 (add-after 'patch-dependencies 'delete-dev-dependencies
3150 (modify-phases 9279 (lambda _
3151 %standard-phases 9280 (delete-dependencies '("ansi-bold" "benchmarked"
3152 (delete 'configure) 9281 "browserify"
3153 (delete 'build)))) 9282 "gulp-format-md"
3154 (home-page 9283 "matched"
3155 "https://github.com/jonschlinkert/kind-of") 9284 "mocha"
9285 "type-of"
9286 "typeof")))))))
9287 (home-page "https://github.com/jonschlinkert/kind-of")
3156 (synopsis "Get the native type of a value.") 9288 (synopsis "Get the native type of a value.")
3157 (description "Get the native type of a value.") 9289 (description "Get the native type of a value.")
3158 (license license:expat))) 9290 (license license:expat)))
@@ -3161,201 +9293,207 @@
3161 (package 9293 (package
3162 (name "node-is-descriptor") 9294 (name "node-is-descriptor")
3163 (version "0.1.6") 9295 (version "0.1.6")
3164 (source 9296 (source (origin
3165 (origin 9297 (method url-fetch)
3166 (method url-fetch) 9298 (uri
3167 (uri "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz") 9299 "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz")
3168 (sha256 9300 (sha256
3169 (base32 9301 (base32
3170 "0smh1f833y06l7m1qasjms9kv9qjr11bzyaslpz0wq9qmbkl5mdh")))) 9302 "0smh1f833y06l7m1qasjms9kv9qjr11bzyaslpz0wq9qmbkl5mdh"))))
3171 (build-system node-build-system) 9303 (build-system node-build-system)
3172 (arguments 9304 (arguments
3173 `(#:tests? 9305 '(#:tests? #f
3174 #f 9306 #:phases (modify-phases %standard-phases
3175 #:phases 9307 (delete 'build)
3176 (modify-phases 9308 (add-after 'patch-dependencies 'delete-dev-dependencies
3177 %standard-phases 9309 (lambda _
3178 (delete 'configure) 9310 (delete-dependencies '("gulp-format-md" "mocha")))))))
3179 (delete 'build)))) 9311 (inputs `(("node-kind-of" ,node-kind-of-5.1.0)
3180 (inputs 9312 ("node-is-data-descriptor" ,node-is-data-descriptor-0.1.4)
3181 `(("node-kind-of" ,node-kind-of-5.1.0) 9313 ("node-is-accessor-descriptor" ,node-is-accessor-descriptor-0.1.6)))
3182 ("node-is-data-descriptor" 9314 (home-page "https://github.com/jonschlinkert/is-descriptor")
3183 ,node-is-data-descriptor-0.1.4)
3184 ("node-is-accessor-descriptor"
3185 ,node-is-accessor-descriptor-0.1.6)))
3186 (home-page
3187 "https://github.com/jonschlinkert/is-descriptor")
3188 (synopsis 9315 (synopsis
3189 "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.") 9316 "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.")
3190 (description 9317 (description
3191 "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.") 9318 "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.")
3192 (license license:expat))) 9319 (license license:expat)))
3193 9320
3194(define-public node-define-property-0.2.5 9321(define-public node-define-property-0.2.5
3195 (package 9322 (package
3196 (name "node-define-property") 9323 (name "node-define-property")
3197 (version "0.2.5") 9324 (version "0.2.5")
3198 (source 9325 (source (origin
3199 (origin 9326 (method url-fetch)
3200 (method url-fetch) 9327 (uri
3201 (uri "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz") 9328 "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz")
3202 (sha256 9329 (sha256
3203 (base32 9330 (base32
3204 "1r2gws87mpwv0i1rl3l79bw8psgpz44vwyd9va9cr90bvkada5yk")))) 9331 "1r2gws87mpwv0i1rl3l79bw8psgpz44vwyd9va9cr90bvkada5yk"))))
3205 (build-system node-build-system) 9332 (build-system node-build-system)
3206 (arguments 9333 (arguments
3207 `(#:tests? 9334 '(#:tests? #f
3208 #f 9335 #:phases (modify-phases %standard-phases
3209 #:phases 9336 (delete 'build)
3210 (modify-phases 9337 (add-after 'patch-dependencies 'delete-dev-dependencies
3211 %standard-phases 9338 (lambda _
3212 (delete 'configure) 9339 (delete-dependencies '("mocha" "should")))))))
3213 (delete 'build)))) 9340 (inputs `(("node-is-descriptor" ,node-is-descriptor-0.1.6)))
3214 (inputs 9341 (home-page "https://github.com/jonschlinkert/define-property")
3215 `(("node-is-descriptor" ,node-is-descriptor-0.1.6))) 9342 (synopsis "Define a non-enumerable property on an object.")
3216 (home-page 9343 (description "Define a non-enumerable property on an object.")
3217 "https://github.com/jonschlinkert/define-property") 9344 (license license:expat)))
9345
9346(define-public node-is-extendable-0.1.1
9347 (package
9348 (name "node-is-extendable")
9349 (version "0.1.1")
9350 (source (origin
9351 (method url-fetch)
9352 (uri
9353 "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz")
9354 (sha256
9355 (base32
9356 "12f91w1hcv9hw2jlrxf3831zhw7fb0bmzdybzsqb71h5phyjnd7b"))))
9357 (build-system node-build-system)
9358 (arguments
9359 '(#:tests? #f
9360 #:phases (modify-phases %standard-phases
9361 (delete 'build)
9362 (add-after 'patch-dependencies 'delete-dev-dependencies
9363 (lambda _
9364 (delete-dependencies '("mocha")))))))
9365 (home-page "https://github.com/jonschlinkert/is-extendable")
3218 (synopsis 9366 (synopsis
3219 "Define a non-enumerable property on an object.") 9367 "Returns true if a value is any of the object types: array, regexp, plain object, function or date. This is useful for determining if a value can be extended, e.g. \"can the value have keys?\"")
3220 (description 9368 (description
3221 "Define a non-enumerable property on an object.") 9369 "Returns true if a value is any of the object types: array, regexp, plain object, function or date. This is useful for determining if a value can be extended, e.g. \"can the value have keys?\"")
3222 (license license:expat))) 9370 (license license:expat)))
3223 9371
3224(define-public node-extend-shallow-2.0.1 9372(define-public node-extend-shallow-2.0.1
3225 (package 9373 (package
3226 (name "node-extend-shallow") 9374 (name "node-extend-shallow")
3227 (version "2.0.1") 9375 (version "2.0.1")
3228 (source 9376 (source (origin
3229 (origin 9377 (method url-fetch)
3230 (method url-fetch) 9378 (uri
3231 (uri "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz") 9379 "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz")
3232 (sha256 9380 (sha256
3233 (base32 9381 (base32
3234 "09baxpl8w1rw3qmqmp7w23kyqrxks1hhbvpac0j82gbsgimrlz0v")))) 9382 "09baxpl8w1rw3qmqmp7w23kyqrxks1hhbvpac0j82gbsgimrlz0v"))))
3235 (build-system node-build-system) 9383 (build-system node-build-system)
3236 (arguments 9384 (arguments
3237 `(#:tests? 9385 '(#:tests? #f
3238 #f 9386 #:phases (modify-phases %standard-phases
3239 #:phases 9387 (delete 'build)
3240 (modify-phases 9388 (add-after 'patch-dependencies 'delete-dev-dependencies
3241 %standard-phases 9389 (lambda _
3242 (delete 'configure) 9390 (delete-dependencies '("array-slice" "benchmarked"
3243 (delete 'build)))) 9391 "chalk"
3244 (inputs 9392 "for-own"
3245 `(("node-is-extendable" ,node-is-extendable-0.1.1))) 9393 "glob"
3246 (home-page 9394 "is-plain-object"
3247 "https://github.com/jonschlinkert/extend-shallow") 9395 "kind-of"
3248 (synopsis 9396 "minimist"
3249 "Extend an object with the properties of additional objects. node.js/javascript util.") 9397 "mocha"
3250 (description 9398 "should")))))))
3251 "Extend an object with the properties of additional objects. node.js/javascript util.") 9399 (inputs `(("node-is-extendable" ,node-is-extendable-0.1.1)))
9400 (home-page "https://github.com/jonschlinkert/extend-shallow")
9401 (synopsis
9402 "Extend an object with the properties of additional objects. node.js/javascript util.")
9403 (description
9404 "Extend an object with the properties of additional objects. node.js/javascript util.")
3252 (license license:expat))) 9405 (license license:expat)))
3253 9406
3254(define-public node-map-cache-0.2.2 9407(define-public node-map-cache-0.2.2
3255 (package 9408 (package
3256 (name "node-map-cache") 9409 (name "node-map-cache")
3257 (version "0.2.2") 9410 (version "0.2.2")
3258 (source 9411 (source (origin
3259 (origin 9412 (method url-fetch)
3260 (method url-fetch) 9413 (uri
3261 (uri "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz") 9414 "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz")
3262 (sha256 9415 (sha256
3263 (base32 9416 (base32
3264 "0gag01y8x17l2ffdmi5rgll24bw4cmyi3wksk45xpghirlkrkhj1")))) 9417 "0gag01y8x17l2ffdmi5rgll24bw4cmyi3wksk45xpghirlkrkhj1"))))
3265 (build-system node-build-system) 9418 (build-system node-build-system)
3266 (arguments 9419 (arguments
3267 `(#:tests? 9420 '(#:tests? #f
3268 #f 9421 #:phases (modify-phases %standard-phases
3269 #:phases 9422 (delete 'build)
3270 (modify-phases 9423 (add-after 'patch-dependencies 'delete-dev-dependencies
3271 %standard-phases 9424 (lambda _
3272 (delete 'configure) 9425 (delete-dependencies '("gulp-format-md" "should")))))))
3273 (delete 'build)))) 9426 (home-page "https://github.com/jonschlinkert/map-cache")
3274 (home-page 9427 (synopsis "Basic cache object for storing key-value pairs.")
3275 "https://github.com/jonschlinkert/map-cache") 9428 (description "Basic cache object for storing key-value pairs.")
3276 (synopsis
3277 "Basic cache object for storing key-value pairs.")
3278 (description
3279 "Basic cache object for storing key-value pairs.")
3280 (license license:expat))) 9429 (license license:expat)))
3281 9430
3282(define-public node-source-map-0.5.7 9431(define-public node-source-map-0.5.7
3283 (package 9432 (package
3284 (name "node-source-map") 9433 (name "node-source-map")
3285 (version "0.5.7") 9434 (version "0.5.7")
3286 (source 9435 (source (origin
3287 (origin 9436 (method url-fetch)
3288 (method url-fetch) 9437 (uri
3289 (uri "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz") 9438 "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz")
3290 (sha256 9439 (sha256
3291 (base32 9440 (base32
3292 "0rvb24j4kfib26w3cjyl6yan2dxvw1iy7d0wl404y5ckqjdjipp1")))) 9441 "0rvb24j4kfib26w3cjyl6yan2dxvw1iy7d0wl404y5ckqjdjipp1"))))
3293 (build-system node-build-system) 9442 (build-system node-build-system)
3294 (arguments 9443 (arguments
3295 `(#:tests? 9444 '(#:tests? #f
3296 #f 9445 #:phases (modify-phases %standard-phases
3297 #:phases 9446 (delete 'build)
3298 (modify-phases 9447 (add-after 'patch-dependencies 'delete-dev-dependencies
3299 %standard-phases 9448 (lambda _
3300 (delete 'configure) 9449 (delete-dependencies '("doctoc" "webpack")))))))
3301 (delete 'build)))) 9450 (home-page "https://github.com/mozilla/source-map")
3302 (home-page
3303 "https://github.com/mozilla/source-map")
3304 (synopsis "Generates and consumes source maps") 9451 (synopsis "Generates and consumes source maps")
3305 (description 9452 (description "Generates and consumes source maps")
3306 "Generates and consumes source maps")
3307 (license license:bsd-3))) 9453 (license license:bsd-3)))
3308 9454
3309(define-public node-atob-2.1.2 9455(define-public node-atob-2.1.2
3310 (package 9456 (package
3311 (name "node-atob") 9457 (name "node-atob")
3312 (version "2.1.2") 9458 (version "2.1.2")
3313 (source 9459 (source (origin
3314 (origin 9460 (method url-fetch)
3315 (method url-fetch) 9461 (uri "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz")
3316 (uri "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz") 9462 (sha256
3317 (sha256 9463 (base32
3318 (base32 9464 "1nmrnfpzg9a99i4p88knw3470d5vcqmm3hyhavlln96wnza2lbg5"))))
3319 "1nmrnfpzg9a99i4p88knw3470d5vcqmm3hyhavlln96wnza2lbg5")))) 9465 (build-system node-build-system)
3320 (build-system node-build-system) 9466 (arguments
3321 (arguments 9467 '(#:tests? #f
3322 `(#:tests? 9468 #:phases (modify-phases %standard-phases
3323 #f 9469 (delete 'build))))
3324 #:phases 9470 (home-page "https://git.coolaj86.com/coolaj86/atob.js.git")
3325 (modify-phases
3326 %standard-phases
3327 (delete 'configure)
3328 (delete 'build))))
3329 (home-page
3330 "https://git.coolaj86.com/coolaj86/atob.js.git")
3331 (synopsis 9471 (synopsis
3332 "atob for Node.JS and Linux / Mac / Windows CLI (it's a one-liner)") 9472 "atob for Node.JS and Linux / Mac / Windows CLI (it's a one-liner)")
3333 (description 9473 (description
3334 "atob for Node.JS and Linux / Mac / Windows CLI (it's a one-liner)") 9474 "atob for Node.JS and Linux / Mac / Windows CLI (it's a one-liner)")
3335 (license (license:non-copyleft "unknown")))) 9475 (license #f)))
3336 9476
3337(define-public node-decode-uri-component-0.2.0 9477(define-public node-decode-uri-component-0.2.2
3338 (package 9478 (package
3339 (name "node-decode-uri-component") 9479 (name "node-decode-uri-component")
3340 (version "0.2.0") 9480 (version "0.2.2")
3341 (source 9481 (source (origin
3342 (origin 9482 (method url-fetch)
3343 (method url-fetch) 9483 (uri
3344 (uri "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz") 9484 "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz")
3345 (sha256 9485 (sha256
3346 (base32 9486 (base32
3347 "1mhafchzv526marx5laflfrfz1dsz0mi61r9805rn96dhry44gha")))) 9487 "0qqjrlqr1k8fga8i9g8x4wb0qv9fi411fd07gqr78m3anxwyn8y1"))))
3348 (build-system node-build-system) 9488 (build-system node-build-system)
3349 (arguments 9489 (arguments
3350 `(#:tests? 9490 '(#:tests? #f
3351 #f 9491 #:phases (modify-phases %standard-phases
3352 #:phases 9492 (delete 'build)
3353 (modify-phases 9493 (add-after 'patch-dependencies 'delete-dev-dependencies
3354 %standard-phases 9494 (lambda _
3355 (delete 'configure) 9495 (delete-dependencies '("ava" "coveralls" "nyc" "xo")))))))
3356 (delete 'build)))) 9496 (home-page "https://github.com/SamVerschueren/decode-uri-component#readme")
3357 (home-page
3358 "https://github.com/samverschueren/decode-uri-component#readme")
3359 (synopsis "A better decodeURIComponent") 9497 (synopsis "A better decodeURIComponent")
3360 (description "A better decodeURIComponent") 9498 (description "A better decodeURIComponent")
3361 (license license:expat))) 9499 (license license:expat)))
@@ -3364,674 +9502,727 @@
3364 (package 9502 (package
3365 (name "node-resolve-url") 9503 (name "node-resolve-url")
3366 (version "0.2.1") 9504 (version "0.2.1")
3367 (source 9505 (source (origin
3368 (origin 9506 (method url-fetch)
3369 (method url-fetch) 9507 (uri
3370 (uri "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz") 9508 "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz")
3371 (sha256 9509 (sha256
3372 (base32 9510 (base32
3373 "090qal7agjs8d6x98jrf0wzgx5j85ksbkb3c85f14wv3idbwpsc8")))) 9511 "090qal7agjs8d6x98jrf0wzgx5j85ksbkb3c85f14wv3idbwpsc8"))))
3374 (build-system node-build-system) 9512 (build-system node-build-system)
3375 (arguments 9513 (arguments
3376 `(#:tests? 9514 '(#:tests? #f
3377 #f 9515 #:phases (modify-phases %standard-phases
3378 #:phases 9516 (delete 'build)
3379 (modify-phases 9517 (add-after 'patch-dependencies 'delete-dev-dependencies
3380 %standard-phases 9518 (lambda _
3381 (delete 'configure) 9519 (delete-dependencies '("testling" "jshint" "tape")))))))
3382 (delete 'build)))) 9520 (home-page "https://github.com/lydell/resolve-url")
3383 (home-page 9521 (synopsis "Like Node.js’ `path.resolve`/`url.resolve` for the browser.")
3384 "https://github.com/lydell/resolve-url")
3385 (synopsis
3386 "Like Node.jsâ\x80\x99 `path.resolve`/`url.resolve` for the browser.")
3387 (description 9522 (description
3388 "Like Node.jsâ\x80\x99 `path.resolve`/`url.resolve` for the browser.") 9523 "Like Node.js’ `path.resolve`/`url.resolve` for the browser.")
3389 (license license:expat))) 9524 (license license:expat)))
3390 9525
3391(define-public node-source-map-url-0.4.1 9526(define-public node-source-map-url-0.4.1
3392 (package 9527 (package
3393 (name "node-source-map-url") 9528 (name "node-source-map-url")
3394 (version "0.4.1") 9529 (version "0.4.1")
3395 (source 9530 (source (origin
3396 (origin 9531 (method url-fetch)
3397 (method url-fetch) 9532 (uri
3398 (uri "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz") 9533 "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz")
3399 (sha256 9534 (sha256
3400 (base32 9535 (base32
3401 "10c201qd0ik7n9dyliaypczj4jraalg6lj3ky27y052kyngqa1cc")))) 9536 "10c201qd0ik7n9dyliaypczj4jraalg6lj3ky27y052kyngqa1cc"))))
3402 (build-system node-build-system) 9537 (build-system node-build-system)
3403 (arguments 9538 (arguments
3404 `(#:tests? 9539 '(#:tests? #f
3405 #f 9540 #:phases (modify-phases %standard-phases
3406 #:phases 9541 (delete 'build)
3407 (modify-phases 9542 (add-after 'patch-dependencies 'delete-dev-dependencies
3408 %standard-phases 9543 (lambda _
3409 (delete 'configure) 9544 (delete-dependencies '("mocha" "expect.js" "jshint")))))))
3410 (delete 'build)))) 9545 (home-page "https://github.com/lydell/source-map-url#readme")
3411 (home-page 9546 (synopsis "Tools for working with sourceMappingURL comments.")
3412 "https://github.com/lydell/source-map-url#readme") 9547 (description "Tools for working with sourceMappingURL comments.")
3413 (synopsis
3414 "Tools for working with sourceMappingURL comments.")
3415 (description
3416 "Tools for working with sourceMappingURL comments.")
3417 (license license:expat))) 9548 (license license:expat)))
3418 9549
3419(define-public node-urix-0.1.0 9550(define-public node-urix-0.1.0
3420 (package 9551 (package
3421 (name "node-urix") 9552 (name "node-urix")
3422 (version "0.1.0") 9553 (version "0.1.0")
3423 (source 9554 (source (origin
3424 (origin 9555 (method url-fetch)
3425 (method url-fetch) 9556 (uri "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz")
3426 (uri "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz") 9557 (sha256
3427 (sha256 9558 (base32
3428 (base32 9559 "19qmq8cra96cf7ji8d4ljfcgnazzrvw4lcxlf91jk1816ndx1pbm"))))
3429 "19qmq8cra96cf7ji8d4ljfcgnazzrvw4lcxlf91jk1816ndx1pbm")))) 9560 (build-system node-build-system)
3430 (build-system node-build-system) 9561 (arguments
3431 (arguments 9562 '(#:tests? #f
3432 `(#:tests? 9563 #:phases (modify-phases %standard-phases
3433 #f 9564 (delete 'build)
3434 #:phases 9565 (add-after 'patch-dependencies 'delete-dev-dependencies
3435 (modify-phases 9566 (lambda _
3436 %standard-phases 9567 (delete-dependencies '("mocha" "jshint")))))))
3437 (delete 'configure)
3438 (delete 'build))))
3439 (home-page "https://github.com/lydell/urix") 9568 (home-page "https://github.com/lydell/urix")
3440 (synopsis 9569 (synopsis "Makes Windows-style paths more unix and URI friendly.")
3441 "Makes Windows-style paths more unix and URI friendly.") 9570 (description "Makes Windows-style paths more unix and URI friendly.")
3442 (description
3443 "Makes Windows-style paths more unix and URI friendly.")
3444 (license license:expat))) 9571 (license license:expat)))
3445 9572
3446(define-public node-source-map-resolve-0.5.3 9573(define-public node-source-map-resolve-0.5.3
3447 (package 9574 (package
3448 (name "node-source-map-resolve") 9575 (name "node-source-map-resolve")
3449 (version "0.5.3") 9576 (version "0.5.3")
3450 (source 9577 (source (origin
3451 (origin 9578 (method url-fetch)
3452 (method url-fetch) 9579 (uri
3453 (uri "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz") 9580 "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz")
3454 (sha256 9581 (sha256
3455 (base32 9582 (base32
3456 "1a9ykfyqnzxmna8i3f20g9pqcjzwx1f3wqwaa0bn6jwgmvwcvdj4")))) 9583 "1a9ykfyqnzxmna8i3f20g9pqcjzwx1f3wqwaa0bn6jwgmvwcvdj4"))))
3457 (build-system node-build-system) 9584 (build-system node-build-system)
3458 (arguments 9585 (arguments
3459 `(#:tests? 9586 '(#:tests? #f
3460 #f 9587 #:phases (modify-phases %standard-phases
3461 #:phases 9588 (delete 'build)
3462 (modify-phases 9589 (add-after 'patch-dependencies 'delete-dev-dependencies
3463 %standard-phases 9590 (lambda _
3464 (delete 'configure) 9591 (delete-dependencies '("Base64" "jshint" "setimmediate"
3465 (delete 'build)))) 9592 "simple-asyncify" "tape")))))))
3466 (inputs 9593 (inputs `(("node-urix" ,node-urix-0.1.0)
3467 `(("node-urix" ,node-urix-0.1.0) 9594 ("node-source-map-url" ,node-source-map-url-0.4.1)
3468 ("node-source-map-url" 9595 ("node-resolve-url" ,node-resolve-url-0.2.1)
3469 ,node-source-map-url-0.4.1) 9596 ("node-decode-uri-component" ,node-decode-uri-component-0.2.2)
3470 ("node-resolve-url" ,node-resolve-url-0.2.1) 9597 ("node-atob" ,node-atob-2.1.2)))
3471 ("node-decode-uri-component" 9598 (home-page "https://github.com/lydell/source-map-resolve#readme")
3472 ,node-decode-uri-component-0.2.0) 9599 (synopsis "Resolve the source map and/or sources for a generated file.")
3473 ("node-atob" ,node-atob-2.1.2))) 9600 (description "Resolve the source map and/or sources for a generated file.")
3474 (home-page
3475 "https://github.com/lydell/source-map-resolve#readme")
3476 (synopsis
3477 "Resolve the source map and/or sources for a generated file.")
3478 (description
3479 "Resolve the source map and/or sources for a generated file.")
3480 (license license:expat))) 9601 (license license:expat)))
3481 9602
3482(define-public node-use-3.1.1 9603(define-public node-use-3.1.1
3483 (package 9604 (package
3484 (name "node-use") 9605 (name "node-use")
3485 (version "3.1.1") 9606 (version "3.1.1")
3486 (source 9607 (source (origin
3487 (origin 9608 (method url-fetch)
3488 (method url-fetch) 9609 (uri "https://registry.npmjs.org/use/-/use-3.1.1.tgz")
3489 (uri "https://registry.npmjs.org/use/-/use-3.1.1.tgz") 9610 (sha256
3490 (sha256 9611 (base32
3491 (base32 9612 "1nqrazqb927s0nma2qi2c3aambpy34krz8cgl6610n456zg5vjin"))))
3492 "1nqrazqb927s0nma2qi2c3aambpy34krz8cgl6610n456zg5vjin")))) 9613 (build-system node-build-system)
3493 (build-system node-build-system) 9614 (arguments
3494 (arguments 9615 '(#:tests? #f
3495 `(#:tests? 9616 #:phases (modify-phases %standard-phases
3496 #f 9617 (delete 'build)
3497 #:phases 9618 (add-after 'patch-dependencies 'delete-dev-dependencies
3498 (modify-phases 9619 (lambda _
3499 %standard-phases 9620 (delete-dependencies '("base-plugins" "define-property"
3500 (delete 'configure) 9621 "extend-shallow"
3501 (delete 'build)))) 9622 "gulp"
3502 (home-page 9623 "gulp-eslint"
3503 "https://github.com/jonschlinkert/use") 9624 "gulp-format-md"
3504 (synopsis 9625 "gulp-istanbul"
3505 "Easily add plugin support to your node.js application.") 9626 "gulp-mocha"
3506 (description 9627 "mocha")))))))
3507 "Easily add plugin support to your node.js application.") 9628 (home-page "https://github.com/jonschlinkert/use")
9629 (synopsis "Easily add plugin support to your node.js application.")
9630 (description "Easily add plugin support to your node.js application.")
3508 (license license:expat))) 9631 (license license:expat)))
3509 9632
3510(define-public node-snapdragon-0.8.2 9633(define-public node-snapdragon-0.8.2
3511 (package 9634 (package
3512 (name "node-snapdragon") 9635 (name "node-snapdragon")
3513 (version "0.8.2") 9636 (version "0.8.2")
3514 (source 9637 (source (origin
3515 (origin 9638 (method url-fetch)
3516 (method url-fetch) 9639 (uri
3517 (uri "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz") 9640 "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz")
3518 (sha256 9641 (sha256
3519 (base32 9642 (base32
3520 "1anpibb0ajgw2yv400aq30bvvpcyi3yzyrp7fac2ia6r7ysxcgvq")))) 9643 "1anpibb0ajgw2yv400aq30bvvpcyi3yzyrp7fac2ia6r7ysxcgvq"))))
3521 (build-system node-build-system) 9644 (build-system node-build-system)
3522 (arguments 9645 (arguments
3523 `(#:tests? 9646 '(#:tests? #f
3524 #f 9647 #:phases (modify-phases %standard-phases
3525 #:phases 9648 (delete 'build)
3526 (modify-phases 9649 (add-after 'patch-dependencies 'delete-dev-dependencies
3527 %standard-phases 9650 (lambda _
3528 (delete 'configure) 9651 (delete-dependencies '("gulp" "gulp-eslint"
3529 (delete 'build)))) 9652 "gulp-format-md"
3530 (inputs 9653 "gulp-istanbul"
3531 `(("node-use" ,node-use-3.1.1) 9654 "gulp-mocha"
3532 ("node-source-map-resolve" 9655 "gulp-unused"
3533 ,node-source-map-resolve-0.5.3) 9656 "mocha")))))))
3534 ("node-source-map" ,node-source-map-0.5.7) 9657 (inputs `(("node-use" ,node-use-3.1.1)
3535 ("node-map-cache" ,node-map-cache-0.2.2) 9658 ("node-source-map-resolve" ,node-source-map-resolve-0.5.3)
3536 ("node-extend-shallow" 9659 ("node-source-map" ,node-source-map-0.5.7)
3537 ,node-extend-shallow-2.0.1) 9660 ("node-map-cache" ,node-map-cache-0.2.2)
3538 ("node-define-property" 9661 ("node-extend-shallow" ,node-extend-shallow-2.0.1)
3539 ,node-define-property-0.2.5) 9662 ("node-define-property" ,node-define-property-0.2.5)
3540 ("node-debug" ,node-debug-2.6.9) 9663 ("node-debug" ,node-debug-2.6.9)
3541 ("node-base" ,node-base-0.11.2))) 9664 ("node-base" ,node-base-0.11.2)))
3542 (home-page 9665 (home-page "https://github.com/jonschlinkert/snapdragon")
3543 "https://github.com/jonschlinkert/snapdragon") 9666 (synopsis "Fast, pluggable and easy-to-use parser-renderer factory.")
3544 (synopsis 9667 (description "Fast, pluggable and easy-to-use parser-renderer factory.")
3545 "Fast, pluggable and easy-to-use parser-renderer factory.")
3546 (description
3547 "Fast, pluggable and easy-to-use parser-renderer factory.")
3548 (license license:expat))) 9668 (license license:expat)))
3549 9669
3550(define-public node-is-accessor-descriptor-1.0.0 9670(define-public node-is-accessor-descriptor-1.0.0
3551 (package 9671 (package
3552 (name "node-is-accessor-descriptor") 9672 (name "node-is-accessor-descriptor")
3553 (version "1.0.0") 9673 (version "1.0.0")
3554 (source 9674 (source (origin
3555 (origin 9675 (method url-fetch)
3556 (method url-fetch) 9676 (uri
3557 (uri "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz") 9677 "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz")
3558 (sha256 9678 (sha256
3559 (base32 9679 (base32
3560 "18ybls0d0q6y7gp8mzhypyr0vbrx1vr5agm07s201byvc5dfmxql")))) 9680 "18ybls0d0q6y7gp8mzhypyr0vbrx1vr5agm07s201byvc5dfmxql"))))
3561 (build-system node-build-system) 9681 (build-system node-build-system)
3562 (arguments 9682 (arguments
3563 `(#:tests? 9683 '(#:tests? #f
3564 #f 9684 #:phases (modify-phases %standard-phases
3565 #:phases 9685 (delete 'build)
3566 (modify-phases 9686 (add-after 'patch-dependencies 'delete-dev-dependencies
3567 %standard-phases 9687 (lambda _
3568 (delete 'configure) 9688 (delete-dependencies '("gulp-format-md" "mocha")))))))
3569 (delete 'build))))
3570 (inputs `(("node-kind-of" ,node-kind-of-6.0.3))) 9689 (inputs `(("node-kind-of" ,node-kind-of-6.0.3)))
3571 (home-page 9690 (home-page "https://github.com/jonschlinkert/is-accessor-descriptor")
3572 "https://github.com/jonschlinkert/is-accessor-descriptor")
3573 (synopsis 9691 (synopsis
3574 "Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.") 9692 "Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.")
3575 (description 9693 (description
3576 "Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.") 9694 "Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.")
9695 (license license:expat)))
9696
9697(define-public node-is-data-descriptor-1.0.0
9698 (package
9699 (name "node-is-data-descriptor")
9700 (version "1.0.0")
9701 (source (origin
9702 (method url-fetch)
9703 (uri
9704 "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz")
9705 (sha256
9706 (base32
9707 "0b51kish7r330jy625yaz424kvawrh8vxnpajmkx364pw9hm9hi8"))))
9708 (build-system node-build-system)
9709 (arguments
9710 '(#:tests? #f
9711 #:phases (modify-phases %standard-phases
9712 (delete 'build)
9713 (add-after 'patch-dependencies 'delete-dev-dependencies
9714 (lambda _
9715 (delete-dependencies '("gulp-format-md" "mocha")))))))
9716 (inputs `(("node-kind-of" ,node-kind-of-6.0.3)))
9717 (home-page "https://github.com/jonschlinkert/is-data-descriptor")
9718 (synopsis
9719 "Returns true if a value has the characteristics of a valid JavaScript data descriptor.")
9720 (description
9721 "Returns true if a value has the characteristics of a valid JavaScript data descriptor.")
3577 (license license:expat))) 9722 (license license:expat)))
3578 9723
3579(define-public node-kind-of-6.0.3 9724(define-public node-kind-of-6.0.3
3580 (package 9725 (package
3581 (name "node-kind-of") 9726 (name "node-kind-of")
3582 (version "6.0.3") 9727 (version "6.0.3")
3583 (source 9728 (source (origin
3584 (origin 9729 (method url-fetch)
3585 (method url-fetch) 9730 (uri "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz")
3586 (uri "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz") 9731 (sha256
3587 (sha256 9732 (base32
3588 (base32 9733 "1nk31q65n9hcmbp16mbn55siqnf44wn1x71rrqyjv9bcbcxl893c"))))
3589 "1nk31q65n9hcmbp16mbn55siqnf44wn1x71rrqyjv9bcbcxl893c")))) 9734 (build-system node-build-system)
3590 (build-system node-build-system) 9735 (arguments
3591 (arguments 9736 '(#:tests? #f
3592 `(#:tests? 9737 #:phases (modify-phases %standard-phases
3593 #f 9738 (delete 'build)
3594 #:phases 9739 (add-after 'patch-dependencies 'delete-dev-dependencies
3595 (modify-phases 9740 (lambda _
3596 %standard-phases 9741 (delete-dependencies '("benchmarked" "browserify"
3597 (delete 'configure) 9742 "gulp-format-md" "mocha" "write")))))))
3598 (delete 'build)))) 9743 (home-page "https://github.com/jonschlinkert/kind-of")
3599 (home-page
3600 "https://github.com/jonschlinkert/kind-of")
3601 (synopsis "Get the native type of a value.") 9744 (synopsis "Get the native type of a value.")
3602 (description "Get the native type of a value.") 9745 (description "Get the native type of a value.")
3603 (license license:expat))) 9746 (license license:expat)))
3604 9747
3605(define-public node-is-data-descriptor-1.0.0 9748(define-public node-is-descriptor-1.0.2
3606 (package 9749 (package
3607 (name "node-is-data-descriptor") 9750 (name "node-is-descriptor")
3608 (version "1.0.0") 9751 (version "1.0.2")
3609 (source 9752 (source (origin
3610 (origin 9753 (method url-fetch)
3611 (method url-fetch) 9754 (uri
3612 (uri "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz") 9755 "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz")
3613 (sha256 9756 (sha256
3614 (base32 9757 (base32
3615 "0b51kish7r330jy625yaz424kvawrh8vxnpajmkx364pw9hm9hi8")))) 9758 "1bbfdklsskykp1qw9h2mpxjk7hjh6685s1raq73lxbn2b6iyfppy"))))
3616 (build-system node-build-system) 9759 (build-system node-build-system)
3617 (arguments 9760 (arguments
3618 `(#:tests? 9761 '(#:tests? #f
3619 #f 9762 #:phases (modify-phases %standard-phases
3620 #:phases 9763 (delete 'build)
3621 (modify-phases 9764 (add-after 'patch-dependencies 'delete-dev-dependencies
3622 %standard-phases 9765 (lambda _
3623 (delete 'configure) 9766 (delete-dependencies '("gulp-format-md" "mocha")))))))
3624 (delete 'build)))) 9767 (inputs `(("node-kind-of" ,node-kind-of-6.0.3)
3625 (inputs `(("node-kind-of" ,node-kind-of-6.0.3))) 9768 ("node-is-data-descriptor" ,node-is-data-descriptor-1.0.0)
3626 (home-page 9769 ("node-is-accessor-descriptor" ,node-is-accessor-descriptor-1.0.0)))
3627 "https://github.com/jonschlinkert/is-data-descriptor") 9770 (home-page "https://github.com/jonschlinkert/is-descriptor")
3628 (synopsis 9771 (synopsis
3629 "Returns true if a value has the characteristics of a valid JavaScript data descriptor.") 9772 "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.")
3630 (description 9773 (description
3631 "Returns true if a value has the characteristics of a valid JavaScript data descriptor.") 9774 "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.")
3632 (license license:expat))) 9775 (license license:expat)))
3633 9776
3634(define-public node-define-property-2.0.2 9777(define-public node-define-property-2.0.2
3635 (package 9778 (package
3636 (name "node-define-property") 9779 (name "node-define-property")
3637 (version "2.0.2") 9780 (version "2.0.2")
3638 (source 9781 (source (origin
3639 (origin 9782 (method url-fetch)
3640 (method url-fetch) 9783 (uri
3641 (uri "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz") 9784 "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz")
3642 (sha256 9785 (sha256
3643 (base32 9786 (base32
3644 "0m8x3myy76d3w777c1jq94gafphxqrpj7sy3myxcvksfk0p8vpha")))) 9787 "0m8x3myy76d3w777c1jq94gafphxqrpj7sy3myxcvksfk0p8vpha"))))
3645 (build-system node-build-system) 9788 (build-system node-build-system)
3646 (arguments 9789 (arguments
3647 `(#:tests? 9790 '(#:tests? #f
3648 #f 9791 #:phases (modify-phases %standard-phases
3649 #:phases 9792 (delete 'build)
3650 (modify-phases 9793 (add-after 'patch-dependencies 'delete-dev-dependencies
3651 %standard-phases 9794 (lambda _
3652 (delete 'configure) 9795 (delete-dependencies '("gulp-format-md" "mocha")))))))
3653 (delete 'build)))) 9796 (inputs `(("node-isobject" ,node-isobject-3.0.1)
3654 (inputs 9797 ("node-is-descriptor" ,node-is-descriptor-1.0.2)))
3655 `(("node-isobject" ,node-isobject-3.0.1) 9798 (home-page "https://github.com/jonschlinkert/define-property")
3656 ("node-is-descriptor" ,node-is-descriptor-1.0.2)))
3657 (home-page
3658 "https://github.com/jonschlinkert/define-property")
3659 (synopsis 9799 (synopsis
3660 "Define a non-enumerable property on an object. Uses Reflect.defineProperty when available, otherwise Object.defineProperty.") 9800 "Define a non-enumerable property on an object. Uses Reflect.defineProperty when available, otherwise Object.defineProperty.")
3661 (description 9801 (description
3662 "Define a non-enumerable property on an object. Uses Reflect.defineProperty when available, otherwise Object.defineProperty.") 9802 "Define a non-enumerable property on an object. Uses Reflect.defineProperty when available, otherwise Object.defineProperty.")
3663 (license license:expat))) 9803 (license license:expat)))
3664 9804
3665(define-public node-assign-symbols-1.0.0 9805(define-public node-assign-symbols-1.0.0
3666 (package 9806 (package
3667 (name "node-assign-symbols") 9807 (name "node-assign-symbols")
3668 (version "1.0.0") 9808 (version "1.0.0")
3669 (source 9809 (source (origin
3670 (origin 9810 (method url-fetch)
3671 (method url-fetch) 9811 (uri
3672 (uri "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz") 9812 "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz")
3673 (sha256 9813 (sha256
3674 (base32 9814 (base32
3675 "1lpcb6gzhdl4l9843kifsz9z48qwpk5gw6b1h6f6n7h5d8qp2xab")))) 9815 "1lpcb6gzhdl4l9843kifsz9z48qwpk5gw6b1h6f6n7h5d8qp2xab"))))
3676 (build-system node-build-system) 9816 (build-system node-build-system)
3677 (arguments 9817 (arguments
3678 `(#:tests? 9818 '(#:tests? #f
3679 #f 9819 #:phases (modify-phases %standard-phases
3680 #:phases 9820 (delete 'build)
3681 (modify-phases 9821 (add-after 'patch-dependencies 'delete-dev-dependencies
3682 %standard-phases 9822 (lambda _
3683 (delete 'configure) 9823 (delete-dependencies '("mocha")))))))
3684 (delete 'build)))) 9824 (home-page "https://github.com/jonschlinkert/assign-symbols")
3685 (home-page 9825 (synopsis
3686 "https://github.com/jonschlinkert/assign-symbols") 9826 "Assign the enumerable es6 Symbol properties from an object (or objects) to the first object passed on the arguments. Can be used as a supplement to other extend, assign or merge methods as a polyfill for the Symbols part of the es6 Object.assign method.")
9827 (description
9828 "Assign the enumerable es6 Symbol properties from an object (or objects) to the first object passed on the arguments. Can be used as a supplement to other extend, assign or merge methods as a polyfill for the Symbols part of the es6 Object.assign method.")
9829 (license license:expat)))
9830
9831(define-public node-isobject-3.0.1
9832 (package
9833 (name "node-isobject")
9834 (version "3.0.1")
9835 (source (origin
9836 (method url-fetch)
9837 (uri "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz")
9838 (sha256
9839 (base32
9840 "0dvx6rhjj5b9q7fcjg24lfy2nr3a1d2ypqy9zf9lqr2s00mwkiiw"))))
9841 (build-system node-build-system)
9842 (arguments
9843 '(#:tests? #f
9844 #:phases (modify-phases %standard-phases
9845 (delete 'build)
9846 (add-after 'patch-dependencies 'delete-dev-dependencies
9847 (lambda _
9848 (delete-dependencies '("gulp-format-md" "mocha")))))))
9849 (home-page "https://github.com/jonschlinkert/isobject")
3687 (synopsis 9850 (synopsis
3688 "Assign the enumerable es6 Symbol properties from an object (or objects) to the first object passed on the arguments. Can be used as a supplement to other extend, assign or merge methods as a polyfill for the Symbols part of the es6 Object.assign method.") 9851 "Returns true if the value is an object and not an array or null.")
3689 (description 9852 (description
3690 "Assign the enumerable es6 Symbol properties from an object (or objects) to the first object passed on the arguments. Can be used as a supplement to other extend, assign or merge methods as a polyfill for the Symbols part of the es6 Object.assign method.") 9853 "Returns true if the value is an object and not an array or null.")
9854 (license license:expat)))
9855
9856(define-public node-is-plain-object-2.0.4
9857 (package
9858 (name "node-is-plain-object")
9859 (version "2.0.4")
9860 (source (origin
9861 (method url-fetch)
9862 (uri
9863 "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz")
9864 (sha256
9865 (base32
9866 "1ipx9y0c1kmq6irjxix6vcxfax6ilnns9pkgjc6cq8ygnyagv4s8"))))
9867 (build-system node-build-system)
9868 (arguments
9869 '(#:tests? #f
9870 #:phases (modify-phases %standard-phases
9871 (delete 'build)
9872 (add-after 'patch-dependencies 'delete-dev-dependencies
9873 (lambda _
9874 (delete-dependencies '("browserify" "chai"
9875 "gulp-format-md"
9876 "mocha"
9877 "mocha-phantomjs"
9878 "phantomjs"
9879 "uglify-js")))))))
9880 (inputs `(("node-isobject" ,node-isobject-3.0.1)))
9881 (home-page "https://github.com/jonschlinkert/is-plain-object")
9882 (synopsis
9883 "Returns true if an object was created by the `Object` constructor.")
9884 (description
9885 "Returns true if an object was created by the `Object` constructor.")
3691 (license license:expat))) 9886 (license license:expat)))
3692 9887
3693(define-public node-is-extendable-1.0.1 9888(define-public node-is-extendable-1.0.1
3694 (package 9889 (package
3695 (name "node-is-extendable") 9890 (name "node-is-extendable")
3696 (version "1.0.1") 9891 (version "1.0.1")
3697 (source 9892 (source (origin
3698 (origin 9893 (method url-fetch)
3699 (method url-fetch) 9894 (uri
3700 (uri "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz") 9895 "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz")
3701 (sha256 9896 (sha256
3702 (base32 9897 (base32
3703 "0n1610rd5qv9h43zkr464dvk6hns1afmfpzg1g7b7z6as3axkss2")))) 9898 "0n1610rd5qv9h43zkr464dvk6hns1afmfpzg1g7b7z6as3axkss2"))))
3704 (build-system node-build-system) 9899 (build-system node-build-system)
3705 (arguments 9900 (arguments
3706 `(#:tests? 9901 '(#:tests? #f
3707 #f 9902 #:phases (modify-phases %standard-phases
3708 #:phases 9903 (delete 'build)
3709 (modify-phases 9904 (add-after 'patch-dependencies 'delete-dev-dependencies
3710 %standard-phases 9905 (lambda _
3711 (delete 'configure) 9906 (delete-dependencies '("gulp-format-md" "mocha")))))))
3712 (delete 'build)))) 9907 (inputs `(("node-is-plain-object" ,node-is-plain-object-2.0.4)))
3713 (inputs 9908 (home-page "https://github.com/jonschlinkert/is-extendable")
3714 `(("node-is-plain-object" 9909 (synopsis "Returns true if a value is a plain object, array or function.")
3715 ,node-is-plain-object-2.0.4))) 9910 (description
3716 (home-page 9911 "Returns true if a value is a plain object, array or function.")
3717 "https://github.com/jonschlinkert/is-extendable") 9912 (license license:expat)))
9913
9914(define-public node-extend-shallow-3.0.2
9915 (package
9916 (name "node-extend-shallow")
9917 (version "3.0.2")
9918 (source (origin
9919 (method url-fetch)
9920 (uri
9921 "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz")
9922 (sha256
9923 (base32
9924 "02bickcbljfrxfix2rbvq5j2cdlwm0dqflxc2ky4l6jp97bcl6m0"))))
9925 (build-system node-build-system)
9926 (arguments
9927 '(#:tests? #f
9928 #:phases (modify-phases %standard-phases
9929 (delete 'build)
9930 (add-after 'patch-dependencies 'delete-dev-dependencies
9931 (lambda _
9932 (delete-dependencies '("array-slice" "benchmarked"
9933 "for-own"
9934 "gulp-format-md"
9935 "is-plain-object"
9936 "kind-of"
9937 "minimist"
9938 "mocha"
9939 "object-assign")))))))
9940 (inputs `(("node-is-extendable" ,node-is-extendable-1.0.1)
9941 ("node-assign-symbols" ,node-assign-symbols-1.0.0)))
9942 (home-page "https://github.com/jonschlinkert/extend-shallow")
9943 (synopsis
9944 "Extend an object with the properties of additional objects. node.js/javascript util.")
9945 (description
9946 "Extend an object with the properties of additional objects. node.js/javascript util.")
9947 (license license:expat)))
9948
9949(define-public node-regex-not-1.0.2
9950 (package
9951 (name "node-regex-not")
9952 (version "1.0.2")
9953 (source (origin
9954 (method url-fetch)
9955 (uri
9956 "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz")
9957 (sha256
9958 (base32
9959 "0xpjprkrk0c9fn6yhqay3bm8vw44k197smcfby89g3sfjsxlhi7s"))))
9960 (build-system node-build-system)
9961 (arguments
9962 '(#:tests? #f
9963 #:phases (modify-phases %standard-phases
9964 (delete 'build)
9965 (add-after 'patch-dependencies 'delete-dev-dependencies
9966 (lambda _
9967 (delete-dependencies '("gulp-format-md" "mocha")))))))
9968 (inputs `(("node-safe-regex" ,node-safe-regex-1.1.0)
9969 ("node-extend-shallow" ,node-extend-shallow-3.0.2)))
9970 (home-page "https://github.com/jonschlinkert/regex-not")
3718 (synopsis 9971 (synopsis
3719 "Returns true if a value is a plain object, array or function.") 9972 "Create a javascript regular expression for matching everything except for the given string.")
3720 (description 9973 (description
3721 "Returns true if a value is a plain object, array or function.") 9974 "Create a javascript regular expression for matching everything except for the given string.")
3722 (license license:expat))) 9975 (license license:expat)))
3723 9976
3724(define-public node-ret-0.1.15 9977(define-public node-ret-0.1.15
3725 (package 9978 (package
3726 (name "node-ret") 9979 (name "node-ret")
3727 (version "0.1.15") 9980 (version "0.1.15")
3728 (source 9981 (source (origin
3729 (origin 9982 (method url-fetch)
3730 (method url-fetch) 9983 (uri "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz")
3731 (uri "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz") 9984 (sha256
3732 (sha256 9985 (base32
3733 (base32 9986 "1zk9xw3jzs7di9b31sxg3fi0mljac8w09k0q6m6y311i1fsn4x2a"))))
3734 "1zk9xw3jzs7di9b31sxg3fi0mljac8w09k0q6m6y311i1fsn4x2a")))) 9987 (build-system node-build-system)
3735 (build-system node-build-system) 9988 (arguments
3736 (arguments 9989 '(#:tests? #f
3737 `(#:tests? 9990 #:phases (modify-phases %standard-phases
3738 #f 9991 (delete 'build)
3739 #:phases 9992 (add-after 'patch-dependencies 'delete-dev-dependencies
3740 (modify-phases 9993 (lambda _
3741 %standard-phases 9994 (delete-dependencies '("istanbul" "vows")))))))
3742 (delete 'configure) 9995 (home-page "https://github.com/fent/ret.js#readme")
3743 (delete 'build)))) 9996 (synopsis "Tokenizes a string that represents a regular expression.")
3744 (home-page 9997 (description "Tokenizes a string that represents a regular expression.")
3745 "https://github.com/fent/ret.js#readme")
3746 (synopsis
3747 "Tokenizes a string that represents a regular expression.")
3748 (description
3749 "Tokenizes a string that represents a regular expression.")
3750 (license license:expat))) 9998 (license license:expat)))
3751 9999
3752(define-public node-safe-regex-1.1.0 10000(define-public node-safe-regex-1.1.0
3753 (package 10001 (package
3754 (name "node-safe-regex") 10002 (name "node-safe-regex")
3755 (version "1.1.0") 10003 (version "1.1.0")
3756 (source 10004 (source (origin
3757 (origin 10005 (method url-fetch)
3758 (method url-fetch) 10006 (uri
3759 (uri "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz") 10007 "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz")
3760 (sha256 10008 (sha256
3761 (base32 10009 (base32
3762 "1lkcz58mjp3nfdiydh4iynpcfgxhf5mr339swzi5k05sikx8j4k2")))) 10010 "1lkcz58mjp3nfdiydh4iynpcfgxhf5mr339swzi5k05sikx8j4k2"))))
3763 (build-system node-build-system) 10011 (build-system node-build-system)
3764 (arguments 10012 (arguments
3765 `(#:tests? 10013 '(#:tests? #f
3766 #f 10014 #:phases (modify-phases %standard-phases
3767 #:phases 10015 (delete 'build)
3768 (modify-phases 10016 (add-after 'patch-dependencies 'delete-dev-dependencies
3769 %standard-phases 10017 (lambda _
3770 (delete 'configure) 10018 (delete-dependencies '("tape")))))))
3771 (delete 'build))))
3772 (inputs `(("node-ret" ,node-ret-0.1.15))) 10019 (inputs `(("node-ret" ,node-ret-0.1.15)))
3773 (home-page 10020 (home-page "https://github.com/substack/safe-regex")
3774 "https://github.com/substack/safe-regex")
3775 (synopsis 10021 (synopsis
3776 "detect possibly catastrophic, exponential-time regular expressions") 10022 "detect possibly catastrophic, exponential-time regular expressions")
3777 (description 10023 (description
3778 "detect possibly catastrophic, exponential-time regular expressions") 10024 "detect possibly catastrophic, exponential-time regular expressions")
10025 (license license:expat)))
10026
10027(define-public node-to-regex-3.0.2
10028 (package
10029 (name "node-to-regex")
10030 (version "3.0.2")
10031 (source (origin
10032 (method url-fetch)
10033 (uri "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz")
10034 (sha256
10035 (base32
10036 "039l28qygjrjy10jz9cm3j066nw5fkfimzkp5ipq47w2pl2ii0w6"))))
10037 (build-system node-build-system)
10038 (arguments
10039 '(#:tests? #f
10040 #:phases (modify-phases %standard-phases
10041 (delete 'build)
10042 (add-after 'patch-dependencies 'delete-dev-dependencies
10043 (lambda _
10044 (delete-dependencies '("gulp-format-md" "mocha")))))))
10045 (inputs `(("node-safe-regex" ,node-safe-regex-1.1.0)
10046 ("node-regex-not" ,node-regex-not-1.0.2)
10047 ("node-extend-shallow" ,node-extend-shallow-3.0.2)
10048 ("node-define-property" ,node-define-property-2.0.2)))
10049 (home-page "https://github.com/jonschlinkert/to-regex")
10050 (synopsis "Generate a regex from a string or array of strings.")
10051 (description "Generate a regex from a string or array of strings.")
3779 (license license:expat))) 10052 (license license:expat)))
3780 10053
3781(define-public node-micromatch-3.1.10 10054(define-public node-micromatch-3.1.10
3782 (package 10055 (package
3783 (name "node-micromatch") 10056 (name "node-micromatch")
3784 (version "3.1.10") 10057 (version "3.1.10")
3785 (source 10058 (source (origin
3786 (origin 10059 (method url-fetch)
3787 (method url-fetch) 10060 (uri
3788 (uri "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz") 10061 "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz")
3789 (sha256 10062 (sha256
3790 (base32 10063 (base32
3791 "1j4m1y8x2sib8i5rfilml7yzpgs5njsg2nxzxwlb63997qlpb7p5")))) 10064 "1j4m1y8x2sib8i5rfilml7yzpgs5njsg2nxzxwlb63997qlpb7p5"))))
3792 (build-system node-build-system) 10065 (build-system node-build-system)
3793 (arguments 10066 (arguments
3794 `(#:tests? 10067 '(#:tests? #f
3795 #f 10068 #:phases (modify-phases %standard-phases
3796 #:phases 10069 (delete 'build)
3797 (modify-phases 10070 (add-after 'patch-dependencies 'delete-dev-dependencies
3798 %standard-phases 10071 (lambda _
3799 (delete 'configure) 10072 (delete-dependencies '("bash-match" "for-own"
3800 (delete 'build)))) 10073 "gulp"
3801 (inputs 10074 "gulp-format-md"
3802 `(("node-to-regex" ,node-to-regex-3.0.2) 10075 "gulp-istanbul"
3803 ("node-snapdragon" ,node-snapdragon-0.8.2) 10076 "gulp-mocha"
3804 ("node-regex-not" ,node-regex-not-1.0.2) 10077 "gulp-unused"
3805 ("node-object-pick" ,node-object-pick-1.3.0) 10078 "is-windows"
3806 ("node-nanomatch" ,node-nanomatch-1.2.13) 10079 "minimatch"
3807 ("node-kind-of" ,node-kind-of-6.0.3) 10080 "minimist"
3808 ("node-fragment-cache" 10081 "mocha"
3809 ,node-fragment-cache-0.2.1) 10082 "multimatch")))))))
3810 ("node-extglob" ,node-extglob-2.0.4) 10083 (inputs `(("node-to-regex" ,node-to-regex-3.0.2)
3811 ("node-extend-shallow" 10084 ("node-snapdragon" ,node-snapdragon-0.8.2)
3812 ,node-extend-shallow-3.0.2) 10085 ("node-regex-not" ,node-regex-not-1.0.2)
3813 ("node-define-property" 10086 ("node-object-pick" ,node-object-pick-1.3.0)
3814 ,node-define-property-2.0.2) 10087 ("node-nanomatch" ,node-nanomatch-1.2.13)
3815 ("node-braces" ,node-braces-2.3.2) 10088 ("node-kind-of" ,node-kind-of-6.0.3)
3816 ("node-array-unique" ,node-array-unique-0.3.2) 10089 ("node-fragment-cache" ,node-fragment-cache-0.2.1)
3817 ("node-arr-diff" ,node-arr-diff-4.0.0))) 10090 ("node-extglob" ,node-extglob-2.0.4)
3818 (home-page 10091 ("node-extend-shallow" ,node-extend-shallow-3.0.2)
3819 "https://github.com/micromatch/micromatch") 10092 ("node-define-property" ,node-define-property-2.0.2)
3820 (synopsis 10093 ("node-braces" ,node-braces-2.3.2)
3821 "Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.") 10094 ("node-array-unique" ,node-array-unique-0.3.2)
3822 (description 10095 ("node-arr-diff" ,node-arr-diff-4.0.0)))
3823 "Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.") 10096 (home-page "https://github.com/micromatch/micromatch")
10097 (synopsis
10098 "Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.")
10099 (description
10100 "Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.")
3824 (license license:expat))) 10101 (license license:expat)))
3825 10102
3826(define-public node-readdirp-2.2.1 10103(define-public node-readdirp-2.2.1
3827 (package 10104 (package
3828 (name "node-readdirp") 10105 (name "node-readdirp")
3829 (version "2.2.1") 10106 (version "2.2.1")
3830 (source 10107 (source (origin
3831 (origin 10108 (method url-fetch)
3832 (method url-fetch) 10109 (uri "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz")
3833 (uri "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz") 10110 (sha256
3834 (sha256 10111 (base32
3835 (base32 10112 "18vnhdirs6khbbzwfkclgff6yqdhb55gs0bp3p9k41lpq2fk18n9"))))
3836 "18vnhdirs6khbbzwfkclgff6yqdhb55gs0bp3p9k41lpq2fk18n9")))) 10113 (build-system node-build-system)
3837 (build-system node-build-system) 10114 (arguments
3838 (arguments 10115 '(#:tests? #f
3839 `(#:tests? 10116 #:phases (modify-phases %standard-phases
3840 #f 10117 (delete 'build)
3841 #:phases 10118 (add-after 'patch-dependencies 'delete-dev-dependencies
3842 (modify-phases 10119 (lambda _
3843 %standard-phases 10120 (delete-dependencies '("nave" "proxyquire" "tap"
3844 (delete 'configure) 10121 "through2")))))))
3845 (delete 'build)))) 10122 (inputs `(("node-readable-stream" ,node-readable-stream-2.3.8)
3846 (inputs 10123 ("node-micromatch" ,node-micromatch-3.1.10)
3847 `(("node-readable-stream" 10124 ("node-graceful-fs" ,node-graceful-fs-4.2.11)))
3848 ,node-readable-stream-2.3.7) 10125 (home-page "https://github.com/paulmillr/readdirp")
3849 ("node-micromatch" ,node-micromatch-3.1.10) 10126 (synopsis "Recursive version of fs.readdir with streaming api.")
3850 ("node-graceful-fs" ,node-graceful-fs-4.2.6))) 10127 (description "Recursive version of fs.readdir with streaming api.")
3851 (home-page 10128 (license license:expat)))
3852 "https://github.com/paulmillr/readdirp") 10129
3853 (synopsis 10130(define-public node-nan-2.17.0
3854 "Recursive version of fs.readdir with streaming api.")
3855 (description
3856 "Recursive version of fs.readdir with streaming api.")
3857 (license license:expat)))
3858
3859(define-public node-file-uri-to-path-1.0.0
3860 (package
3861 (name "node-file-uri-to-path")
3862 (version "1.0.0")
3863 (source
3864 (origin
3865 (method url-fetch)
3866 (uri "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz")
3867 (sha256
3868 (base32
3869 "1cvgn3xfpkzy20vjfw093mdjam1x9hfkrrkbdbrrdavmgvvcsh2l"))))
3870 (build-system node-build-system)
3871 (arguments
3872 `(#:tests?
3873 #f
3874 #:phases
3875 (modify-phases
3876 %standard-phases
3877 (delete 'configure)
3878 (delete 'build))))
3879 (home-page
3880 "https://github.com/TooTallNate/file-uri-to-path")
3881 (synopsis "Convert a file: URI to a file path")
3882 (description
3883 "Convert a file: URI to a file path")
3884 (license license:expat)))
3885
3886(define-public node-bindings-1.5.0
3887 (package
3888 (name "node-bindings")
3889 (version "1.5.0")
3890 (source
3891 (origin
3892 (method url-fetch)
3893 (uri "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz")
3894 (sha256
3895 (base32
3896 "01q9xfgc5jl9h6ny44zb4xcin6sirmm5bignn68rmn2vihbq2xyp"))))
3897 (build-system node-build-system)
3898 (arguments
3899 `(#:tests?
3900 #f
3901 #:phases
3902 (modify-phases
3903 %standard-phases
3904 (delete 'configure)
3905 (delete 'build))))
3906 (inputs
3907 `(("node-file-uri-to-path"
3908 ,node-file-uri-to-path-1.0.0)))
3909 (home-page
3910 "https://github.com/TooTallNate/node-bindings")
3911 (synopsis
3912 "Helper module for loading your native module's .node file")
3913 (description
3914 "Helper module for loading your native module's .node file")
3915 (license license:expat)))
3916
3917(define-public node-nan-2.14.2
3918 (package 10131 (package
3919 (name "node-nan") 10132 (name "node-nan")
3920 (version "2.14.2") 10133 (version "2.17.0")
3921 (source 10134 (source (origin
3922 (origin 10135 (method url-fetch)
3923 (method url-fetch) 10136 (uri "https://registry.npmjs.org/nan/-/nan-2.17.0.tgz")
3924 (uri "https://registry.npmjs.org/nan/-/nan-2.14.2.tgz") 10137 (sha256
3925 (sha256 10138 (base32
3926 (base32 10139 "0xlxw2zkgxhkw09fcpr28yarm877fc8fs9lpzsh5pjwjljsmixih"))))
3927 "0092x43h4ysm9zsxrxhkba1m2m1ybmnsn7dq58ppfgmd02hi98m9")))) 10140 (build-system node-build-system)
3928 (build-system node-build-system) 10141 (arguments
3929 (arguments 10142 '(#:tests? #f
3930 `(#:tests? 10143 #:phases (modify-phases %standard-phases
3931 #f 10144 (delete 'build)
3932 #:phases 10145 (add-after 'patch-dependencies 'delete-dev-dependencies
3933 (modify-phases 10146 (lambda _
3934 %standard-phases 10147 (delete-dependencies '("bindings" "commander"
3935 (delete 'configure) 10148 "glob"
3936 (delete 'build)))) 10149 "request"
3937 (home-page 10150 "node-gyp"
3938 "https://github.com/nodejs/nan#readme") 10151 "readable-stream"
3939 (synopsis 10152 "tap"
3940 "Native Abstractions for Node.js: C++ header for Node 0.8 -> 14 compatibility") 10153 "xtend")))))))
3941 (description 10154 (home-page "https://github.com/nodejs/nan#readme")
3942 "Native Abstractions for Node.js: C++ header for Node 0.8 -> 14 compatibility") 10155 (synopsis
10156 "Native Abstractions for Node.js: C++ header for Node 0.8 -> 18 compatibility")
10157 (description
10158 "Native Abstractions for Node.js: C++ header for Node 0.8 -> 18 compatibility")
3943 (license license:expat))) 10159 (license license:expat)))
3944 10160
3945(define-public node-chokidar-1.7.0 10161(define-public node-chokidar-1.7.0
3946 (package 10162 (package
3947 (name "node-chokidar") 10163 (name "node-chokidar")
3948 (version "1.7.0") 10164 (version "1.7.0")
3949 (source 10165 (source (origin
3950 (origin 10166 (method url-fetch)
3951 (method url-fetch) 10167 (uri "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz")
3952 (uri "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz") 10168 (sha256
3953 (sha256 10169 (base32
3954 (base32 10170 "0dxk0wm89l9smx45bgh828x0cf9mis4mahk6wgd98pfryx01y9cp"))))
3955 "0dxk0wm89l9smx45bgh828x0cf9mis4mahk6wgd98pfryx01y9cp")))) 10171 (build-system node-build-system)
3956 (build-system node-build-system) 10172 (arguments
3957 (arguments 10173 '(#:tests? #f
3958 `(#:tests? 10174 #:phases (modify-phases %standard-phases
3959 #f 10175 (delete 'build)
3960 #:phases 10176 (add-after 'patch-dependencies 'delete-dev-dependencies
3961 (modify-phases 10177 (lambda _
3962 %standard-phases 10178 (delete-dependencies '("chai" "coveralls"
3963 (delete 'configure) 10179 "graceful-fs"
3964 (delete 'build)))) 10180 "istanbul"
3965 (inputs 10181 "mocha"
3966 `(("node-readdirp" ,node-readdirp-2.2.1) 10182 "rimraf"
3967 ("node-path-is-absolute" 10183 "sinon"
3968 ,node-path-is-absolute-1.0.1) 10184 "sinon-chai")))))))
3969 ("node-is-glob" ,node-is-glob-2.0.1) 10185 (inputs `(("node-readdirp" ,node-readdirp-2.2.1)
3970 ("node-is-binary-path" 10186 ("node-path-is-absolute" ,node-path-is-absolute-1.0.1)
3971 ,node-is-binary-path-1.0.1) 10187 ("node-is-glob" ,node-is-glob-2.0.1)
3972 ("node-inherits" ,node-inherits-2.0.4) 10188 ("node-is-binary-path" ,node-is-binary-path-1.0.1)
3973 ("node-glob-parent" ,node-glob-parent-2.0.0) 10189 ("node-inherits" ,node-inherits-2.0.4)
3974 ("node-async-each" ,node-async-each-1.0.3) 10190 ("node-glob-parent" ,node-glob-parent-2.0.0)
3975 ("node-anymatch" ,node-anymatch-1.3.2))) 10191 ("node-async-each" ,node-async-each-1.0.6)
3976 (home-page 10192 ("node-anymatch" ,node-anymatch-1.3.2)))
3977 "https://github.com/paulmillr/chokidar") 10193 (home-page "https://github.com/paulmillr/chokidar")
3978 (synopsis 10194 (synopsis
3979 "A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.") 10195 "A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.")
3980 (description 10196 (description
3981 "A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.") 10197 "A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.")
3982 (license license:expat))) 10198 (license license:expat)))
3983 10199
3984(define-public node-source-map-0.6.1 10200(define-public node-clean-css-4.2.4
3985 (package
3986 (name "node-source-map")
3987 (version "0.6.1")
3988 (source
3989 (origin
3990 (method url-fetch)
3991 (uri "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz")
3992 (sha256
3993 (base32
3994 "11ib173i7xf5sd85da9jfrcbzygr48pppz5csl15hnpz2w6s3g5x"))))
3995 (build-system node-build-system)
3996 (arguments
3997 `(#:tests?
3998 #f
3999 #:phases
4000 (modify-phases
4001 %standard-phases
4002 (delete 'configure)
4003 (delete 'build))))
4004 (home-page
4005 "https://github.com/mozilla/source-map")
4006 (synopsis "Generates and consumes source maps")
4007 (description
4008 "Generates and consumes source maps")
4009 (license license:bsd-3)))
4010
4011(define-public node-clean-css-4.2.3
4012 (package 10201 (package
4013 (name "node-clean-css") 10202 (name "node-clean-css")
4014 (version "4.2.3") 10203 (version "4.2.4")
4015 (source 10204 (source (origin
4016 (origin 10205 (method url-fetch)
4017 (method url-fetch) 10206 (uri
4018 (uri "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz") 10207 "https://registry.npmjs.org/clean-css/-/clean-css-4.2.4.tgz")
4019 (sha256 10208 (sha256
4020 (base32 10209 (base32
4021 "1vqybc0yny3gzmnyypsl5hrnc0kxqd2gbp7ji1041a3llpqdml1y")))) 10210 "1k5dixs7dh2ms3kzf0b6sd1wbk435jf4cqdxkgh8wgky6xmg06pv"))))
4022 (build-system node-build-system) 10211 (build-system node-build-system)
4023 (arguments 10212 (arguments
4024 `(#:tests? 10213 '(#:tests? #f
4025 #f 10214 #:phases (modify-phases %standard-phases
4026 #:phases 10215 (delete 'build)
4027 (modify-phases 10216 (add-after 'patch-dependencies 'delete-dev-dependencies
4028 %standard-phases 10217 (lambda _
4029 (delete 'configure) 10218 (delete-dependencies '("browserify" "http-proxy"
4030 (delete 'build)))) 10219 "jshint"
4031 (inputs 10220 "nock"
4032 `(("node-source-map" ,node-source-map-0.6.1))) 10221 "server-destroy"
4033 (home-page 10222 "uglify-js"
4034 "https://github.com/jakubpawlowicz/clean-css") 10223 "vows")))))))
10224 (inputs `(("node-source-map" ,node-source-map-0.6.1)))
10225 (home-page "https://github.com/jakubpawlowicz/clean-css")
4035 (synopsis "A well-tested CSS minifier") 10226 (synopsis "A well-tested CSS minifier")
4036 (description "A well-tested CSS minifier") 10227 (description "A well-tested CSS minifier")
4037 (license license:expat))) 10228 (license license:expat)))
@@ -4040,133 +10231,153 @@
4040 (package 10231 (package
4041 (name "node-estraverse") 10232 (name "node-estraverse")
4042 (version "4.3.0") 10233 (version "4.3.0")
4043 (source 10234 (source (origin
4044 (origin 10235 (method url-fetch)
4045 (method url-fetch) 10236 (uri
4046 (uri "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz") 10237 "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz")
4047 (sha256 10238 (sha256
4048 (base32 10239 (base32
4049 "1bpip5qvpq6f6prpn5dsxnqsaw3czx6hn8mps04v5vpqgla2n9kz")))) 10240 "1bpip5qvpq6f6prpn5dsxnqsaw3czx6hn8mps04v5vpqgla2n9kz"))))
4050 (build-system node-build-system) 10241 (build-system node-build-system)
4051 (arguments 10242 (arguments
4052 `(#:tests? 10243 '(#:tests? #f
4053 #f 10244 #:phases (modify-phases %standard-phases
4054 #:phases 10245 (delete 'build)
4055 (modify-phases 10246 (add-after 'patch-dependencies 'delete-dev-dependencies
4056 %standard-phases 10247 (lambda _
4057 (delete 'configure) 10248 (delete-dependencies '("babel-preset-env"
4058 (delete 'build)))) 10249 "babel-register"
4059 (home-page 10250 "chai"
4060 "https://github.com/estools/estraverse") 10251 "espree"
4061 (synopsis 10252 "gulp"
4062 "ECMAScript JS AST traversal functions") 10253 "gulp-bump"
4063 (description 10254 "gulp-filter"
4064 "ECMAScript JS AST traversal functions") 10255 "gulp-git"
4065 (license (license:non-copyleft "unknown")))) 10256 "gulp-tag-version"
10257 "jshint"
10258 "mocha")))))))
10259 (home-page "https://github.com/estools/estraverse")
10260 (synopsis "ECMAScript JS AST traversal functions")
10261 (description "ECMAScript JS AST traversal functions")
10262 (license license:bsd-2)))
4066 10263
4067(define-public node-esutils-2.0.3 10264(define-public node-esutils-2.0.3
4068 (package 10265 (package
4069 (name "node-esutils") 10266 (name "node-esutils")
4070 (version "2.0.3") 10267 (version "2.0.3")
4071 (source 10268 (source (origin
4072 (origin 10269 (method url-fetch)
4073 (method url-fetch) 10270 (uri "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz")
4074 (uri "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz") 10271 (sha256
4075 (sha256 10272 (base32
4076 (base32 10273 "03v4y32k50mbxwv70prr7ghwg59vd5gyxsdsbdikqnj919rvvbf5"))))
4077 "03v4y32k50mbxwv70prr7ghwg59vd5gyxsdsbdikqnj919rvvbf5")))) 10274 (build-system node-build-system)
4078 (build-system node-build-system) 10275 (arguments
4079 (arguments 10276 '(#:tests? #f
4080 `(#:tests? 10277 #:phases (modify-phases %standard-phases
4081 #f 10278 (delete 'build)
4082 #:phases 10279 (add-after 'patch-dependencies 'delete-dev-dependencies
4083 (modify-phases 10280 (lambda _
4084 %standard-phases 10281 (delete-dependencies '("chai" "coffee-script" "jshint"
4085 (delete 'configure) 10282 "mocha" "regenerate"
4086 (delete 'build)))) 10283 "unicode-9.0.0")))))))
4087 (home-page "https://github.com/estools/esutils") 10284 (home-page "https://github.com/estools/esutils")
4088 (synopsis 10285 (synopsis "utility box for ECMAScript language tools")
4089 "utility box for ECMAScript language tools") 10286 (description "utility box for ECMAScript language tools")
4090 (description 10287 (license license:bsd-2)))
4091 "utility box for ECMAScript language tools")
4092 (license (license:non-copyleft "unknown"))))
4093 10288
4094(define-public node-esprima-4.0.1 10289(define-public node-esprima-4.0.1
4095 (package 10290 (package
4096 (name "node-esprima") 10291 (name "node-esprima")
4097 (version "4.0.1") 10292 (version "4.0.1")
4098 (source 10293 (source (origin
4099 (origin 10294 (method url-fetch)
4100 (method url-fetch) 10295 (uri "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz")
4101 (uri "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz") 10296 (sha256
4102 (sha256 10297 (base32
4103 (base32 10298 "0x6cjgh4452wa28yz562b4c2dad78rn3fxfzqns9bk5ykh7938fq"))))
4104 "0x6cjgh4452wa28yz562b4c2dad78rn3fxfzqns9bk5ykh7938fq")))) 10299 (build-system node-build-system)
4105 (build-system node-build-system) 10300 (arguments
4106 (arguments 10301 '(#:tests? #f
4107 `(#:tests? 10302 #:phases (modify-phases %standard-phases
4108 #f 10303 (delete 'build)
4109 #:phases 10304 (add-after 'patch-dependencies 'delete-dev-dependencies
4110 (modify-phases 10305 (lambda _
4111 %standard-phases 10306 (delete-dependencies '("codecov.io" "escomplex-js"
4112 (delete 'configure) 10307 "everything.js"
4113 (delete 'build)))) 10308 "glob"
10309 "istanbul"
10310 "json-diff"
10311 "karma"
10312 "karma-chrome-launcher"
10313 "karma-detect-browsers"
10314 "karma-edge-launcher"
10315 "karma-firefox-launcher"
10316 "karma-ie-launcher"
10317 "karma-mocha"
10318 "karma-safari-launcher"
10319 "karma-safaritechpreview-launcher"
10320 "karma-sauce-launcher"
10321 "lodash"
10322 "mocha"
10323 "node-tick-processor"
10324 "regenerate"
10325 "temp"
10326 "tslint"
10327 "typescript"
10328 "typescript-formatter"
10329 "unicode-8.0.0"
10330 "webpack")))))))
4114 (home-page "http://esprima.org") 10331 (home-page "http://esprima.org")
4115 (synopsis 10332 (synopsis "ECMAScript parsing infrastructure for multipurpose analysis")
4116 "ECMAScript parsing infrastructure for multipurpose analysis") 10333 (description "ECMAScript parsing infrastructure for multipurpose analysis")
4117 (description 10334 (license license:bsd-2)))
4118 "ECMAScript parsing infrastructure for multipurpose analysis")
4119 (license (license:non-copyleft "unknown"))))
4120 10335
4121(define-public node-deep-is-0.1.3 10336(define-public node-deep-is-0.1.4
4122 (package 10337 (package
4123 (name "node-deep-is") 10338 (name "node-deep-is")
4124 (version "0.1.3") 10339 (version "0.1.4")
4125 (source 10340 (source (origin
4126 (origin 10341 (method url-fetch)
4127 (method url-fetch) 10342 (uri "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz")
4128 (uri "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz") 10343 (sha256
4129 (sha256 10344 (base32
4130 (base32 10345 "0g5z206z33f41cdh220vf7kpj61cfcnmlnrcrk1ffs5zqs1sl0qc"))))
4131 "11m7mds6valw8m5c5hgjnr83s104nirkvcnmclm38g02gvxf4rcq"))))
4132 (build-system node-build-system) 10346 (build-system node-build-system)
4133 (arguments 10347 (arguments
4134 `(#:tests? 10348 '(#:tests? #f
4135 #f 10349 #:phases (modify-phases %standard-phases
4136 #:phases 10350 (delete 'build)
4137 (modify-phases 10351 (add-after 'patch-dependencies 'delete-dev-dependencies
4138 %standard-phases 10352 (lambda _
4139 (delete 'configure) 10353 (delete-dependencies '("tape")))))))
4140 (delete 'build)))) 10354 (home-page "https://github.com/thlorenz/deep-is#readme")
4141 (home-page "https://github.com/thlorenz/deep-is")
4142 (synopsis 10355 (synopsis
4143 "node's assert.deepEqual algorithm except for NaN being equal to NaN") 10356 "node's assert.deepEqual algorithm except for NaN being equal to NaN")
4144 (description 10357 (description
4145 "node's assert.deepEqual algorithm except for NaN being equal to NaN") 10358 "node's assert.deepEqual algorithm except for NaN being equal to NaN")
4146 (license (license:non-copyleft "unknown")))) 10359 (license license:expat)))
4147 10360
4148(define-public node-word-wrap-1.2.3 10361(define-public node-word-wrap-1.2.3
4149 (package 10362 (package
4150 (name "node-word-wrap") 10363 (name "node-word-wrap")
4151 (version "1.2.3") 10364 (version "1.2.3")
4152 (source 10365 (source (origin
4153 (origin 10366 (method url-fetch)
4154 (method url-fetch) 10367 (uri
4155 (uri "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz") 10368 "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz")
4156 (sha256 10369 (sha256
4157 (base32 10370 (base32
4158 "1ngw3nglmfh9a90b4ckay43yw96h61mbxmhm5g1qvk1j6h1dmyv4")))) 10371 "1ngw3nglmfh9a90b4ckay43yw96h61mbxmhm5g1qvk1j6h1dmyv4"))))
4159 (build-system node-build-system) 10372 (build-system node-build-system)
4160 (arguments 10373 (arguments
4161 `(#:tests? 10374 '(#:tests? #f
4162 #f 10375 #:phases (modify-phases %standard-phases
4163 #:phases 10376 (delete 'build)
4164 (modify-phases 10377 (add-after 'patch-dependencies 'delete-dev-dependencies
4165 %standard-phases 10378 (lambda _
4166 (delete 'configure) 10379 (delete-dependencies '("gulp-format-md" "mocha")))))))
4167 (delete 'build)))) 10380 (home-page "https://github.com/jonschlinkert/word-wrap")
4168 (home-page
4169 "https://github.com/jonschlinkert/word-wrap")
4170 (synopsis "Wrap words to a specified length.") 10381 (synopsis "Wrap words to a specified length.")
4171 (description "Wrap words to a specified length.") 10382 (description "Wrap words to a specified length.")
4172 (license license:expat))) 10383 (license license:expat)))
@@ -4175,232 +10386,239 @@
4175 (package 10386 (package
4176 (name "node-prelude-ls") 10387 (name "node-prelude-ls")
4177 (version "1.1.2") 10388 (version "1.1.2")
4178 (source 10389 (source (origin
4179 (origin 10390 (method url-fetch)
4180 (method url-fetch) 10391 (uri
4181 (uri "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz") 10392 "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz")
4182 (sha256 10393 (sha256
4183 (base32 10394 (base32
4184 "0msvwq9la3w6wm51s2p3j2dv6634sj7iydyx3iqw4y67vkj8zzgs")))) 10395 "0msvwq9la3w6wm51s2p3j2dv6634sj7iydyx3iqw4y67vkj8zzgs"))))
4185 (build-system node-build-system) 10396 (build-system node-build-system)
4186 (arguments 10397 (arguments
4187 `(#:tests? 10398 '(#:tests? #f
4188 #f 10399 #:phases (modify-phases %standard-phases
4189 #:phases 10400 (delete 'build)
4190 (modify-phases 10401 (add-after 'patch-dependencies 'delete-dev-dependencies
4191 %standard-phases 10402 (lambda _
4192 (delete 'configure) 10403 (delete-dependencies '("livescript" "uglify-js" "mocha"
4193 (delete 'build)))) 10404 "istanbul" "browserify" "sinon")))))))
4194 (home-page "http://preludels.com") 10405 (home-page "http://preludels.com")
4195 (synopsis 10406 (synopsis
4196 "prelude.ls is a functionally oriented utility library. It is powerful and flexible. Almost all of its functions are curried. It is written in, and is the recommended base library for, LiveScript.") 10407 "prelude.ls is a functionally oriented utility library. It is powerful and flexible. Almost all of its functions are curried. It is written in, and is the recommended base library for, LiveScript.")
4197 (description 10408 (description
4198 "prelude.ls is a functionally oriented utility library. It is powerful and flexible. Almost all of its functions are curried. It is written in, and is the recommended base library for, LiveScript.") 10409 "prelude.ls is a functionally oriented utility library. It is powerful and flexible. Almost all of its functions are curried. It is written in, and is the recommended base library for, LiveScript.")
4199 (license (license:non-copyleft "unknown")))) 10410 (license #f)))
4200 10411
4201(define-public node-type-check-0.3.2 10412(define-public node-type-check-0.3.2
4202 (package 10413 (package
4203 (name "node-type-check") 10414 (name "node-type-check")
4204 (version "0.3.2") 10415 (version "0.3.2")
4205 (source 10416 (source (origin
4206 (origin 10417 (method url-fetch)
4207 (method url-fetch) 10418 (uri
4208 (uri "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz") 10419 "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz")
4209 (sha256 10420 (sha256
4210 (base32 10421 (base32
4211 "05iwxwj2sdbnxwp5lkxrdkbdcdvmkvq6zbq7lmsg20zbw3pyy56l")))) 10422 "05iwxwj2sdbnxwp5lkxrdkbdcdvmkvq6zbq7lmsg20zbw3pyy56l"))))
4212 (build-system node-build-system) 10423 (build-system node-build-system)
4213 (arguments 10424 (arguments
4214 `(#:tests? 10425 '(#:tests? #f
4215 #f 10426 #:phases (modify-phases %standard-phases
4216 #:phases 10427 (delete 'build)
4217 (modify-phases 10428 (add-after 'patch-dependencies 'delete-dev-dependencies
4218 %standard-phases 10429 (lambda _
4219 (delete 'configure) 10430 (delete-dependencies '("livescript" "mocha" "istanbul"
4220 (delete 'build)))) 10431 "browserify")))))))
4221 (inputs 10432 (inputs `(("node-prelude-ls" ,node-prelude-ls-1.1.2)))
4222 `(("node-prelude-ls" ,node-prelude-ls-1.1.2)))
4223 (home-page "https://github.com/gkz/type-check") 10433 (home-page "https://github.com/gkz/type-check")
4224 (synopsis 10434 (synopsis
4225 "type-check allows you to check the types of JavaScript values at runtime with a Haskell like type syntax.") 10435 "type-check allows you to check the types of JavaScript values at runtime with a Haskell like type syntax.")
4226 (description 10436 (description
4227 "type-check allows you to check the types of JavaScript values at runtime with a Haskell like type syntax.") 10437 "type-check allows you to check the types of JavaScript values at runtime with a Haskell like type syntax.")
4228 (license license:expat))) 10438 (license license:expat)))
4229 10439
4230(define-public node-levn-0.3.0 10440(define-public node-levn-0.3.0
4231 (package 10441 (package
4232 (name "node-levn") 10442 (name "node-levn")
4233 (version "0.3.0") 10443 (version "0.3.0")
4234 (source 10444 (source (origin
4235 (origin 10445 (method url-fetch)
4236 (method url-fetch) 10446 (uri "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz")
4237 (uri "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz") 10447 (sha256
4238 (sha256 10448 (base32
4239 (base32 10449 "094nf5lc3jk3gv0hs01nzgq2vw0h2y9cxaqsbgs0xc45in2kw0ds"))))
4240 "094nf5lc3jk3gv0hs01nzgq2vw0h2y9cxaqsbgs0xc45in2kw0ds")))) 10450 (build-system node-build-system)
4241 (build-system node-build-system) 10451 (arguments
4242 (arguments 10452 '(#:tests? #f
4243 `(#:tests? 10453 #:phases (modify-phases %standard-phases
4244 #f 10454 (delete 'build)
4245 #:phases 10455 (add-after 'patch-dependencies 'delete-dev-dependencies
4246 (modify-phases 10456 (lambda _
4247 %standard-phases 10457 (delete-dependencies '("livescript" "mocha" "istanbul")))))))
4248 (delete 'configure) 10458 (inputs `(("node-type-check" ,node-type-check-0.3.2)
4249 (delete 'build)))) 10459 ("node-prelude-ls" ,node-prelude-ls-1.1.2)))
4250 (inputs
4251 `(("node-type-check" ,node-type-check-0.3.2)
4252 ("node-prelude-ls" ,node-prelude-ls-1.1.2)))
4253 (home-page "https://github.com/gkz/levn") 10460 (home-page "https://github.com/gkz/levn")
4254 (synopsis 10461 (synopsis
4255 "Light ECMAScript (JavaScript) Value Notation - human written, concise, typed, flexible") 10462 "Light ECMAScript (JavaScript) Value Notation - human written, concise, typed, flexible")
4256 (description 10463 (description
4257 "Light ECMAScript (JavaScript) Value Notation - human written, concise, typed, flexible") 10464 "Light ECMAScript (JavaScript) Value Notation - human written, concise, typed, flexible")
4258 (license license:expat))) 10465 (license license:expat)))
4259 10466
4260(define-public node-fast-levenshtein-2.0.6 10467(define-public node-fast-levenshtein-2.0.6
4261 (package 10468 (package
4262 (name "node-fast-levenshtein") 10469 (name "node-fast-levenshtein")
4263 (version "2.0.6") 10470 (version "2.0.6")
4264 (source 10471 (source (origin
4265 (origin 10472 (method url-fetch)
4266 (method url-fetch) 10473 (uri
4267 (uri "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz") 10474 "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz")
4268 (sha256 10475 (sha256
4269 (base32 10476 (base32
4270 "0g5zgdlp38dli94qbbm8vhvmj90fh48sxpggfn2083wbdcq50jxv")))) 10477 "0g5zgdlp38dli94qbbm8vhvmj90fh48sxpggfn2083wbdcq50jxv"))))
4271 (build-system node-build-system) 10478 (build-system node-build-system)
4272 (arguments 10479 (arguments
4273 `(#:tests? 10480 '(#:tests? #f
4274 #f 10481 #:phases (modify-phases %standard-phases
4275 #:phases 10482 (delete 'build)
4276 (modify-phases 10483 (add-after 'patch-dependencies 'delete-dev-dependencies
4277 %standard-phases 10484 (lambda _
4278 (delete 'configure) 10485 (delete-dependencies '("chai" "grunt"
4279 (delete 'build)))) 10486 "grunt-benchmark"
4280 (home-page 10487 "grunt-cli"
4281 "https://github.com/hiddentao/fast-levenshtein#readme") 10488 "grunt-contrib-jshint"
4282 (synopsis 10489 "grunt-contrib-uglify"
4283 "Efficient implementation of Levenshtein algorithm with locale-specific collator support.") 10490 "grunt-mocha-test"
4284 (description 10491 "grunt-npm-install"
4285 "Efficient implementation of Levenshtein algorithm with locale-specific collator support.") 10492 "load-grunt-tasks"
10493 "lodash"
10494 "mocha")))))))
10495 (home-page "https://github.com/hiddentao/fast-levenshtein#readme")
10496 (synopsis
10497 "Efficient implementation of Levenshtein algorithm with locale-specific collator support.")
10498 (description
10499 "Efficient implementation of Levenshtein algorithm with locale-specific collator support.")
4286 (license license:expat))) 10500 (license license:expat)))
4287 10501
4288(define-public node-optionator-0.8.3 10502(define-public node-optionator-0.8.3
4289 (package 10503 (package
4290 (name "node-optionator") 10504 (name "node-optionator")
4291 (version "0.8.3") 10505 (version "0.8.3")
4292 (source 10506 (source (origin
4293 (origin 10507 (method url-fetch)
4294 (method url-fetch) 10508 (uri
4295 (uri "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz") 10509 "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz")
4296 (sha256 10510 (sha256
4297 (base32 10511 (base32
4298 "0gdxsryh0g0vrbjqrgg8bvzjj2m98hf1rg8sksjmslspkr4fdvsi")))) 10512 "0gdxsryh0g0vrbjqrgg8bvzjj2m98hf1rg8sksjmslspkr4fdvsi"))))
4299 (build-system node-build-system) 10513 (build-system node-build-system)
4300 (arguments 10514 (arguments
4301 `(#:tests? 10515 '(#:tests? #f
4302 #f 10516 #:phases (modify-phases %standard-phases
4303 #:phases 10517 (delete 'build)
4304 (modify-phases 10518 (add-after 'patch-dependencies 'delete-dev-dependencies
4305 %standard-phases 10519 (lambda _
4306 (delete 'configure) 10520 (delete-dependencies '("livescript" "mocha" "istanbul")))))))
4307 (delete 'build)))) 10521 (inputs `(("node-fast-levenshtein" ,node-fast-levenshtein-2.0.6)
4308 (inputs 10522 ("node-levn" ,node-levn-0.3.0)
4309 `(("node-fast-levenshtein" 10523 ("node-type-check" ,node-type-check-0.3.2)
4310 ,node-fast-levenshtein-2.0.6) 10524 ("node-word-wrap" ,node-word-wrap-1.2.3)
4311 ("node-levn" ,node-levn-0.3.0) 10525 ("node-deep-is" ,node-deep-is-0.1.4)
4312 ("node-type-check" ,node-type-check-0.3.2) 10526 ("node-prelude-ls" ,node-prelude-ls-1.1.2)))
4313 ("node-word-wrap" ,node-word-wrap-1.2.3)
4314 ("node-deep-is" ,node-deep-is-0.1.3)
4315 ("node-prelude-ls" ,node-prelude-ls-1.1.2)))
4316 (home-page "https://github.com/gkz/optionator") 10527 (home-page "https://github.com/gkz/optionator")
4317 (synopsis "option parsing and help generation") 10528 (synopsis "option parsing and help generation")
4318 (description 10529 (description "option parsing and help generation")
4319 "option parsing and help generation")
4320 (license license:expat))) 10530 (license license:expat)))
4321 10531
4322(define-public node-escodegen-1.14.3 10532(define-public node-escodegen-1.14.3
4323 (package 10533 (package
4324 (name "node-escodegen") 10534 (name "node-escodegen")
4325 (version "1.14.3") 10535 (version "1.14.3")
4326 (source 10536 (source (origin
4327 (origin 10537 (method url-fetch)
4328 (method url-fetch) 10538 (uri
4329 (uri "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz") 10539 "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz")
4330 (sha256 10540 (sha256
4331 (base32 10541 (base32
4332 "12rngj20cpcnayic21ky3rkmkldbcvrzxzsr9y6a9diaf9lgldzj")))) 10542 "12rngj20cpcnayic21ky3rkmkldbcvrzxzsr9y6a9diaf9lgldzj"))))
4333 (build-system node-build-system) 10543 (build-system node-build-system)
4334 (arguments 10544 (arguments
4335 `(#:tests? 10545 '(#:tests? #f
4336 #f 10546 #:phases (modify-phases %standard-phases
4337 #:phases 10547 (delete 'build)
4338 (modify-phases 10548 (add-after 'patch-dependencies 'delete-dev-dependencies
4339 %standard-phases 10549 (lambda _
4340 (delete 'configure) 10550 (delete-dependencies '("acorn" "bluebird"
4341 (delete 'build)))) 10551 "bower-registry-client"
4342 (inputs 10552 "chai"
4343 `(("node-source-map" ,node-source-map-0.6.1) 10553 "commonjs-everywhere"
4344 ("node-optionator" ,node-optionator-0.8.3) 10554 "gulp"
4345 ("node-esprima" ,node-esprima-4.0.1) 10555 "gulp-eslint"
4346 ("node-esutils" ,node-esutils-2.0.3) 10556 "gulp-mocha"
4347 ("node-estraverse" ,node-estraverse-4.3.0))) 10557 "semver")))))))
10558 (inputs `(("node-source-map" ,node-source-map-0.6.1)
10559 ("node-optionator" ,node-optionator-0.8.3)
10560 ("node-esprima" ,node-esprima-4.0.1)
10561 ("node-esutils" ,node-esutils-2.0.3)
10562 ("node-estraverse" ,node-estraverse-4.3.0)))
4348 (home-page "http://github.com/estools/escodegen") 10563 (home-page "http://github.com/estools/escodegen")
4349 (synopsis "ECMAScript code generator") 10564 (synopsis "ECMAScript code generator")
4350 (description "ECMAScript code generator") 10565 (description "ECMAScript code generator")
4351 (license (license:non-copyleft "unknown")))) 10566 (license license:bsd-2)))
4352 10567
4353(define-public node-negotiator-0.6.2 10568(define-public node-negotiator-0.6.3
4354 (package 10569 (package
4355 (name "node-negotiator") 10570 (name "node-negotiator")
4356 (version "0.6.2") 10571 (version "0.6.3")
4357 (source 10572 (source (origin
4358 (origin 10573 (method url-fetch)
4359 (method url-fetch) 10574 (uri
4360 (uri "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz") 10575 "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz")
4361 (sha256 10576 (sha256
4362 (base32 10577 (base32
4363 "1zpx97aamn044id45ljzalxpa9l1dm0gn260w5hwjg7998vxjz68")))) 10578 "04sjfqwmsamf29a67zwrjdi3h62avc3y6a9y6a74zsgpl1xnhbli"))))
4364 (build-system node-build-system) 10579 (build-system node-build-system)
4365 (arguments 10580 (arguments
4366 `(#:tests? 10581 '(#:tests? #f
4367 #f 10582 #:phases (modify-phases %standard-phases
4368 #:phases 10583 (delete 'build)
4369 (modify-phases 10584 (add-after 'patch-dependencies 'delete-dev-dependencies
4370 %standard-phases 10585 (lambda _
4371 (delete 'configure) 10586 (delete-dependencies '("eslint" "eslint-plugin-markdown"
4372 (delete 'build)))) 10587 "mocha" "nyc")))))))
4373 (home-page 10588 (home-page "https://github.com/jshttp/negotiator#readme")
4374 "https://github.com/jshttp/negotiator#readme")
4375 (synopsis "HTTP content negotiation") 10589 (synopsis "HTTP content negotiation")
4376 (description "HTTP content negotiation") 10590 (description "HTTP content negotiation")
4377 (license license:expat))) 10591 (license license:expat)))
4378 10592
4379(define-public node-accepts-1.3.7 10593(define-public node-accepts-1.3.8
4380 (package 10594 (package
4381 (name "node-accepts") 10595 (name "node-accepts")
4382 (version "1.3.7") 10596 (version "1.3.8")
4383 (source 10597 (source (origin
4384 (origin 10598 (method url-fetch)
4385 (method url-fetch) 10599 (uri "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz")
4386 (uri "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz") 10600 (sha256
4387 (sha256 10601 (base32
4388 (base32 10602 "0xbds0r4v51s5lprkr6snag2xr5ssbavh9hmqygj4y427z59l65z"))))
4389 "1s550j2wkqhsgpj841fww4bdck0w67rk80qb859nwqy8x7khsycs")))) 10603 (build-system node-build-system)
4390 (build-system node-build-system) 10604 (arguments
4391 (arguments 10605 '(#:tests? #f
4392 `(#:tests? 10606 #:phases (modify-phases %standard-phases
4393 #f 10607 (delete 'build)
4394 #:phases 10608 (add-after 'patch-dependencies 'delete-dev-dependencies
4395 (modify-phases 10609 (lambda _
4396 %standard-phases 10610 (delete-dependencies '("deep-equal" "eslint"
4397 (delete 'configure) 10611 "eslint-config-standard"
4398 (delete 'build)))) 10612 "eslint-plugin-import"
4399 (inputs 10613 "eslint-plugin-markdown"
4400 `(("node-negotiator" ,node-negotiator-0.6.2) 10614 "eslint-plugin-node"
4401 ("node-mime-types" ,node-mime-types-2.1.28))) 10615 "eslint-plugin-promise"
4402 (home-page 10616 "eslint-plugin-standard"
4403 "https://github.com/jshttp/accepts#readme") 10617 "mocha"
10618 "nyc")))))))
10619 (inputs `(("node-negotiator" ,node-negotiator-0.6.3)
10620 ("node-mime-types" ,node-mime-types-2.1.35)))
10621 (home-page "https://github.com/jshttp/accepts#readme")
4404 (synopsis "Higher-level content negotiation") 10622 (synopsis "Higher-level content negotiation")
4405 (description "Higher-level content negotiation") 10623 (description "Higher-level content negotiation")
4406 (license license:expat))) 10624 (license license:expat)))
@@ -4409,419 +10627,312 @@
4409 (package 10627 (package
4410 (name "node-array-flatten") 10628 (name "node-array-flatten")
4411 (version "1.1.1") 10629 (version "1.1.1")
4412 (source 10630 (source (origin
4413 (origin 10631 (method url-fetch)
4414 (method url-fetch) 10632 (uri
4415 (uri "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz") 10633 "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz")
4416 (sha256 10634 (sha256
4417 (base32 10635 (base32
4418 "1v96cj6w6f7g61c7fjfkxpkbbfkxl2ksh5zm7y5mfp96xivi5jhs")))) 10636 "1v96cj6w6f7g61c7fjfkxpkbbfkxl2ksh5zm7y5mfp96xivi5jhs"))))
4419 (build-system node-build-system) 10637 (build-system node-build-system)
4420 (arguments 10638 (arguments
4421 `(#:tests? 10639 '(#:tests? #f
4422 #f 10640 #:phases (modify-phases %standard-phases
4423 #:phases 10641 (delete 'build)
4424 (modify-phases 10642 (add-after 'patch-dependencies 'delete-dev-dependencies
4425 %standard-phases 10643 (lambda _
4426 (delete 'configure) 10644 (delete-dependencies '("istanbul" "mocha" "pre-commit"
4427 (delete 'build)))) 10645 "standard")))))))
4428 (home-page 10646 (home-page "https://github.com/blakeembrey/array-flatten")
4429 "https://github.com/blakeembrey/array-flatten") 10647 (synopsis "Flatten an array of nested arrays into a single flat array")
4430 (synopsis 10648 (description "Flatten an array of nested arrays into a single flat array")
4431 "Flatten an array of nested arrays into a single flat array")
4432 (description
4433 "Flatten an array of nested arrays into a single flat array")
4434 (license license:expat))) 10649 (license license:expat)))
4435 10650
4436(define-public node-bytes-3.1.0 10651(define-public node-bytes-3.1.2
4437 (package 10652 (package
4438 (name "node-bytes") 10653 (name "node-bytes")
4439 (version "3.1.0") 10654 (version "3.1.2")
4440 (source 10655 (source (origin
4441 (origin 10656 (method url-fetch)
4442 (method url-fetch) 10657 (uri "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz")
4443 (uri "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz") 10658 (sha256
4444 (sha256 10659 (base32
4445 (base32 10660 "10f5wgg4izi14lc425v7ljr1ayk28ycdjckfxpm4bnj0bankfpl3"))))
4446 "1w0cw2wnzif217yvnldrflj14l2zkfcxdw1yhnv1jbm6ywykmngp")))) 10661 (build-system node-build-system)
4447 (build-system node-build-system) 10662 (arguments
4448 (arguments 10663 '(#:tests? #f
4449 `(#:tests? 10664 #:phases (modify-phases %standard-phases
4450 #f 10665 (delete 'build)
4451 #:phases 10666 (add-after 'patch-dependencies 'delete-dev-dependencies
4452 (modify-phases 10667 (lambda _
4453 %standard-phases 10668 (delete-dependencies '("eslint" "eslint-plugin-markdown"
4454 (delete 'configure) 10669 "mocha" "nyc")))))))
4455 (delete 'build)))) 10670 (home-page "https://github.com/visionmedia/bytes.js#readme")
4456 (home-page 10671 (synopsis "Utility to parse a string bytes to bytes and vice-versa")
4457 "https://github.com/visionmedia/bytes.js#readme") 10672 (description "Utility to parse a string bytes to bytes and vice-versa")
4458 (synopsis
4459 "Utility to parse a string bytes to bytes and vice-versa")
4460 (description
4461 "Utility to parse a string bytes to bytes and vice-versa")
4462 (license license:expat)))
4463
4464(define-public node-inherits-2.0.3
4465 (package
4466 (name "node-inherits")
4467 (version "2.0.3")
4468 (source
4469 (origin
4470 (method url-fetch)
4471 (uri "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz")
4472 (sha256
4473 (base32
4474 "1pvc6l11w425i6k9zph3226gdakqw3cq8zkfg1jf51sfnplmhpvz"))))
4475 (build-system node-build-system)
4476 (arguments
4477 `(#:tests?
4478 #f
4479 #:phases
4480 (modify-phases
4481 %standard-phases
4482 (delete 'configure)
4483 (delete 'build))))
4484 (home-page
4485 "https://github.com/isaacs/inherits#readme")
4486 (synopsis
4487 "Browser-friendly inheritance fully compatible with standard node.js inherits()")
4488 (description
4489 "Browser-friendly inheritance fully compatible with standard node.js inherits()")
4490 (license license:isc)))
4491
4492(define-public node-http-errors-1.7.2
4493 (package
4494 (name "node-http-errors")
4495 (version "1.7.2")
4496 (source
4497 (origin
4498 (method url-fetch)
4499 (uri "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz")
4500 (sha256
4501 (base32
4502 "10x0729bip3xz9p4qj8hbgp0hfbknnv8imnp6r964hn5aakd8xys"))))
4503 (build-system node-build-system)
4504 (arguments
4505 `(#:tests?
4506 #f
4507 #:phases
4508 (modify-phases
4509 %standard-phases
4510 (delete 'configure)
4511 (delete 'build))))
4512 (inputs
4513 `(("node-toidentifier" ,node-toidentifier-1.0.0)
4514 ("node-statuses" ,node-statuses-1.5.0)
4515 ("node-setprototypeof"
4516 ,node-setprototypeof-1.1.1)
4517 ("node-inherits" ,node-inherits-2.0.3)
4518 ("node-depd" ,node-depd-1.1.2)))
4519 (home-page
4520 "https://github.com/jshttp/http-errors#readme")
4521 (synopsis "Create HTTP error objects")
4522 (description "Create HTTP error objects")
4523 (license license:expat)))
4524
4525(define-public node-iconv-lite-0.4.24
4526 (package
4527 (name "node-iconv-lite")
4528 (version "0.4.24")
4529 (source
4530 (origin
4531 (method url-fetch)
4532 (uri "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz")
4533 (sha256
4534 (base32
4535 "0da6ff7dlx6lfhdafsd9sv0h09sicpfakms8bqylrm4f17r68v2p"))))
4536 (build-system node-build-system)
4537 (arguments
4538 `(#:tests?
4539 #f
4540 #:phases
4541 (modify-phases
4542 %standard-phases
4543 (delete 'configure)
4544 (delete 'build))))
4545 (inputs
4546 `(("node-safer-buffer" ,node-safer-buffer-2.1.2)))
4547 (home-page
4548 "https://github.com/ashtuchkin/iconv-lite")
4549 (synopsis
4550 "Convert character encodings in pure javascript.")
4551 (description
4552 "Convert character encodings in pure javascript.")
4553 (license license:expat)))
4554
4555(define-public node-unpipe-1.0.0
4556 (package
4557 (name "node-unpipe")
4558 (version "1.0.0")
4559 (source
4560 (origin
4561 (method url-fetch)
4562 (uri "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz")
4563 (sha256
4564 (base32
4565 "1dnzbqfmchls4jyvkw0wnkc09pig98y66zzsy3lizgyls435xyrd"))))
4566 (build-system node-build-system)
4567 (arguments
4568 `(#:tests?
4569 #f
4570 #:phases
4571 (modify-phases
4572 %standard-phases
4573 (delete 'configure)
4574 (delete 'build))))
4575 (home-page
4576 "https://github.com/stream-utils/unpipe")
4577 (synopsis
4578 "Unpipe a stream from all destinations")
4579 (description
4580 "Unpipe a stream from all destinations")
4581 (license license:expat))) 10673 (license license:expat)))
4582 10674
4583(define-public node-raw-body-2.4.0 10675(define-public node-raw-body-2.5.1
4584 (package 10676 (package
4585 (name "node-raw-body") 10677 (name "node-raw-body")
4586 (version "2.4.0") 10678 (version "2.5.1")
4587 (source 10679 (source (origin
4588 (origin 10680 (method url-fetch)
4589 (method url-fetch) 10681 (uri "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz")
4590 (uri "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz") 10682 (sha256
4591 (sha256 10683 (base32
4592 (base32 10684 "08kbp3a2i8pmccvxz1j2g9lqqlrpfplrq062fwl1d75jpy6rr8s7"))))
4593 "0l1v7r5mn6jk7f3h0imryzsz0cigkbq97nigdqvlna5q2v733qzh")))) 10685 (build-system node-build-system)
4594 (build-system node-build-system) 10686 (arguments
4595 (arguments 10687 '(#:tests? #f
4596 `(#:tests? 10688 #:phases (modify-phases %standard-phases
4597 #f 10689 (delete 'build)
4598 #:phases 10690 (add-after 'patch-dependencies 'delete-dev-dependencies
4599 (modify-phases 10691 (lambda _
4600 %standard-phases 10692 (delete-dependencies '("bluebird" "eslint"
4601 (delete 'configure) 10693 "eslint-config-standard"
4602 (delete 'build)))) 10694 "eslint-plugin-import"
4603 (inputs 10695 "eslint-plugin-markdown"
4604 `(("node-unpipe" ,node-unpipe-1.0.0) 10696 "eslint-plugin-node"
4605 ("node-iconv-lite" ,node-iconv-lite-0.4.24) 10697 "eslint-plugin-promise"
4606 ("node-http-errors" ,node-http-errors-1.7.2) 10698 "eslint-plugin-standard"
4607 ("node-bytes" ,node-bytes-3.1.0))) 10699 "mocha"
4608 (home-page 10700 "nyc"
4609 "https://github.com/stream-utils/raw-body#readme") 10701 "readable-stream"
4610 (synopsis 10702 "safe-buffer")))))))
4611 "Get and validate the raw body of a readable stream.") 10703 (inputs `(("node-unpipe" ,node-unpipe-1.0.0)
4612 (description 10704 ("node-iconv-lite" ,node-iconv-lite-0.4.24)
4613 "Get and validate the raw body of a readable stream.") 10705 ("node-http-errors" ,node-http-errors-2.0.0)
4614 (license license:expat))) 10706 ("node-bytes" ,node-bytes-3.1.2)))
4615 10707 (home-page "https://github.com/stream-utils/raw-body#readme")
4616(define-public node-type-is-1.6.18 10708 (synopsis "Get and validate the raw body of a readable stream.")
4617 (package 10709 (description "Get and validate the raw body of a readable stream.")
4618 (name "node-type-is") 10710 (license license:expat)))
4619 (version "1.6.18") 10711
4620 (source 10712(define-public node-body-parser-1.20.1
4621 (origin
4622 (method url-fetch)
4623 (uri "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz")
4624 (sha256
4625 (base32
4626 "1bn3gl9vd67cq3wl2cvq686zskl2xx6lxz5kp9w47qc06f2vbnll"))))
4627 (build-system node-build-system)
4628 (arguments
4629 `(#:tests?
4630 #f
4631 #:phases
4632 (modify-phases
4633 %standard-phases
4634 (delete 'configure)
4635 (delete 'build))))
4636 (inputs
4637 `(("node-mime-types" ,node-mime-types-2.1.28)
4638 ("node-media-typer" ,node-media-typer-0.3.0)))
4639 (home-page
4640 "https://github.com/jshttp/type-is#readme")
4641 (synopsis "Infer the content-type of a request.")
4642 (description
4643 "Infer the content-type of a request.")
4644 (license license:expat)))
4645
4646(define-public node-body-parser-1.19.0
4647 (package 10713 (package
4648 (name "node-body-parser") 10714 (name "node-body-parser")
4649 (version "1.19.0") 10715 (version "1.20.1")
4650 (source 10716 (source (origin
4651 (origin 10717 (method url-fetch)
4652 (method url-fetch) 10718 (uri
4653 (uri "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz") 10719 "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz")
4654 (sha256 10720 (sha256
4655 (base32 10721 (base32
4656 "18vy9ymfhmp3sisf3nxvxi0rl2xll8jp3wd84imnj8swyny5jm02")))) 10722 "0mhv12a925px3sy8nalsxfvnxc8ms007wj83im5r47lpg40qcldk"))))
4657 (build-system node-build-system) 10723 (build-system node-build-system)
4658 (arguments 10724 (arguments
4659 `(#:tests? 10725 '(#:tests? #f
4660 #f 10726 #:phases (modify-phases %standard-phases
4661 #:phases 10727 (delete 'build)
4662 (modify-phases 10728 (add-after 'patch-dependencies 'delete-dev-dependencies
4663 %standard-phases 10729 (lambda _
4664 (delete 'configure) 10730 (delete-dependencies '("eslint" "eslint-config-standard"
4665 (delete 'build)))) 10731 "eslint-plugin-import"
4666 (inputs 10732 "eslint-plugin-markdown"
4667 `(("node-type-is" ,node-type-is-1.6.18) 10733 "eslint-plugin-node"
4668 ("node-raw-body" ,node-raw-body-2.4.0) 10734 "eslint-plugin-promise"
4669 ("node-qs" ,node-qs-6.7.0) 10735 "eslint-plugin-standard"
4670 ("node-on-finished" ,node-on-finished-2.3.0) 10736 "methods"
4671 ("node-iconv-lite" ,node-iconv-lite-0.4.24) 10737 "mocha"
4672 ("node-http-errors" ,node-http-errors-1.7.2) 10738 "nyc"
4673 ("node-depd" ,node-depd-1.1.2) 10739 "safe-buffer"
4674 ("node-debug" ,node-debug-2.6.9) 10740 "supertest")))))))
4675 ("node-content-type" ,node-content-type-1.0.4) 10741 (inputs `(("node-unpipe" ,node-unpipe-1.0.0)
4676 ("node-bytes" ,node-bytes-3.1.0))) 10742 ("node-type-is" ,node-type-is-1.6.18)
4677 (home-page 10743 ("node-raw-body" ,node-raw-body-2.5.1)
4678 "https://github.com/expressjs/body-parser#readme") 10744 ("node-qs" ,node-qs-6.11.0)
10745 ("node-on-finished" ,node-on-finished-2.4.1)
10746 ("node-iconv-lite" ,node-iconv-lite-0.4.24)
10747 ("node-http-errors" ,node-http-errors-2.0.0)
10748 ("node-destroy" ,node-destroy-1.2.0)
10749 ("node-depd" ,node-depd-2.0.0)
10750 ("node-debug" ,node-debug-2.6.9)
10751 ("node-content-type" ,node-content-type-1.0.5)
10752 ("node-bytes" ,node-bytes-3.1.2)))
10753 (home-page "https://github.com/expressjs/body-parser#readme")
4679 (synopsis "Node.js body parsing middleware") 10754 (synopsis "Node.js body parsing middleware")
4680 (description "Node.js body parsing middleware") 10755 (description "Node.js body parsing middleware")
4681 (license license:expat))) 10756 (license license:expat)))
4682 10757
4683(define-public node-content-disposition-0.5.3 10758(define-public node-content-disposition-0.5.4
4684 (package 10759 (package
4685 (name "node-content-disposition") 10760 (name "node-content-disposition")
4686 (version "0.5.3") 10761 (version "0.5.4")
4687 (source 10762 (source (origin
4688 (origin 10763 (method url-fetch)
4689 (method url-fetch) 10764 (uri
4690 (uri "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz") 10765 "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz")
4691 (sha256 10766 (sha256
4692 (base32 10767 (base32
4693 "1gnpp7mvy8r2k8a4kx43rhg8l85n2g0rfvyfn7wai2k42zk08q4y")))) 10768 "0ljl6r5vqhyscjb723f8ddlzrzg66zlh9q01xahjrhlanskwi574"))))
4694 (build-system node-build-system) 10769 (build-system node-build-system)
4695 (arguments 10770 (arguments
4696 `(#:tests? 10771 '(#:tests? #f
4697 #f 10772 #:phases (modify-phases %standard-phases
4698 #:phases 10773 (delete 'build)
4699 (modify-phases 10774 (add-after 'patch-dependencies 'delete-dev-dependencies
4700 %standard-phases 10775 (lambda _
4701 (delete 'configure) 10776 (delete-dependencies '("deep-equal" "eslint"
4702 (delete 'build)))) 10777 "eslint-config-standard"
4703 (inputs 10778 "eslint-plugin-import"
4704 `(("node-safe-buffer" ,node-safe-buffer-5.1.2))) 10779 "eslint-plugin-markdown"
4705 (home-page 10780 "eslint-plugin-node"
4706 "https://github.com/jshttp/content-disposition#readme") 10781 "eslint-plugin-promise"
4707 (synopsis 10782 "eslint-plugin-standard"
4708 "Create and parse Content-Disposition header") 10783 "istanbul"
4709 (description 10784 "mocha")))))))
4710 "Create and parse Content-Disposition header") 10785 (inputs `(("node-safe-buffer" ,node-safe-buffer-5.2.1)))
4711 (license license:expat))) 10786 (home-page "https://github.com/jshttp/content-disposition#readme")
4712 10787 (synopsis "Create and parse Content-Disposition header")
4713(define-public node-content-type-1.0.4 10788 (description "Create and parse Content-Disposition header")
10789 (license license:expat)))
10790
10791(define-public node-content-type-1.0.5
4714 (package 10792 (package
4715 (name "node-content-type") 10793 (name "node-content-type")
4716 (version "1.0.4") 10794 (version "1.0.5")
4717 (source 10795 (source (origin
4718 (origin 10796 (method url-fetch)
4719 (method url-fetch) 10797 (uri
4720 (uri "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz") 10798 "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz")
4721 (sha256 10799 (sha256
4722 (base32 10800 (base32
4723 "0j0rkv7yvpdyk4hfgklx95g75aksljaxraz9lhkb5chhvxqkygnv")))) 10801 "1j0jpnlxjrdpbnq7s1h1xga2n8562j5g6612f7fl40jz82cd0cdc"))))
4724 (build-system node-build-system) 10802 (build-system node-build-system)
4725 (arguments 10803 (arguments
4726 `(#:tests? 10804 '(#:tests? #f
4727 #f 10805 #:phases (modify-phases %standard-phases
4728 #:phases 10806 (delete 'build)
4729 (modify-phases 10807 (add-after 'patch-dependencies 'delete-dev-dependencies
4730 %standard-phases 10808 (lambda _
4731 (delete 'configure) 10809 (delete-dependencies '("deep-equal" "eslint"
4732 (delete 'build)))) 10810 "eslint-config-standard"
4733 (home-page 10811 "eslint-plugin-import"
4734 "https://github.com/jshttp/content-type#readme") 10812 "eslint-plugin-node"
4735 (synopsis 10813 "eslint-plugin-promise"
4736 "Create and parse HTTP Content-Type header") 10814 "eslint-plugin-standard"
4737 (description 10815 "mocha"
4738 "Create and parse HTTP Content-Type header") 10816 "nyc")))))))
4739 (license license:expat))) 10817 (home-page "https://github.com/jshttp/content-type#readme")
4740 10818 (synopsis "Create and parse HTTP Content-Type header")
4741(define-public node-cookie-0.4.0 10819 (description "Create and parse HTTP Content-Type header")
10820 (license license:expat)))
10821
10822(define-public node-cookie-0.5.0
4742 (package 10823 (package
4743 (name "node-cookie") 10824 (name "node-cookie")
4744 (version "0.4.0") 10825 (version "0.5.0")
4745 (source 10826 (source (origin
4746 (origin 10827 (method url-fetch)
4747 (method url-fetch) 10828 (uri "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz")
4748 (uri "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz") 10829 (sha256
4749 (sha256 10830 (base32
4750 (base32 10831 "0mnpmzpda4l2xjr4zgkkmjx0cjzqywvibr0m8y1bhmvyc3f5m2ap"))))
4751 "1z8xxh56qxgcz96j59aw7ik2847xk0lk91c9rdk38bkfbmncpy9f")))) 10832 (build-system node-build-system)
4752 (build-system node-build-system) 10833 (arguments
4753 (arguments 10834 '(#:tests? #f
4754 `(#:tests? 10835 #:phases (modify-phases %standard-phases
4755 #f 10836 (delete 'build)
4756 #:phases 10837 (add-after 'patch-dependencies 'delete-dev-dependencies
4757 (modify-phases 10838 (lambda _
4758 %standard-phases 10839 (delete-dependencies '("beautify-benchmark" "benchmark"
4759 (delete 'configure) 10840 "eslint"
4760 (delete 'build)))) 10841 "eslint-plugin-markdown"
4761 (home-page 10842 "mocha"
4762 "https://github.com/jshttp/cookie#readme") 10843 "nyc"
4763 (synopsis 10844 "safe-buffer"
4764 "HTTP server cookie parsing and serialization") 10845 "top-sites")))))))
4765 (description 10846 (home-page "https://github.com/jshttp/cookie#readme")
4766 "HTTP server cookie parsing and serialization") 10847 (synopsis "HTTP server cookie parsing and serialization")
10848 (description "HTTP server cookie parsing and serialization")
4767 (license license:expat))) 10849 (license license:expat)))
4768 10850
4769(define-public node-cookie-signature-1.0.6 10851(define-public node-cookie-signature-1.0.6
4770 (package 10852 (package
4771 (name "node-cookie-signature") 10853 (name "node-cookie-signature")
4772 (version "1.0.6") 10854 (version "1.0.6")
4773 (source 10855 (source (origin
4774 (origin 10856 (method url-fetch)
4775 (method url-fetch) 10857 (uri
4776 (uri "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz") 10858 "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz")
4777 (sha256 10859 (sha256
4778 (base32 10860 (base32
4779 "04sk9ma5a8xb4jib4wmsdj8pz5bk36yzavzbj3k0drdy9bi4bww9")))) 10861 "04sk9ma5a8xb4jib4wmsdj8pz5bk36yzavzbj3k0drdy9bi4bww9"))))
4780 (build-system node-build-system) 10862 (build-system node-build-system)
4781 (arguments 10863 (arguments
4782 `(#:tests? 10864 '(#:tests? #f
4783 #f 10865 #:phases (modify-phases %standard-phases
4784 #:phases 10866 (delete 'build)
4785 (modify-phases 10867 (add-after 'patch-dependencies 'delete-dev-dependencies
4786 %standard-phases 10868 (lambda _
4787 (delete 'configure) 10869 (delete-dependencies '("mocha" "should")))))))
4788 (delete 'build)))) 10870 (home-page "https://github.com/visionmedia/node-cookie-signature")
4789 (home-page
4790 "https://github.com/visionmedia/node-cookie-signature")
4791 (synopsis "Sign and unsign cookies") 10871 (synopsis "Sign and unsign cookies")
4792 (description "Sign and unsign cookies") 10872 (description "Sign and unsign cookies")
4793 (license license:expat))) 10873 (license license:expat)))
4794 10874
4795(define-public node-finalhandler-1.1.2 10875(define-public node-unpipe-1.0.0
10876 (package
10877 (name "node-unpipe")
10878 (version "1.0.0")
10879 (source (origin
10880 (method url-fetch)
10881 (uri "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz")
10882 (sha256
10883 (base32
10884 "1dnzbqfmchls4jyvkw0wnkc09pig98y66zzsy3lizgyls435xyrd"))))
10885 (build-system node-build-system)
10886 (arguments
10887 '(#:tests? #f
10888 #:phases (modify-phases %standard-phases
10889 (delete 'build)
10890 (add-after 'patch-dependencies 'delete-dev-dependencies
10891 (lambda _
10892 (delete-dependencies '("istanbul" "mocha"
10893 "readable-stream")))))))
10894 (home-page "https://github.com/stream-utils/unpipe")
10895 (synopsis "Unpipe a stream from all destinations")
10896 (description "Unpipe a stream from all destinations")
10897 (license license:expat)))
10898
10899(define-public node-finalhandler-1.2.0
4796 (package 10900 (package
4797 (name "node-finalhandler") 10901 (name "node-finalhandler")
4798 (version "1.1.2") 10902 (version "1.2.0")
4799 (source 10903 (source (origin
4800 (origin 10904 (method url-fetch)
4801 (method url-fetch) 10905 (uri
4802 (uri "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz") 10906 "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz")
4803 (sha256 10907 (sha256
4804 (base32 10908 (base32
4805 "1kq09av23a28ig4kd727librz6dmiwjycsr7nh5cg0vjy0bk31pj")))) 10909 "0dcjp6zdn5pyv1sjvz3qmr9wkwjm2yd8bfd3ri3nv7kjd8i4ngjq"))))
4806 (build-system node-build-system) 10910 (build-system node-build-system)
4807 (arguments 10911 (arguments
4808 `(#:tests? 10912 '(#:tests? #f
4809 #f 10913 #:phases (modify-phases %standard-phases
4810 #:phases 10914 (delete 'build)
4811 (modify-phases 10915 (add-after 'patch-dependencies 'delete-dev-dependencies
4812 %standard-phases 10916 (lambda _
4813 (delete 'configure) 10917 (delete-dependencies '("eslint" "eslint-config-standard"
4814 (delete 'build)))) 10918 "eslint-plugin-import"
4815 (inputs 10919 "eslint-plugin-markdown"
4816 `(("node-unpipe" ,node-unpipe-1.0.0) 10920 "eslint-plugin-node"
4817 ("node-statuses" ,node-statuses-1.5.0) 10921 "eslint-plugin-promise"
4818 ("node-parseurl" ,node-parseurl-1.3.3) 10922 "eslint-plugin-standard"
4819 ("node-on-finished" ,node-on-finished-2.3.0) 10923 "mocha"
4820 ("node-escape-html" ,node-escape-html-1.0.3) 10924 "nyc"
4821 ("node-encodeurl" ,node-encodeurl-1.0.2) 10925 "readable-stream"
4822 ("node-debug" ,node-debug-2.6.9))) 10926 "safe-buffer"
4823 (home-page 10927 "supertest")))))))
4824 "https://github.com/pillarjs/finalhandler#readme") 10928 (inputs `(("node-unpipe" ,node-unpipe-1.0.0)
10929 ("node-statuses" ,node-statuses-2.0.1)
10930 ("node-parseurl" ,node-parseurl-1.3.3)
10931 ("node-on-finished" ,node-on-finished-2.4.1)
10932 ("node-escape-html" ,node-escape-html-1.0.3)
10933 ("node-encodeurl" ,node-encodeurl-1.0.2)
10934 ("node-debug" ,node-debug-2.6.9)))
10935 (home-page "https://github.com/pillarjs/finalhandler#readme")
4825 (synopsis "Node.js final http responder") 10936 (synopsis "Node.js final http responder")
4826 (description "Node.js final http responder") 10937 (description "Node.js final http responder")
4827 (license license:expat))) 10938 (license license:expat)))
@@ -4830,24 +10941,22 @@
4830 (package 10941 (package
4831 (name "node-merge-descriptors") 10942 (name "node-merge-descriptors")
4832 (version "1.0.1") 10943 (version "1.0.1")
4833 (source 10944 (source (origin
4834 (origin 10945 (method url-fetch)
4835 (method url-fetch) 10946 (uri
4836 (uri "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz") 10947 "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz")
4837 (sha256 10948 (sha256
4838 (base32 10949 (base32
4839 "02d4fqgiz4cc33vbcdlah9rafj5vc2z0iy05sc9wpfpzri3kn2l8")))) 10950 "02d4fqgiz4cc33vbcdlah9rafj5vc2z0iy05sc9wpfpzri3kn2l8"))))
4840 (build-system node-build-system) 10951 (build-system node-build-system)
4841 (arguments 10952 (arguments
4842 `(#:tests? 10953 '(#:tests? #f
4843 #f 10954 #:phases (modify-phases %standard-phases
4844 #:phases 10955 (delete 'build)
4845 (modify-phases 10956 (add-after 'patch-dependencies 'delete-dev-dependencies
4846 %standard-phases 10957 (lambda _
4847 (delete 'configure) 10958 (delete-dependencies '("istanbul" "mocha")))))))
4848 (delete 'build)))) 10959 (home-page "https://github.com/component/merge-descriptors")
4849 (home-page
4850 "https://github.com/component/merge-descriptors")
4851 (synopsis "Merge objects using descriptors") 10960 (synopsis "Merge objects using descriptors")
4852 (description "Merge objects using descriptors") 10961 (description "Merge objects using descriptors")
4853 (license license:expat))) 10962 (license license:expat)))
@@ -4856,22 +10965,20 @@
4856 (package 10965 (package
4857 (name "node-methods") 10966 (name "node-methods")
4858 (version "1.1.2") 10967 (version "1.1.2")
4859 (source 10968 (source (origin
4860 (origin 10969 (method url-fetch)
4861 (method url-fetch) 10970 (uri "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz")
4862 (uri "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz") 10971 (sha256
4863 (sha256 10972 (base32
4864 (base32 10973 "0g50ci0gc8r8kq1i06q078gw7azkakp7j3yw5qfi6gq2qk8hdlnz"))))
4865 "0g50ci0gc8r8kq1i06q078gw7azkakp7j3yw5qfi6gq2qk8hdlnz")))) 10974 (build-system node-build-system)
4866 (build-system node-build-system) 10975 (arguments
4867 (arguments 10976 '(#:tests? #f
4868 `(#:tests? 10977 #:phases (modify-phases %standard-phases
4869 #f 10978 (delete 'build)
4870 #:phases 10979 (add-after 'patch-dependencies 'delete-dev-dependencies
4871 (modify-phases 10980 (lambda _
4872 %standard-phases 10981 (delete-dependencies '("istanbul" "mocha")))))))
4873 (delete 'configure)
4874 (delete 'build))))
4875 (home-page "https://github.com/jshttp/methods") 10982 (home-page "https://github.com/jshttp/methods")
4876 (synopsis "HTTP methods that node supports") 10983 (synopsis "HTTP methods that node supports")
4877 (description "HTTP methods that node supports") 10984 (description "HTTP methods that node supports")
@@ -4881,51 +10988,55 @@
4881 (package 10988 (package
4882 (name "node-path-to-regexp") 10989 (name "node-path-to-regexp")
4883 (version "0.1.7") 10990 (version "0.1.7")
4884 (source 10991 (source (origin
4885 (origin 10992 (method url-fetch)
4886 (method url-fetch) 10993 (uri
4887 (uri "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz") 10994 "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz")
4888 (sha256 10995 (sha256
4889 (base32 10996 (base32
4890 "0dlgr61ahgydnmsp1pprc1m52qnylkb3pdpvn1s5p5x8d7qn4m6y")))) 10997 "0dlgr61ahgydnmsp1pprc1m52qnylkb3pdpvn1s5p5x8d7qn4m6y"))))
4891 (build-system node-build-system) 10998 (build-system node-build-system)
4892 (arguments 10999 (arguments
4893 `(#:tests? 11000 '(#:tests? #f
4894 #f 11001 #:phases (modify-phases %standard-phases
4895 #:phases 11002 (delete 'build)
4896 (modify-phases 11003 (add-after 'patch-dependencies 'delete-dev-dependencies
4897 %standard-phases 11004 (lambda _
4898 (delete 'configure) 11005 (delete-dependencies '("mocha" "istanbul")))))))
4899 (delete 'build)))) 11006 (home-page "https://github.com/component/path-to-regexp#readme")
4900 (home-page
4901 "https://github.com/component/path-to-regexp#readme")
4902 (synopsis "Express style path to RegExp utility") 11007 (synopsis "Express style path to RegExp utility")
4903 (description 11008 (description "Express style path to RegExp utility")
4904 "Express style path to RegExp utility")
4905 (license license:expat))) 11009 (license license:expat)))
4906 11010
4907(define-public node-forwarded-0.1.2 11011(define-public node-forwarded-0.2.0
4908 (package 11012 (package
4909 (name "node-forwarded") 11013 (name "node-forwarded")
4910 (version "0.1.2") 11014 (version "0.2.0")
4911 (source 11015 (source (origin
4912 (origin 11016 (method url-fetch)
4913 (method url-fetch) 11017 (uri
4914 (uri "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz") 11018 "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz")
4915 (sha256 11019 (sha256
4916 (base32 11020 (base32
4917 "1kajx1hlidman6sircpxj5hpxw6q06p2li7hq15skff7k00prraq")))) 11021 "168w8dhfqp12llh2w802dm3z1fcarsacsksyvdccnpxqbzlmsnlv"))))
4918 (build-system node-build-system) 11022 (build-system node-build-system)
4919 (arguments 11023 (arguments
4920 `(#:tests? 11024 '(#:tests? #f
4921 #f 11025 #:phases (modify-phases %standard-phases
4922 #:phases 11026 (delete 'build)
4923 (modify-phases 11027 (add-after 'patch-dependencies 'delete-dev-dependencies
4924 %standard-phases 11028 (lambda _
4925 (delete 'configure) 11029 (delete-dependencies '("beautify-benchmark" "benchmark"
4926 (delete 'build)))) 11030 "deep-equal"
4927 (home-page 11031 "eslint"
4928 "https://github.com/jshttp/forwarded#readme") 11032 "eslint-config-standard"
11033 "eslint-plugin-import"
11034 "eslint-plugin-node"
11035 "eslint-plugin-promise"
11036 "eslint-plugin-standard"
11037 "mocha"
11038 "nyc")))))))
11039 (home-page "https://github.com/jshttp/forwarded#readme")
4929 (synopsis "Parse HTTP X-Forwarded-For header") 11040 (synopsis "Parse HTTP X-Forwarded-For header")
4930 (description "Parse HTTP X-Forwarded-For header") 11041 (description "Parse HTTP X-Forwarded-For header")
4931 (license license:expat))) 11042 (license license:expat)))
@@ -4934,135 +11045,404 @@
4934 (package 11045 (package
4935 (name "node-ipaddr-js") 11046 (name "node-ipaddr-js")
4936 (version "1.9.1") 11047 (version "1.9.1")
4937 (source 11048 (source (origin
4938 (origin 11049 (method url-fetch)
4939 (method url-fetch) 11050 (uri
4940 (uri "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz") 11051 "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz")
4941 (sha256 11052 (sha256
4942 (base32 11053 (base32
4943 "1vlg9vgdlx13dvh6h6sg3rgdbp04lkljmn6gxih43zk77xidjhbl")))) 11054 "1vlg9vgdlx13dvh6h6sg3rgdbp04lkljmn6gxih43zk77xidjhbl"))))
4944 (build-system node-build-system) 11055 (build-system node-build-system)
4945 (arguments 11056 (arguments
4946 `(#:tests? 11057 '(#:tests? #f
4947 #f 11058 #:phases (modify-phases %standard-phases
4948 #:phases 11059 (delete 'build)
4949 (modify-phases 11060 (add-after 'patch-dependencies 'delete-dev-dependencies
4950 %standard-phases 11061 (lambda _
4951 (delete 'configure) 11062 (delete-dependencies '("coffee-script" "nodeunit"
4952 (delete 'build)))) 11063 "uglify-js")))))))
4953 (home-page 11064 (home-page "https://github.com/whitequark/ipaddr.js#readme")
4954 "https://github.com/whitequark/ipaddr.js#readme")
4955 (synopsis 11065 (synopsis
4956 "A library for manipulating IPv4 and IPv6 addresses in JavaScript.") 11066 "A library for manipulating IPv4 and IPv6 addresses in JavaScript.")
4957 (description 11067 (description
4958 "A library for manipulating IPv4 and IPv6 addresses in JavaScript.") 11068 "A library for manipulating IPv4 and IPv6 addresses in JavaScript.")
4959 (license license:expat))) 11069 (license license:expat)))
4960 11070
4961(define-public node-proxy-addr-2.0.6 11071(define-public node-proxy-addr-2.0.7
4962 (package 11072 (package
4963 (name "node-proxy-addr") 11073 (name "node-proxy-addr")
4964 (version "2.0.6") 11074 (version "2.0.7")
4965 (source 11075 (source (origin
4966 (origin 11076 (method url-fetch)
4967 (method url-fetch) 11077 (uri
4968 (uri "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz") 11078 "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz")
4969 (sha256 11079 (sha256
4970 (base32 11080 (base32
4971 "1z91mzm8fiy6kb3sydbq2g7y5dvira0lgfwqsbnx8axk70x4lvv7")))) 11081 "1na6xrmlga7qjd55gfhnp7m8qg43nynzg5ds54s76kkd9zrvdld0"))))
4972 (build-system node-build-system) 11082 (build-system node-build-system)
4973 (arguments 11083 (arguments
4974 `(#:tests? 11084 '(#:tests? #f
4975 #f 11085 #:phases (modify-phases %standard-phases
4976 #:phases 11086 (delete 'build)
4977 (modify-phases 11087 (add-after 'patch-dependencies 'delete-dev-dependencies
4978 %standard-phases 11088 (lambda _
4979 (delete 'configure) 11089 (delete-dependencies '("benchmark" "beautify-benchmark"
4980 (delete 'build)))) 11090 "deep-equal"
4981 (inputs 11091 "eslint"
4982 `(("node-ipaddr-js" ,node-ipaddr-js-1.9.1) 11092 "eslint-config-standard"
4983 ("node-forwarded" ,node-forwarded-0.1.2))) 11093 "eslint-plugin-import"
4984 (home-page 11094 "eslint-plugin-markdown"
4985 "https://github.com/jshttp/proxy-addr#readme") 11095 "eslint-plugin-node"
11096 "eslint-plugin-promise"
11097 "eslint-plugin-standard"
11098 "mocha"
11099 "nyc")))))))
11100 (inputs `(("node-ipaddr-js" ,node-ipaddr-js-1.9.1)
11101 ("node-forwarded" ,node-forwarded-0.2.0)))
11102 (home-page "https://github.com/jshttp/proxy-addr#readme")
4986 (synopsis "Determine address of proxied request") 11103 (synopsis "Determine address of proxied request")
11104 (description "Determine address of proxied request")
11105 (license license:expat)))
11106
11107(define-public node-call-bind-1.0.2
11108 (package
11109 (name "node-call-bind")
11110 (version "1.0.2")
11111 (source (origin
11112 (method url-fetch)
11113 (uri
11114 "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz")
11115 (sha256
11116 (base32
11117 "06il2ki0bprw4s0a12bwnzwjc8gwwcw6f0cda0jyvj46sj56z5f3"))))
11118 (build-system node-build-system)
11119 (arguments
11120 '(#:tests? #f
11121 #:phases (modify-phases %standard-phases
11122 (delete 'build)
11123 (add-after 'patch-dependencies 'delete-dev-dependencies
11124 (lambda _
11125 (delete-dependencies '("@ljharb/eslint-config" "aud"
11126 "auto-changelog"
11127 "eslint"
11128 "nyc"
11129 "safe-publish-latest"
11130 "tape")))))))
11131 (inputs `(("node-get-intrinsic" ,node-get-intrinsic-1.2.1)
11132 ("node-function-bind" ,node-function-bind-1.1.1)))
11133 (home-page "https://github.com/ljharb/call-bind#readme")
11134 (synopsis "Robustly `.call.bind()` a function")
11135 (description "Robustly `.call.bind()` a function")
11136 (license license:expat)))
11137
11138(define-public node-function-bind-1.1.1
11139 (package
11140 (name "node-function-bind")
11141 (version "1.1.1")
11142 (source (origin
11143 (method url-fetch)
11144 (uri
11145 "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz")
11146 (sha256
11147 (base32
11148 "10p0s9ypggwmazik4azdhywjnnayagnjxk10cjzsrhxlk1y2wm9d"))))
11149 (build-system node-build-system)
11150 (arguments
11151 '(#:tests? #f
11152 #:phases (modify-phases %standard-phases
11153 (delete 'build)
11154 (add-after 'patch-dependencies 'delete-dev-dependencies
11155 (lambda _
11156 (delete-dependencies '("@ljharb/eslint-config" "covert"
11157 "eslint" "jscs" "tape")))))))
11158 (home-page "https://github.com/Raynos/function-bind")
11159 (synopsis "Implementation of Function.prototype.bind")
11160 (description "Implementation of Function.prototype.bind")
11161 (license license:expat)))
11162
11163(define-public node-has-1.0.3
11164 (package
11165 (name "node-has")
11166 (version "1.0.3")
11167 (source (origin
11168 (method url-fetch)
11169 (uri "https://registry.npmjs.org/has/-/has-1.0.3.tgz")
11170 (sha256
11171 (base32
11172 "0wsmn2vcbqb23xpbzxipjd7xcdljid2gwnwl7vn5hkp0zkpgk363"))))
11173 (build-system node-build-system)
11174 (arguments
11175 '(#:tests? #f
11176 #:phases (modify-phases %standard-phases
11177 (delete 'build)
11178 (add-after 'patch-dependencies 'delete-dev-dependencies
11179 (lambda _
11180 (delete-dependencies '("@ljharb/eslint-config" "eslint"
11181 "tape")))))))
11182 (inputs `(("node-function-bind" ,node-function-bind-1.1.1)))
11183 (home-page "https://github.com/tarruda/has")
11184 (synopsis "Object.prototype.hasOwnProperty.call shortcut")
11185 (description "Object.prototype.hasOwnProperty.call shortcut")
11186 (license license:expat)))
11187
11188(define-public node-has-proto-1.0.1
11189 (package
11190 (name "node-has-proto")
11191 (version "1.0.1")
11192 (source (origin
11193 (method url-fetch)
11194 (uri
11195 "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz")
11196 (sha256
11197 (base32
11198 "0lgnq6pcakprcxq176803bhv901sdjp23nii1rfh4q1dd5nxa457"))))
11199 (build-system node-build-system)
11200 (arguments
11201 '(#:tests? #f
11202 #:phases (modify-phases %standard-phases
11203 (delete 'build)
11204 (add-after 'patch-dependencies 'delete-dev-dependencies
11205 (lambda _
11206 (delete-dependencies '("@ljharb/eslint-config" "aud"
11207 "auto-changelog"
11208 "eslint"
11209 "in-publish"
11210 "npmignore"
11211 "safe-publish-latest"
11212 "tape")))))))
11213 (home-page "https://github.com/inspect-js/has-proto#readme")
11214 (synopsis
11215 "Does this environment have the ability to get the [[Prototype]] of an object on creation with `__proto__`?")
4987 (description 11216 (description
4988 "Determine address of proxied request") 11217 "Does this environment have the ability to get the [[Prototype]] of an object on creation with `__proto__`?")
4989 (license license:expat))) 11218 (license license:expat)))
4990 11219
4991(define-public node-qs-6.7.0 11220(define-public node-has-symbols-1.0.3
11221 (package
11222 (name "node-has-symbols")
11223 (version "1.0.3")
11224 (source (origin
11225 (method url-fetch)
11226 (uri
11227 "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz")
11228 (sha256
11229 (base32
11230 "19p65j4wxry2y75capz52i4miva1z5m6b2qs1b8aj4hy5xl1gk6x"))))
11231 (build-system node-build-system)
11232 (arguments
11233 '(#:tests? #f
11234 #:phases (modify-phases %standard-phases
11235 (delete 'build)
11236 (add-after 'patch-dependencies 'delete-dev-dependencies
11237 (lambda _
11238 (delete-dependencies '("@ljharb/eslint-config" "aud"
11239 "auto-changelog"
11240 "core-js"
11241 "eslint"
11242 "get-own-property-symbols"
11243 "nyc"
11244 "safe-publish-latest"
11245 "tape")))))))
11246 (home-page "https://github.com/ljharb/has-symbols#readme")
11247 (synopsis
11248 "Determine if the JS environment has Symbol support. Supports spec, or shams.")
11249 (description
11250 "Determine if the JS environment has Symbol support. Supports spec, or shams.")
11251 (license license:expat)))
11252
11253(define-public node-get-intrinsic-1.2.1
11254 (package
11255 (name "node-get-intrinsic")
11256 (version "1.2.1")
11257 (source (origin
11258 (method url-fetch)
11259 (uri
11260 "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz")
11261 (sha256
11262 (base32
11263 "0pffwzq9hhajnpv2zng5vix5qnxry41nk94m2wbmwgw5v7wsmy0c"))))
11264 (build-system node-build-system)
11265 (arguments
11266 '(#:tests? #f
11267 #:phases (modify-phases %standard-phases
11268 (delete 'build)
11269 (add-after 'patch-dependencies 'delete-dev-dependencies
11270 (lambda _
11271 (delete-dependencies '("@ljharb/eslint-config" "aud"
11272 "auto-changelog"
11273 "call-bind"
11274 "es-abstract"
11275 "es-value-fixtures"
11276 "eslint"
11277 "evalmd"
11278 "for-each"
11279 "gopd"
11280 "make-async-function"
11281 "make-async-generator-function"
11282 "make-generator-function"
11283 "mock-property"
11284 "npmignore"
11285 "nyc"
11286 "object-inspect"
11287 "safe-publish-latest"
11288 "tape")))))))
11289 (inputs `(("node-has-symbols" ,node-has-symbols-1.0.3)
11290 ("node-has-proto" ,node-has-proto-1.0.1)
11291 ("node-has" ,node-has-1.0.3)
11292 ("node-function-bind" ,node-function-bind-1.1.1)))
11293 (home-page "https://github.com/ljharb/get-intrinsic#readme")
11294 (synopsis
11295 "Get and robustly cache all JS language-level intrinsics at first require time")
11296 (description
11297 "Get and robustly cache all JS language-level intrinsics at first require time")
11298 (license license:expat)))
11299
11300(define-public node-object-inspect-1.12.3
11301 (package
11302 (name "node-object-inspect")
11303 (version "1.12.3")
11304 (source (origin
11305 (method url-fetch)
11306 (uri
11307 "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz")
11308 (sha256
11309 (base32
11310 "1ai21szcxddav1648fb78rdkhvkgpn6k2d8il9s7agk3lvgais2a"))))
11311 (build-system node-build-system)
11312 (arguments
11313 '(#:tests? #f
11314 #:phases (modify-phases %standard-phases
11315 (delete 'build)
11316 (add-after 'patch-dependencies 'delete-dev-dependencies
11317 (lambda _
11318 (delete-dependencies '("@ljharb/eslint-config"
11319 "@pkgjs/support"
11320 "aud"
11321 "auto-changelog"
11322 "core-js"
11323 "error-cause"
11324 "es-value-fixtures"
11325 "eslint"
11326 "for-each"
11327 "functions-have-names"
11328 "has-tostringtag"
11329 "in-publish"
11330 "make-arrow-function"
11331 "mock-property"
11332 "npmignore"
11333 "nyc"
11334 "safe-publish-latest"
11335 "string.prototype.repeat"
11336 "tape")))))))
11337 (home-page "https://github.com/inspect-js/object-inspect")
11338 (synopsis "string representations of objects in node and the browser")
11339 (description "string representations of objects in node and the browser")
11340 (license license:expat)))
11341
11342(define-public node-side-channel-1.0.4
11343 (package
11344 (name "node-side-channel")
11345 (version "1.0.4")
11346 (source (origin
11347 (method url-fetch)
11348 (uri
11349 "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz")
11350 (sha256
11351 (base32
11352 "0dfp0r5j0i847w1q88riq2yp4mc0wrs0a6ys57j1m21nlny88arm"))))
11353 (build-system node-build-system)
11354 (arguments
11355 '(#:tests? #f
11356 #:phases (modify-phases %standard-phases
11357 (delete 'build)
11358 (add-after 'patch-dependencies 'delete-dev-dependencies
11359 (lambda _
11360 (delete-dependencies '("@ljharb/eslint-config" "aud"
11361 "auto-changelog"
11362 "eslint"
11363 "nyc"
11364 "safe-publish-latest"
11365 "tape")))))))
11366 (inputs `(("node-object-inspect" ,node-object-inspect-1.12.3)
11367 ("node-get-intrinsic" ,node-get-intrinsic-1.2.1)
11368 ("node-call-bind" ,node-call-bind-1.0.2)))
11369 (home-page "https://github.com/ljharb/side-channel#readme")
11370 (synopsis
11371 "Store information about any JS value in a side channel. Uses WeakMap if available.")
11372 (description
11373 "Store information about any JS value in a side channel. Uses WeakMap if available.")
11374 (license license:expat)))
11375
11376(define-public node-qs-6.11.0
4992 (package 11377 (package
4993 (name "node-qs") 11378 (name "node-qs")
4994 (version "6.7.0") 11379 (version "6.11.0")
4995 (source 11380 (source (origin
4996 (origin 11381 (method url-fetch)
4997 (method url-fetch) 11382 (uri "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz")
4998 (uri "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz") 11383 (sha256
4999 (sha256 11384 (base32
5000 (base32 11385 "0dg21qavayja9ij6vcl2kzfb1fszpribr5jg63fmjhmv9pj1rn81"))))
5001 "0kjlldn82gli5vwh4w84lv7xzlh5ayb91l90m08xsajins128bal")))) 11386 (build-system node-build-system)
5002 (build-system node-build-system) 11387 (arguments
5003 (arguments 11388 '(#:tests? #f
5004 `(#:tests? 11389 #:phases (modify-phases %standard-phases
5005 #f 11390 (delete 'build)
5006 #:phases 11391 (add-after 'patch-dependencies 'delete-dev-dependencies
5007 (modify-phases 11392 (lambda _
5008 %standard-phases 11393 (delete-dependencies '("@ljharb/eslint-config" "aud"
5009 (delete 'configure) 11394 "browserify"
5010 (delete 'build)))) 11395 "eclint"
11396 "eslint"
11397 "evalmd"
11398 "for-each"
11399 "has-symbols"
11400 "iconv-lite"
11401 "in-publish"
11402 "mkdirp"
11403 "npmignore"
11404 "nyc"
11405 "object-inspect"
11406 "qs-iconv"
11407 "safe-publish-latest"
11408 "safer-buffer"
11409 "tape")))))))
11410 (inputs `(("node-side-channel" ,node-side-channel-1.0.4)))
5011 (home-page "https://github.com/ljharb/qs") 11411 (home-page "https://github.com/ljharb/qs")
5012 (synopsis 11412 (synopsis
5013 "A querystring parser that supports nesting and arrays, with a depth limit") 11413 "A querystring parser that supports nesting and arrays, with a depth limit")
5014 (description 11414 (description
5015 "A querystring parser that supports nesting and arrays, with a depth limit") 11415 "A querystring parser that supports nesting and arrays, with a depth limit")
5016 (license license:bsd-3))) 11416 (license license:bsd-3)))
5017 11417
5018(define-public node-safe-buffer-5.1.2
5019 (package
5020 (name "node-safe-buffer")
5021 (version "5.1.2")
5022 (source
5023 (origin
5024 (method url-fetch)
5025 (uri "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz")
5026 (sha256
5027 (base32
5028 "08ma0a2a9j537bxl7qd2dn6sjcdhrclpdbslr19bkbyc1z30d4p0"))))
5029 (build-system node-build-system)
5030 (arguments
5031 `(#:tests?
5032 #f
5033 #:phases
5034 (modify-phases
5035 %standard-phases
5036 (delete 'configure)
5037 (delete 'build))))
5038 (home-page
5039 "https://github.com/feross/safe-buffer")
5040 (synopsis "Safer Node.js Buffer API")
5041 (description "Safer Node.js Buffer API")
5042 (license license:expat)))
5043
5044(define-public node-parseurl-1.3.3 11418(define-public node-parseurl-1.3.3
5045 (package 11419 (package
5046 (name "node-parseurl") 11420 (name "node-parseurl")
5047 (version "1.3.3") 11421 (version "1.3.3")
5048 (source 11422 (source (origin
5049 (origin 11423 (method url-fetch)
5050 (method url-fetch) 11424 (uri "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz")
5051 (uri "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz") 11425 (sha256
5052 (sha256 11426 (base32
5053 (base32 11427 "06h2bx1rilkdir3v9jlg94r1q2fn895s0vxjjs0wx5z027x4pvsn"))))
5054 "06h2bx1rilkdir3v9jlg94r1q2fn895s0vxjjs0wx5z027x4pvsn")))) 11428 (build-system node-build-system)
5055 (build-system node-build-system) 11429 (arguments
5056 (arguments 11430 '(#:tests? #f
5057 `(#:tests? 11431 #:phases (modify-phases %standard-phases
5058 #f 11432 (delete 'build)
5059 #:phases 11433 (add-after 'patch-dependencies 'delete-dev-dependencies
5060 (modify-phases 11434 (lambda _
5061 %standard-phases 11435 (delete-dependencies '("beautify-benchmark" "benchmark"
5062 (delete 'configure) 11436 "eslint"
5063 (delete 'build)))) 11437 "eslint-config-standard"
5064 (home-page 11438 "eslint-plugin-import"
5065 "https://github.com/pillarjs/parseurl#readme") 11439 "eslint-plugin-node"
11440 "eslint-plugin-promise"
11441 "eslint-plugin-standard"
11442 "fast-url-parser"
11443 "istanbul"
11444 "mocha")))))))
11445 (home-page "https://github.com/pillarjs/parseurl#readme")
5066 (synopsis "parse a url with memoization") 11446 (synopsis "parse a url with memoization")
5067 (description "parse a url with memoization") 11447 (description "parse a url with memoization")
5068 (license license:expat))) 11448 (license license:expat)))
@@ -5071,50 +11451,89 @@
5071 (package 11451 (package
5072 (name "node-ms") 11452 (name "node-ms")
5073 (version "2.0.0") 11453 (version "2.0.0")
5074 (source 11454 (source (origin
5075 (origin 11455 (method url-fetch)
5076 (method url-fetch) 11456 (uri "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz")
5077 (uri "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz") 11457 (sha256
5078 (sha256 11458 (base32
5079 (base32 11459 "1jrysw9zx14av3jdvc3kywc3xkjqxh748g4s6p1iy634i2mm489n"))))
5080 "1jrysw9zx14av3jdvc3kywc3xkjqxh748g4s6p1iy634i2mm489n")))) 11460 (build-system node-build-system)
5081 (build-system node-build-system) 11461 (arguments
5082 (arguments 11462 '(#:tests? #f
5083 `(#:tests? 11463 #:phases (modify-phases %standard-phases
5084 #f 11464 (delete 'build)
5085 #:phases 11465 (add-after 'patch-dependencies 'delete-dev-dependencies
5086 (modify-phases 11466 (lambda _
5087 %standard-phases 11467 (delete-dependencies '("eslint" "expect.js" "husky"
5088 (delete 'configure) 11468 "lint-staged" "mocha")))))))
5089 (delete 'build))))
5090 (home-page "https://github.com/zeit/ms#readme") 11469 (home-page "https://github.com/zeit/ms#readme")
5091 (synopsis "Tiny milisecond conversion utility") 11470 (synopsis "Tiny milisecond conversion utility")
5092 (description 11471 (description "Tiny milisecond conversion utility")
5093 "Tiny milisecond conversion utility")
5094 (license license:expat))) 11472 (license license:expat)))
5095 11473
5096(define-public node-destroy-1.0.4 11474(define-public node-debug-2.6.9
11475 (package
11476 (name "node-debug")
11477 (version "2.6.9")
11478 (source (origin
11479 (method url-fetch)
11480 (uri "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz")
11481 (sha256
11482 (base32
11483 "160wvc74r8aypds7pym3hq4qpa786hpk4vif58ggiwcqcv34ibil"))))
11484 (build-system node-build-system)
11485 (arguments
11486 '(#:tests? #f
11487 #:phases (modify-phases %standard-phases
11488 (delete 'build)
11489 (add-after 'patch-dependencies 'delete-dev-dependencies
11490 (lambda _
11491 (delete-dependencies '("browserify" "chai"
11492 "concurrently"
11493 "coveralls"
11494 "eslint"
11495 "istanbul"
11496 "karma"
11497 "karma-chai"
11498 "karma-mocha"
11499 "karma-phantomjs-launcher"
11500 "karma-sinon"
11501 "mocha"
11502 "mocha-lcov-reporter"
11503 "rimraf"
11504 "sinon"
11505 "sinon-chai")))))))
11506 (inputs `(("node-ms" ,node-ms-2.0.0)))
11507 (home-page "https://github.com/visionmedia/debug#readme")
11508 (synopsis "small debugging utility")
11509 (description "small debugging utility")
11510 (license license:expat)))
11511
11512(define-public node-destroy-1.2.0
5097 (package 11513 (package
5098 (name "node-destroy") 11514 (name "node-destroy")
5099 (version "1.0.4") 11515 (version "1.2.0")
5100 (source 11516 (source (origin
5101 (origin 11517 (method url-fetch)
5102 (method url-fetch) 11518 (uri "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz")
5103 (uri "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz") 11519 (sha256
5104 (sha256 11520 (base32
5105 (base32 11521 "1a6gf6hn9zc4g6v3dqdcsc3v1n22qbv1s5xmdakljjgmdkl2gzcd"))))
5106 "0miy8a2wfc77l4j08hv4qk5v9a7566igql71zw7ds3v5yhi9cmsv")))) 11522 (build-system node-build-system)
5107 (build-system node-build-system) 11523 (arguments
5108 (arguments 11524 '(#:tests? #f
5109 `(#:tests? 11525 #:phases (modify-phases %standard-phases
5110 #f 11526 (delete 'build)
5111 #:phases 11527 (add-after 'patch-dependencies 'delete-dev-dependencies
5112 (modify-phases 11528 (lambda _
5113 %standard-phases 11529 (delete-dependencies '("eslint" "eslint-config-standard"
5114 (delete 'configure) 11530 "eslint-plugin-import"
5115 (delete 'build)))) 11531 "eslint-plugin-node"
5116 (home-page 11532 "eslint-plugin-promise"
5117 "https://github.com/stream-utils/destroy") 11533 "eslint-plugin-standard"
11534 "mocha"
11535 "nyc")))))))
11536 (home-page "https://github.com/stream-utils/destroy#readme")
5118 (synopsis "destroy a stream if possible") 11537 (synopsis "destroy a stream if possible")
5119 (description "destroy a stream if possible") 11538 (description "destroy a stream if possible")
5120 (license license:expat))) 11539 (license license:expat)))
@@ -5123,52 +11542,54 @@
5123 (package 11542 (package
5124 (name "node-encodeurl") 11543 (name "node-encodeurl")
5125 (version "1.0.2") 11544 (version "1.0.2")
5126 (source 11545 (source (origin
5127 (origin 11546 (method url-fetch)
5128 (method url-fetch) 11547 (uri
5129 (uri "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz") 11548 "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz")
5130 (sha256 11549 (sha256
5131 (base32 11550 (base32
5132 "13afvicx42ha4k29571sg0i4b76xjggyxvmmmibm258ipf6mjinb")))) 11551 "13afvicx42ha4k29571sg0i4b76xjggyxvmmmibm258ipf6mjinb"))))
5133 (build-system node-build-system) 11552 (build-system node-build-system)
5134 (arguments 11553 (arguments
5135 `(#:tests? 11554 '(#:tests? #f
5136 #f 11555 #:phases (modify-phases %standard-phases
5137 #:phases 11556 (delete 'build)
5138 (modify-phases 11557 (add-after 'patch-dependencies 'delete-dev-dependencies
5139 %standard-phases 11558 (lambda _
5140 (delete 'configure) 11559 (delete-dependencies '("eslint" "eslint-config-standard"
5141 (delete 'build)))) 11560 "eslint-plugin-import"
5142 (home-page 11561 "eslint-plugin-node"
5143 "https://github.com/pillarjs/encodeurl#readme") 11562 "eslint-plugin-promise"
5144 (synopsis 11563 "eslint-plugin-standard"
5145 "Encode a URL to a percent-encoded form, excluding already-encoded sequences") 11564 "istanbul"
5146 (description 11565 "mocha")))))))
5147 "Encode a URL to a percent-encoded form, excluding already-encoded sequences") 11566 (home-page "https://github.com/pillarjs/encodeurl#readme")
11567 (synopsis
11568 "Encode a URL to a percent-encoded form, excluding already-encoded sequences")
11569 (description
11570 "Encode a URL to a percent-encoded form, excluding already-encoded sequences")
5148 (license license:expat))) 11571 (license license:expat)))
5149 11572
5150(define-public node-escape-html-1.0.3 11573(define-public node-escape-html-1.0.3
5151 (package 11574 (package
5152 (name "node-escape-html") 11575 (name "node-escape-html")
5153 (version "1.0.3") 11576 (version "1.0.3")
5154 (source 11577 (source (origin
5155 (origin 11578 (method url-fetch)
5156 (method url-fetch) 11579 (uri
5157 (uri "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz") 11580 "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz")
5158 (sha256 11581 (sha256
5159 (base32 11582 (base32
5160 "0rh35dvab1wbp87dy1m6rynbcb9rbs5kry7jk17ixyxx7if1a0d1")))) 11583 "0rh35dvab1wbp87dy1m6rynbcb9rbs5kry7jk17ixyxx7if1a0d1"))))
5161 (build-system node-build-system) 11584 (build-system node-build-system)
5162 (arguments 11585 (arguments
5163 `(#:tests? 11586 '(#:tests? #f
5164 #f 11587 #:phases (modify-phases %standard-phases
5165 #:phases 11588 (delete 'build)
5166 (modify-phases 11589 (add-after 'patch-dependencies 'delete-dev-dependencies
5167 %standard-phases 11590 (lambda _
5168 (delete 'configure) 11591 (delete-dependencies '("benchmark" "beautify-benchmark")))))))
5169 (delete 'build)))) 11592 (home-page "https://github.com/component/escape-html")
5170 (home-page
5171 "https://github.com/component/escape-html")
5172 (synopsis "Escape string for use in HTML") 11593 (synopsis "Escape string for use in HTML")
5173 (description "Escape string for use in HTML") 11594 (description "Escape string for use in HTML")
5174 (license license:expat))) 11595 (license license:expat)))
@@ -5177,24 +11598,32 @@
5177 (package 11598 (package
5178 (name "node-etag") 11599 (name "node-etag")
5179 (version "1.8.1") 11600 (version "1.8.1")
5180 (source 11601 (source (origin
5181 (origin 11602 (method url-fetch)
5182 (method url-fetch) 11603 (uri "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz")
5183 (uri "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz") 11604 (sha256
5184 (sha256 11605 (base32
5185 (base32 11606 "1bqgznlsrqcmxnhmnqkhwzcrqfaalxmfxzly1ikaplkkm5w6ragn"))))
5186 "1bqgznlsrqcmxnhmnqkhwzcrqfaalxmfxzly1ikaplkkm5w6ragn")))) 11607 (build-system node-build-system)
5187 (build-system node-build-system) 11608 (arguments
5188 (arguments 11609 '(#:tests? #f
5189 `(#:tests? 11610 #:phases (modify-phases %standard-phases
5190 #f 11611 (delete 'build)
5191 #:phases 11612 (add-after 'patch-dependencies 'delete-dev-dependencies
5192 (modify-phases 11613 (lambda _
5193 %standard-phases 11614 (delete-dependencies '("beautify-benchmark" "benchmark"
5194 (delete 'configure) 11615 "eslint"
5195 (delete 'build)))) 11616 "eslint-config-standard"
5196 (home-page 11617 "eslint-plugin-import"
5197 "https://github.com/jshttp/etag#readme") 11618 "eslint-plugin-markdown"
11619 "eslint-plugin-node"
11620 "eslint-plugin-promise"
11621 "eslint-plugin-standard"
11622 "istanbul"
11623 "mocha"
11624 "safe-buffer"
11625 "seedrandom")))))))
11626 (home-page "https://github.com/jshttp/etag#readme")
5198 (synopsis "Create simple HTTP ETags") 11627 (synopsis "Create simple HTTP ETags")
5199 (description "Create simple HTTP ETags") 11628 (description "Create simple HTTP ETags")
5200 (license license:expat))) 11629 (license license:expat)))
@@ -5203,137 +11632,131 @@
5203 (package 11632 (package
5204 (name "node-fresh") 11633 (name "node-fresh")
5205 (version "0.5.2") 11634 (version "0.5.2")
5206 (source 11635 (source (origin
5207 (origin 11636 (method url-fetch)
5208 (method url-fetch) 11637 (uri "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz")
5209 (uri "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz") 11638 (sha256
5210 (sha256 11639 (base32
5211 (base32 11640 "0k44badcxkwy202kz404w078l660f65jaijg473xv38ay3wpdri5"))))
5212 "0k44badcxkwy202kz404w078l660f65jaijg473xv38ay3wpdri5")))) 11641 (build-system node-build-system)
5213 (build-system node-build-system) 11642 (arguments
5214 (arguments 11643 '(#:tests? #f
5215 `(#:tests? 11644 #:phases (modify-phases %standard-phases
5216 #f 11645 (delete 'build)
5217 #:phases 11646 (add-after 'patch-dependencies 'delete-dev-dependencies
5218 (modify-phases 11647 (lambda _
5219 %standard-phases 11648 (delete-dependencies '("beautify-benchmark" "benchmark"
5220 (delete 'configure) 11649 "eslint"
5221 (delete 'build)))) 11650 "eslint-config-standard"
5222 (home-page 11651 "eslint-plugin-import"
5223 "https://github.com/jshttp/fresh#readme") 11652 "eslint-plugin-markdown"
11653 "eslint-plugin-node"
11654 "eslint-plugin-promise"
11655 "eslint-plugin-standard"
11656 "istanbul"
11657 "mocha")))))))
11658 (home-page "https://github.com/jshttp/fresh#readme")
5224 (synopsis "HTTP response freshness testing") 11659 (synopsis "HTTP response freshness testing")
5225 (description "HTTP response freshness testing") 11660 (description "HTTP response freshness testing")
5226 (license license:expat))) 11661 (license license:expat)))
5227 11662
5228(define-public node-depd-1.1.2 11663(define-public node-depd-2.0.0
5229 (package 11664 (package
5230 (name "node-depd") 11665 (name "node-depd")
5231 (version "1.1.2") 11666 (version "2.0.0")
5232 (source 11667 (source (origin
5233 (origin 11668 (method url-fetch)
5234 (method url-fetch) 11669 (uri "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz")
5235 (uri "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz") 11670 (sha256
5236 (sha256 11671 (base32
5237 (base32 11672 "19yl2piwl0ci2lvn5j5sk0z4nbldj6apsrqds3ql2d09aqh8m998"))))
5238 "07645ghplj1qy8z6g3vz1855xjy2j217q90bib3m44c2npk6pql3")))) 11673 (build-system node-build-system)
5239 (build-system node-build-system) 11674 (arguments
5240 (arguments 11675 '(#:tests? #f
5241 `(#:tests? 11676 #:phases (modify-phases %standard-phases
5242 #f 11677 (delete 'build)
5243 #:phases 11678 (add-after 'patch-dependencies 'delete-dev-dependencies
5244 (modify-phases 11679 (lambda _
5245 %standard-phases 11680 (delete-dependencies '("benchmark" "beautify-benchmark"
5246 (delete 'configure) 11681 "eslint"
5247 (delete 'build)))) 11682 "eslint-config-standard"
5248 (home-page 11683 "eslint-plugin-import"
5249 "https://github.com/dougwilson/nodejs-depd#readme") 11684 "eslint-plugin-markdown"
11685 "eslint-plugin-node"
11686 "eslint-plugin-promise"
11687 "eslint-plugin-standard"
11688 "istanbul"
11689 "mocha"
11690 "safe-buffer"
11691 "uid-safe")))))))
11692 (home-page "https://github.com/dougwilson/nodejs-depd#readme")
5250 (synopsis "Deprecate all the things") 11693 (synopsis "Deprecate all the things")
5251 (description "Deprecate all the things") 11694 (description "Deprecate all the things")
5252 (license license:expat))) 11695 (license license:expat)))
5253 11696
5254(define-public node-statuses-1.5.0 11697(define-public node-toidentifier-1.0.1
5255 (package
5256 (name "node-statuses")
5257 (version "1.5.0")
5258 (source
5259 (origin
5260 (method url-fetch)
5261 (uri "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz")
5262 (sha256
5263 (base32
5264 "0g6ydb53k8b5rhll1z667riba9454ipkl4hgkc5vzc62l4h10g18"))))
5265 (build-system node-build-system)
5266 (arguments
5267 `(#:tests?
5268 #f
5269 #:phases
5270 (modify-phases
5271 %standard-phases
5272 (delete 'configure)
5273 (delete 'build))))
5274 (home-page
5275 "https://github.com/jshttp/statuses#readme")
5276 (synopsis "HTTP status utility")
5277 (description "HTTP status utility")
5278 (license license:expat)))
5279
5280(define-public node-toidentifier-1.0.0
5281 (package 11698 (package
5282 (name "node-toidentifier") 11699 (name "node-toidentifier")
5283 (version "1.0.0") 11700 (version "1.0.1")
5284 (source 11701 (source (origin
5285 (origin 11702 (method url-fetch)
5286 (method url-fetch) 11703 (uri
5287 (uri "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz") 11704 "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz")
5288 (sha256 11705 (sha256
5289 (base32 11706 (base32
5290 "1i9qgk5k664mfvc7zj80mz5af7py2vh0zmr8yrvbb0fkzj1d3vba")))) 11707 "021fp42m51qbqbqabwhxky8bkfkkwza65lqiz7d2gqwd91vwqvqq"))))
5291 (build-system node-build-system) 11708 (build-system node-build-system)
5292 (arguments 11709 (arguments
5293 `(#:tests? 11710 '(#:tests? #f
5294 #f 11711 #:phases (modify-phases %standard-phases
5295 #:phases 11712 (delete 'build)
5296 (modify-phases 11713 (add-after 'patch-dependencies 'delete-dev-dependencies
5297 %standard-phases 11714 (lambda _
5298 (delete 'configure) 11715 (delete-dependencies '("eslint" "eslint-config-standard"
5299 (delete 'build)))) 11716 "eslint-plugin-import"
5300 (home-page 11717 "eslint-plugin-markdown"
5301 "https://github.com/component/toidentifier#readme") 11718 "eslint-plugin-node"
5302 (synopsis 11719 "eslint-plugin-promise"
5303 "Convert a string of words to a JavaScript identifier") 11720 "eslint-plugin-standard"
5304 (description 11721 "mocha"
5305 "Convert a string of words to a JavaScript identifier") 11722 "nyc")))))))
5306 (license license:expat))) 11723 (home-page "https://github.com/component/toidentifier#readme")
5307 11724 (synopsis "Convert a string of words to a JavaScript identifier")
5308(define-public node-http-errors-1.7.3 11725 (description "Convert a string of words to a JavaScript identifier")
11726 (license license:expat)))
11727
11728(define-public node-http-errors-2.0.0
5309 (package 11729 (package
5310 (name "node-http-errors") 11730 (name "node-http-errors")
5311 (version "1.7.3") 11731 (version "2.0.0")
5312 (source 11732 (source (origin
5313 (origin 11733 (method url-fetch)
5314 (method url-fetch) 11734 (uri
5315 (uri "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz") 11735 "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz")
5316 (sha256 11736 (sha256
5317 (base32 11737 (base32
5318 "049zp0b5kbqrvpmccy5msd8qcrslxjrq4nj5hsmbabhbbm3ys6y9")))) 11738 "1dypd936i09cvjyxx338da0nimbm4cqi2rrxhjch3ix2wmwx6ky1"))))
5319 (build-system node-build-system) 11739 (build-system node-build-system)
5320 (arguments 11740 (arguments
5321 `(#:tests? 11741 '(#:tests? #f
5322 #f 11742 #:phases (modify-phases %standard-phases
5323 #:phases 11743 (delete 'build)
5324 (modify-phases 11744 (add-after 'patch-dependencies 'delete-dev-dependencies
5325 %standard-phases 11745 (lambda _
5326 (delete 'configure) 11746 (delete-dependencies '("eslint" "eslint-config-standard"
5327 (delete 'build)))) 11747 "eslint-plugin-import"
5328 (inputs 11748 "eslint-plugin-markdown"
5329 `(("node-toidentifier" ,node-toidentifier-1.0.0) 11749 "eslint-plugin-node"
5330 ("node-statuses" ,node-statuses-1.5.0) 11750 "eslint-plugin-promise"
5331 ("node-setprototypeof" 11751 "eslint-plugin-standard"
5332 ,node-setprototypeof-1.1.1) 11752 "mocha"
5333 ("node-inherits" ,node-inherits-2.0.4) 11753 "nyc")))))))
5334 ("node-depd" ,node-depd-1.1.2))) 11754 (inputs `(("node-toidentifier" ,node-toidentifier-1.0.1)
5335 (home-page 11755 ("node-statuses" ,node-statuses-2.0.1)
5336 "https://github.com/jshttp/http-errors#readme") 11756 ("node-setprototypeof" ,node-setprototypeof-1.2.0)
11757 ("node-inherits" ,node-inherits-2.0.4)
11758 ("node-depd" ,node-depd-2.0.0)))
11759 (home-page "https://github.com/jshttp/http-errors#readme")
5337 (synopsis "Create HTTP error objects") 11760 (synopsis "Create HTTP error objects")
5338 (description "Create HTTP error objects") 11761 (description "Create HTTP error objects")
5339 (license license:expat))) 11762 (license license:expat)))
@@ -5342,320 +11765,355 @@
5342 (package 11765 (package
5343 (name "node-mime") 11766 (name "node-mime")
5344 (version "1.6.0") 11767 (version "1.6.0")
5345 (source 11768 (source (origin
5346 (origin 11769 (method url-fetch)
5347 (method url-fetch) 11770 (uri "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz")
5348 (uri "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz") 11771 (sha256
5349 (sha256 11772 (base32
5350 (base32 11773 "16iprk4h6nh780mvfv0p93k3yvj7jrq2qs92niaw6yk11qwi0li1"))))
5351 "16iprk4h6nh780mvfv0p93k3yvj7jrq2qs92niaw6yk11qwi0li1")))) 11774 (build-system node-build-system)
5352 (build-system node-build-system) 11775 (arguments
5353 (arguments 11776 '(#:tests? #f
5354 `(#:tests? 11777 #:modules
5355 #f 11778 ((guix build node-build-system)
5356 #:phases 11779 (srfi srfi-1)
5357 (modify-phases 11780 (ice-9 match)
5358 %standard-phases 11781 (guix build utils))
5359 (delete 'configure) 11782 #:phases (modify-phases %standard-phases
5360 (delete 'build)))) 11783 (delete 'build)
5361 (home-page 11784(add-before 'configure 'avoid-prepare-scripts
5362 "https://github.com/broofa/node-mime#readme") 11785 (lambda _
5363 (synopsis 11786 ;; We need to remove the prepare script from "package.json", as
5364 "A comprehensive library for mime-type mapping") 11787 ;; it would try to use the build environment and would block the
5365 (description 11788 ;; automatic building by other packages making use of node-acorn.
5366 "A comprehensive library for mime-type mapping") 11789 ;; TODO: Add utility function
5367 (license license:expat))) 11790 (with-atomic-json-file-replacement "package.json"
5368 11791 (match-lambda
5369(define-public node-ms-2.1.1 11792 (('@ . pkg-meta-alist)
5370 (package 11793 (cons '@ (map (match-lambda
5371 (name "node-ms") 11794 (("scripts" @ . scripts-alist)
5372 (version "2.1.1") 11795 `("scripts" @ ,@(filter (match-lambda
5373 (source 11796 (("prepare" . _)
5374 (origin 11797 #f)
5375 (method url-fetch) 11798 (_
5376 (uri "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz") 11799 #t))
5377 (sha256 11800 scripts-alist)))
5378 (base32 11801 (other other))
5379 "1yhq64xslz82p9jamzh15q5ii8s8d5jy5p75qajb5q4q4k1gfmhv")))) 11802 pkg-meta-alist)))))))
5380 (build-system node-build-system) 11803 (add-after 'patch-dependencies 'delete-dev-dependencies
5381 (arguments 11804 (lambda _
5382 `(#:tests? 11805 (delete-dependencies '("github-release-notes" "mime-db"
5383 #f 11806 "mime-score")))))))
5384 #:phases 11807 (home-page "https://github.com/broofa/node-mime#readme")
5385 (modify-phases 11808 (synopsis "A comprehensive library for mime-type mapping")
5386 %standard-phases 11809 (description "A comprehensive library for mime-type mapping")
5387 (delete 'configure)
5388 (delete 'build))))
5389 (home-page "https://github.com/zeit/ms#readme")
5390 (synopsis "Tiny millisecond conversion utility")
5391 (description
5392 "Tiny millisecond conversion utility")
5393 (license license:expat))) 11810 (license license:expat)))
5394 11811
5395(define-public node-ee-first-1.1.1 11812(define-public node-ee-first-1.1.1
5396 (package 11813 (package
5397 (name "node-ee-first") 11814 (name "node-ee-first")
5398 (version "1.1.1") 11815 (version "1.1.1")
5399 (source 11816 (source (origin
5400 (origin 11817 (method url-fetch)
5401 (method url-fetch) 11818 (uri "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz")
5402 (uri "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz") 11819 (sha256
5403 (sha256 11820 (base32
5404 (base32 11821 "175r500n567a04qmswzw5hkgdnika3dvn63n284jlar2gvmyhj2i"))))
5405 "175r500n567a04qmswzw5hkgdnika3dvn63n284jlar2gvmyhj2i")))) 11822 (build-system node-build-system)
5406 (build-system node-build-system) 11823 (arguments
5407 (arguments 11824 '(#:tests? #f
5408 `(#:tests? 11825 #:phases (modify-phases %standard-phases
5409 #f 11826 (delete 'build)
5410 #:phases 11827 (add-after 'patch-dependencies 'delete-dev-dependencies
5411 (modify-phases 11828 (lambda _
5412 %standard-phases 11829 (delete-dependencies '("istanbul" "mocha")))))))
5413 (delete 'configure) 11830 (home-page "https://github.com/jonathanong/ee-first")
5414 (delete 'build)))) 11831 (synopsis "return the first event in a set of ee/event pairs")
5415 (home-page 11832 (description "return the first event in a set of ee/event pairs")
5416 "https://github.com/jonathanong/ee-first")
5417 (synopsis
5418 "return the first event in a set of ee/event pairs")
5419 (description
5420 "return the first event in a set of ee/event pairs")
5421 (license license:expat))) 11833 (license license:expat)))
5422 11834
5423(define-public node-on-finished-2.3.0 11835(define-public node-on-finished-2.4.1
5424 (package 11836 (package
5425 (name "node-on-finished") 11837 (name "node-on-finished")
5426 (version "2.3.0") 11838 (version "2.4.1")
5427 (source 11839 (source (origin
5428 (origin 11840 (method url-fetch)
5429 (method url-fetch) 11841 (uri
5430 (uri "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz") 11842 "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz")
5431 (sha256 11843 (sha256
5432 (base32 11844 (base32
5433 "0sv1js3fk0ag46ln3a7cwhannacqxyl694zkb1qy53fdd630sr59")))) 11845 "02mxvpahgv07xaih7lmpn8wic9v4jph3fir0qpd6qf4w0kql4kgn"))))
5434 (build-system node-build-system) 11846 (build-system node-build-system)
5435 (arguments 11847 (arguments
5436 `(#:tests? 11848 '(#:tests? #f
5437 #f 11849 #:phases (modify-phases %standard-phases
5438 #:phases 11850 (delete 'build)
5439 (modify-phases 11851 (add-after 'patch-dependencies 'delete-dev-dependencies
5440 %standard-phases 11852 (lambda _
5441 (delete 'configure) 11853 (delete-dependencies '("eslint" "eslint-config-standard"
5442 (delete 'build)))) 11854 "eslint-plugin-import"
5443 (inputs 11855 "eslint-plugin-markdown"
5444 `(("node-ee-first" ,node-ee-first-1.1.1))) 11856 "eslint-plugin-node"
5445 (home-page 11857 "eslint-plugin-promise"
5446 "https://github.com/jshttp/on-finished") 11858 "eslint-plugin-standard"
5447 (synopsis 11859 "mocha"
5448 "Execute a callback when a request closes, finishes, or errors") 11860 "nyc")))))))
5449 (description 11861 (inputs `(("node-ee-first" ,node-ee-first-1.1.1)))
5450 "Execute a callback when a request closes, finishes, or errors") 11862 (home-page "https://github.com/jshttp/on-finished#readme")
11863 (synopsis "Execute a callback when a request closes, finishes, or errors")
11864 (description
11865 "Execute a callback when a request closes, finishes, or errors")
5451 (license license:expat))) 11866 (license license:expat)))
5452 11867
5453(define-public node-range-parser-1.2.1 11868(define-public node-range-parser-1.2.1
5454 (package 11869 (package
5455 (name "node-range-parser") 11870 (name "node-range-parser")
5456 (version "1.2.1") 11871 (version "1.2.1")
5457 (source 11872 (source (origin
5458 (origin 11873 (method url-fetch)
5459 (method url-fetch) 11874 (uri
5460 (uri "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz") 11875 "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz")
5461 (sha256 11876 (sha256
5462 (base32 11877 (base32
5463 "09prs852snwqr9cfcrybm7ysl0z1wka9dh4dwc4v1415cvi6cllh")))) 11878 "09prs852snwqr9cfcrybm7ysl0z1wka9dh4dwc4v1415cvi6cllh"))))
5464 (build-system node-build-system) 11879 (build-system node-build-system)
5465 (arguments 11880 (arguments
5466 `(#:tests? 11881 '(#:tests? #f
5467 #f 11882 #:phases (modify-phases %standard-phases
5468 #:phases 11883 (delete 'build)
5469 (modify-phases 11884 (add-after 'patch-dependencies 'delete-dev-dependencies
5470 %standard-phases 11885 (lambda _
5471 (delete 'configure) 11886 (delete-dependencies '("deep-equal" "eslint"
5472 (delete 'build)))) 11887 "eslint-config-standard"
5473 (home-page 11888 "eslint-plugin-markdown"
5474 "https://github.com/jshttp/range-parser#readme") 11889 "eslint-plugin-import"
11890 "eslint-plugin-node"
11891 "eslint-plugin-promise"
11892 "eslint-plugin-standard"
11893 "mocha"
11894 "nyc")))))))
11895 (home-page "https://github.com/jshttp/range-parser#readme")
5475 (synopsis "Range header field string parser") 11896 (synopsis "Range header field string parser")
5476 (description "Range header field string parser") 11897 (description "Range header field string parser")
5477 (license license:expat))) 11898 (license license:expat)))
5478 11899
5479(define-public node-send-0.17.1 11900(define-public node-send-0.18.0
5480 (package 11901 (package
5481 (name "node-send") 11902 (name "node-send")
5482 (version "0.17.1") 11903 (version "0.18.0")
5483 (source 11904 (source (origin
5484 (origin 11905 (method url-fetch)
5485 (method url-fetch) 11906 (uri "https://registry.npmjs.org/send/-/send-0.18.0.tgz")
5486 (uri "https://registry.npmjs.org/send/-/send-0.17.1.tgz") 11907 (sha256
5487 (sha256 11908 (base32
5488 (base32 11909 "050vp002qp8myzhjkb1fjafvhb3hz59pgli5k5kc8z7d16gp56pn"))))
5489 "08ds2hx476lhafl051sh03kaiilkariwa209d02gbcm6xygb8m6k")))) 11910 (build-system node-build-system)
5490 (build-system node-build-system) 11911 (arguments
5491 (arguments 11912 '(#:tests? #f
5492 `(#:tests? 11913 #:phases (modify-phases %standard-phases
5493 #f 11914 (delete 'build)
5494 #:phases 11915 (add-after 'patch-dependencies 'delete-dev-dependencies
5495 (modify-phases 11916 (lambda _
5496 %standard-phases 11917 (delete-dependencies '("after" "eslint"
5497 (delete 'configure) 11918 "eslint-config-standard"
5498 (delete 'build)))) 11919 "eslint-plugin-import"
5499 (inputs 11920 "eslint-plugin-markdown"
5500 `(("node-statuses" ,node-statuses-1.5.0) 11921 "eslint-plugin-node"
5501 ("node-range-parser" ,node-range-parser-1.2.1) 11922 "eslint-plugin-promise"
5502 ("node-on-finished" ,node-on-finished-2.3.0) 11923 "eslint-plugin-standard"
5503 ("node-ms" ,node-ms-2.1.1) 11924 "mocha"
5504 ("node-mime" ,node-mime-1.6.0) 11925 "nyc"
5505 ("node-http-errors" ,node-http-errors-1.7.3) 11926 "supertest")))))))
5506 ("node-fresh" ,node-fresh-0.5.2) 11927 (inputs `(("node-statuses" ,node-statuses-2.0.1)
5507 ("node-etag" ,node-etag-1.8.1) 11928 ("node-range-parser" ,node-range-parser-1.2.1)
5508 ("node-escape-html" ,node-escape-html-1.0.3) 11929 ("node-on-finished" ,node-on-finished-2.4.1)
5509 ("node-encodeurl" ,node-encodeurl-1.0.2) 11930 ("node-ms" ,node-ms-2.1.3)
5510 ("node-destroy" ,node-destroy-1.0.4) 11931 ("node-mime" ,node-mime-1.6.0)
5511 ("node-depd" ,node-depd-1.1.2) 11932 ("node-http-errors" ,node-http-errors-2.0.0)
5512 ("node-debug" ,node-debug-2.6.9))) 11933 ("node-fresh" ,node-fresh-0.5.2)
5513 (home-page 11934 ("node-etag" ,node-etag-1.8.1)
5514 "https://github.com/pillarjs/send#readme") 11935 ("node-escape-html" ,node-escape-html-1.0.3)
5515 (synopsis 11936 ("node-encodeurl" ,node-encodeurl-1.0.2)
5516 "Better streaming static file server with Range and conditional-GET support") 11937 ("node-destroy" ,node-destroy-1.2.0)
5517 (description 11938 ("node-depd" ,node-depd-2.0.0)
5518 "Better streaming static file server with Range and conditional-GET support") 11939 ("node-debug" ,node-debug-2.6.9)))
5519 (license license:expat))) 11940 (home-page "https://github.com/pillarjs/send#readme")
5520 11941 (synopsis
5521(define-public node-serve-static-1.14.1 11942 "Better streaming static file server with Range and conditional-GET support")
11943 (description
11944 "Better streaming static file server with Range and conditional-GET support")
11945 (license license:expat)))
11946
11947(define-public node-serve-static-1.15.0
5522 (package 11948 (package
5523 (name "node-serve-static") 11949 (name "node-serve-static")
5524 (version "1.14.1") 11950 (version "1.15.0")
5525 (source 11951 (source (origin
5526 (origin 11952 (method url-fetch)
5527 (method url-fetch) 11953 (uri
5528 (uri "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz") 11954 "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz")
5529 (sha256 11955 (sha256
5530 (base32 11956 (base32
5531 "1pajpv2acavzq2bpj3rggrvik00k9wyav2fvg5yvmvgmwy3kbxh1")))) 11957 "0nwn940rkg5dpdd3s5mq0lglg9s68j9wmibidl3c88gx47psdxs9"))))
5532 (build-system node-build-system) 11958 (build-system node-build-system)
5533 (arguments 11959 (arguments
5534 `(#:tests? 11960 '(#:tests? #f
5535 #f 11961 #:phases (modify-phases %standard-phases
5536 #:phases 11962 (delete 'build)
5537 (modify-phases 11963 (add-after 'patch-dependencies 'delete-dev-dependencies
5538 %standard-phases 11964 (lambda _
5539 (delete 'configure) 11965 (delete-dependencies '("eslint" "eslint-config-standard"
5540 (delete 'build)))) 11966 "eslint-plugin-import"
5541 (inputs 11967 "eslint-plugin-markdown"
5542 `(("node-send" ,node-send-0.17.1) 11968 "eslint-plugin-node"
5543 ("node-parseurl" ,node-parseurl-1.3.3) 11969 "eslint-plugin-promise"
5544 ("node-escape-html" ,node-escape-html-1.0.3) 11970 "eslint-plugin-standard"
5545 ("node-encodeurl" ,node-encodeurl-1.0.2))) 11971 "mocha"
5546 (home-page 11972 "nyc"
5547 "https://github.com/expressjs/serve-static#readme") 11973 "safe-buffer"
11974 "supertest")))))))
11975 (inputs `(("node-send" ,node-send-0.18.0)
11976 ("node-parseurl" ,node-parseurl-1.3.3)
11977 ("node-escape-html" ,node-escape-html-1.0.3)
11978 ("node-encodeurl" ,node-encodeurl-1.0.2)))
11979 (home-page "https://github.com/expressjs/serve-static#readme")
5548 (synopsis "Serve static files") 11980 (synopsis "Serve static files")
5549 (description "Serve static files") 11981 (description "Serve static files")
5550 (license license:expat))) 11982 (license license:expat)))
5551 11983
5552(define-public node-setprototypeof-1.1.1 11984(define-public node-setprototypeof-1.2.0
5553 (package 11985 (package
5554 (name "node-setprototypeof") 11986 (name "node-setprototypeof")
5555 (version "1.1.1") 11987 (version "1.2.0")
5556 (source 11988 (source (origin
5557 (origin 11989 (method url-fetch)
5558 (method url-fetch) 11990 (uri
5559 (uri "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz") 11991 "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz")
5560 (sha256 11992 (sha256
5561 (base32 11993 (base32
5562 "13366ghwjzarwl9i537f1n6gkp85lggvngw81p6mpjy06hc52vx5")))) 11994 "1qnzx8bl8h1vga28pf59mjd52wvh1hf3ma18d4zpwmijlrpcqfy8"))))
5563 (build-system node-build-system) 11995 (build-system node-build-system)
5564 (arguments 11996 (arguments
5565 `(#:tests? 11997 '(#:tests? #f
5566 #f 11998 #:phases (modify-phases %standard-phases
5567 #:phases 11999 (delete 'build)
5568 (modify-phases 12000 (add-after 'patch-dependencies 'delete-dev-dependencies
5569 %standard-phases 12001 (lambda _
5570 (delete 'configure) 12002 (delete-dependencies '("mocha" "standard")))))))
5571 (delete 'build)))) 12003 (home-page "https://github.com/wesleytodd/setprototypeof")
5572 (home-page 12004 (synopsis "A small polyfill for Object.setprototypeof")
5573 "https://github.com/wesleytodd/setprototypeof") 12005 (description "A small polyfill for Object.setprototypeof")
5574 (synopsis
5575 "A small polyfill for Object.setprototypeof")
5576 (description
5577 "A small polyfill for Object.setprototypeof")
5578 (license license:isc))) 12006 (license license:isc)))
5579 12007
12008(define-public node-statuses-2.0.1
12009 (package
12010 (name "node-statuses")
12011 (version "2.0.1")
12012 (source (origin
12013 (method url-fetch)
12014 (uri "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz")
12015 (sha256
12016 (base32
12017 "0nig6ygf53sj8vcqvbcwrzm4ln986rcz16kn5qjv1y4s9m1l164i"))))
12018 (build-system node-build-system)
12019 (arguments
12020 '(#:tests? #f
12021 #:phases (modify-phases %standard-phases
12022 (delete 'build)
12023 (add-after 'patch-dependencies 'delete-dev-dependencies
12024 (lambda _
12025 (delete-dependencies '("csv-parse" "eslint"
12026 "eslint-config-standard"
12027 "eslint-plugin-import"
12028 "eslint-plugin-markdown"
12029 "eslint-plugin-node"
12030 "eslint-plugin-promise"
12031 "eslint-plugin-standard"
12032 "mocha"
12033 "nyc"
12034 "raw-body"
12035 "stream-to-array")))))))
12036 (home-page "https://github.com/jshttp/statuses#readme")
12037 (synopsis "HTTP status utility")
12038 (description "HTTP status utility")
12039 (license license:expat)))
12040
5580(define-public node-media-typer-0.3.0 12041(define-public node-media-typer-0.3.0
5581 (package 12042 (package
5582 (name "node-media-typer") 12043 (name "node-media-typer")
5583 (version "0.3.0") 12044 (version "0.3.0")
5584 (source 12045 (source (origin
5585 (origin 12046 (method url-fetch)
5586 (method url-fetch) 12047 (uri
5587 (uri "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz") 12048 "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz")
5588 (sha256 12049 (sha256
5589 (base32 12050 (base32
5590 "07vlmddn91j0bbrxr2br320dnkxw96dp7hqmvidj5ydl84adiyid")))) 12051 "07vlmddn91j0bbrxr2br320dnkxw96dp7hqmvidj5ydl84adiyid"))))
5591 (build-system node-build-system) 12052 (build-system node-build-system)
5592 (arguments 12053 (arguments
5593 `(#:tests? 12054 '(#:tests? #f
5594 #f 12055 #:phases (modify-phases %standard-phases
5595 #:phases 12056 (delete 'build)
5596 (modify-phases 12057 (add-after 'patch-dependencies 'delete-dev-dependencies
5597 %standard-phases 12058 (lambda _
5598 (delete 'configure) 12059 (delete-dependencies '("istanbul" "mocha" "should")))))))
5599 (delete 'build)))) 12060 (home-page "https://github.com/jshttp/media-typer")
5600 (home-page 12061 (synopsis "Simple RFC 6838 media type parser and formatter")
5601 "https://github.com/jshttp/media-typer") 12062 (description "Simple RFC 6838 media type parser and formatter")
5602 (synopsis
5603 "Simple RFC 6838 media type parser and formatter")
5604 (description
5605 "Simple RFC 6838 media type parser and formatter")
5606 (license license:expat))) 12063 (license license:expat)))
5607 12064
5608(define-public node-mime-types-2.1.28 12065(define-public node-type-is-1.6.18
5609 (package 12066 (package
5610 (name "node-mime-types") 12067 (name "node-type-is")
5611 (version "2.1.28") 12068 (version "1.6.18")
5612 (source 12069 (source (origin
5613 (origin 12070 (method url-fetch)
5614 (method url-fetch) 12071 (uri "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz")
5615 (uri "https://registry.npmjs.org/mime-types/-/mime-types-2.1.28.tgz") 12072 (sha256
5616 (sha256 12073 (base32
5617 (base32 12074 "1bn3gl9vd67cq3wl2cvq686zskl2xx6lxz5kp9w47qc06f2vbnll"))))
5618 "0c60ajxcvvxmbgvpqzihhcj2bqa4dp75snvr9nnja8ri7wkhvr8w")))) 12075 (build-system node-build-system)
5619 (build-system node-build-system) 12076 (arguments
5620 (arguments 12077 '(#:tests? #f
5621 `(#:tests? 12078 #:phases (modify-phases %standard-phases
5622 #f 12079 (delete 'build)
5623 #:phases 12080 (add-after 'patch-dependencies 'delete-dev-dependencies
5624 (modify-phases 12081 (lambda _
5625 %standard-phases 12082 (delete-dependencies '("eslint" "eslint-config-standard"
5626 (delete 'configure) 12083 "eslint-plugin-import"
5627 (delete 'build)))) 12084 "eslint-plugin-markdown"
5628 (inputs `(("node-mime-db" ,node-mime-db-1.45.0))) 12085 "eslint-plugin-node"
5629 (home-page 12086 "eslint-plugin-promise"
5630 "https://github.com/jshttp/mime-types#readme") 12087 "eslint-plugin-standard"
5631 (synopsis 12088 "mocha"
5632 "The ultimate javascript content-type utility.") 12089 "nyc")))))))
5633 (description 12090 (inputs `(("node-mime-types" ,node-mime-types-2.1.35)
5634 "The ultimate javascript content-type utility.") 12091 ("node-media-typer" ,node-media-typer-0.3.0)))
12092 (home-page "https://github.com/jshttp/type-is#readme")
12093 (synopsis "Infer the content-type of a request.")
12094 (description "Infer the content-type of a request.")
5635 (license license:expat))) 12095 (license license:expat)))
5636 12096
5637(define-public node-utils-merge-1.0.1 12097(define-public node-utils-merge-1.0.1
5638 (package 12098 (package
5639 (name "node-utils-merge") 12099 (name "node-utils-merge")
5640 (version "1.0.1") 12100 (version "1.0.1")
5641 (source 12101 (source (origin
5642 (origin 12102 (method url-fetch)
5643 (method url-fetch) 12103 (uri
5644 (uri "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz") 12104 "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz")
5645 (sha256 12105 (sha256
5646 (base32 12106 (base32
5647 "0djhmrfzxpdhscg4pkgnsd39cddpwpkkw1w2f8mp2xfsxn7mvnfy")))) 12107 "0djhmrfzxpdhscg4pkgnsd39cddpwpkkw1w2f8mp2xfsxn7mvnfy"))))
5648 (build-system node-build-system) 12108 (build-system node-build-system)
5649 (arguments 12109 (arguments
5650 `(#:tests? 12110 '(#:tests? #f
5651 #f 12111 #:phases (modify-phases %standard-phases
5652 #:phases 12112 (delete 'build)
5653 (modify-phases 12113 (add-after 'patch-dependencies 'delete-dev-dependencies
5654 %standard-phases 12114 (lambda _
5655 (delete 'configure) 12115 (delete-dependencies '("make-node" "mocha" "chai")))))))
5656 (delete 'build)))) 12116 (home-page "https://github.com/jaredhanson/utils-merge#readme")
5657 (home-page
5658 "https://github.com/jaredhanson/utils-merge#readme")
5659 (synopsis "merge() utility function") 12117 (synopsis "merge() utility function")
5660 (description "merge() utility function") 12118 (description "merge() utility function")
5661 (license license:expat))) 12119 (license license:expat)))
@@ -5664,113 +12122,198 @@
5664 (package 12122 (package
5665 (name "node-vary") 12123 (name "node-vary")
5666 (version "1.1.2") 12124 (version "1.1.2")
5667 (source 12125 (source (origin
5668 (origin 12126 (method url-fetch)
5669 (method url-fetch) 12127 (uri "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz")
5670 (uri "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz") 12128 (sha256
5671 (sha256 12129 (base32
5672 (base32 12130 "0wbf4kmfyzc23dc0vjcmymkd1ks50z5gvv23lkkkayipf438cy3k"))))
5673 "0wbf4kmfyzc23dc0vjcmymkd1ks50z5gvv23lkkkayipf438cy3k")))) 12131 (build-system node-build-system)
5674 (build-system node-build-system) 12132 (arguments
5675 (arguments 12133 '(#:tests? #f
5676 `(#:tests? 12134 #:phases (modify-phases %standard-phases
5677 #f 12135 (delete 'build)
5678 #:phases 12136 (add-after 'patch-dependencies 'delete-dev-dependencies
5679 (modify-phases 12137 (lambda _
5680 %standard-phases 12138 (delete-dependencies '("beautify-benchmark" "benchmark"
5681 (delete 'configure) 12139 "eslint"
5682 (delete 'build)))) 12140 "eslint-config-standard"
5683 (home-page 12141 "eslint-plugin-import"
5684 "https://github.com/jshttp/vary#readme") 12142 "eslint-plugin-markdown"
12143 "eslint-plugin-node"
12144 "eslint-plugin-promise"
12145 "eslint-plugin-standard"
12146 "istanbul"
12147 "mocha"
12148 "supertest")))))))
12149 (home-page "https://github.com/jshttp/vary#readme")
5685 (synopsis "Manipulate the HTTP Vary header") 12150 (synopsis "Manipulate the HTTP Vary header")
5686 (description "Manipulate the HTTP Vary header") 12151 (description "Manipulate the HTTP Vary header")
5687 (license license:expat))) 12152 (license license:expat)))
5688 12153
5689(define-public node-express-4.17.1 12154(define-public node-express-4.18.2
5690 (package 12155 (package
5691 (name "node-express") 12156 (name "node-express")
5692 (version "4.17.1") 12157 (version "4.18.2")
5693 (source 12158 (source (origin
5694 (origin 12159 (method url-fetch)
5695 (method url-fetch) 12160 (uri "https://registry.npmjs.org/express/-/express-4.18.2.tgz")
5696 (uri "https://registry.npmjs.org/express/-/express-4.17.1.tgz") 12161 (sha256
5697 (sha256 12162 (base32
5698 (base32 12163 "0zn3j5gwif18gh0zqj70ag6zdkrarvdhjrr5crcvs9mkgycnjjla"))))
5699 "1a82maaz62wcw1dsv863ikjp6gpyxka0b1g2sldnvxg3qi8va016")))) 12164 (build-system node-build-system)
5700 (build-system node-build-system) 12165 (arguments
5701 (arguments 12166 '(#:tests? #f
5702 `(#:tests? 12167 #:phases (modify-phases %standard-phases
5703 #f 12168 (delete 'build)
5704 #:phases 12169 (add-after 'patch-dependencies 'delete-dev-dependencies
5705 (modify-phases 12170 (lambda _
5706 %standard-phases 12171 (delete-dependencies '("after" "connect-redis"
5707 (delete 'configure) 12172 "cookie-parser"
5708 (delete 'build)))) 12173 "cookie-session"
5709 (inputs 12174 "ejs"
5710 `(("node-vary" ,node-vary-1.1.2) 12175 "eslint"
5711 ("node-utils-merge" ,node-utils-merge-1.0.1) 12176 "express-session"
5712 ("node-type-is" ,node-type-is-1.6.18) 12177 "hbs"
5713 ("node-statuses" ,node-statuses-1.5.0) 12178 "marked"
5714 ("node-setprototypeof" 12179 "method-override"
5715 ,node-setprototypeof-1.1.1) 12180 "mocha"
5716 ("node-serve-static" ,node-serve-static-1.14.1) 12181 "morgan"
5717 ("node-send" ,node-send-0.17.1) 12182 "multiparty"
5718 ("node-safe-buffer" ,node-safe-buffer-5.1.2) 12183 "nyc"
5719 ("node-range-parser" ,node-range-parser-1.2.1) 12184 "pbkdf2-password"
5720 ("node-qs" ,node-qs-6.7.0) 12185 "supertest"
5721 ("node-proxy-addr" ,node-proxy-addr-2.0.6) 12186 "vhost")))))))
5722 ("node-path-to-regexp" 12187 (inputs `(("node-vary" ,node-vary-1.1.2)
5723 ,node-path-to-regexp-0.1.7) 12188 ("node-utils-merge" ,node-utils-merge-1.0.1)
5724 ("node-parseurl" ,node-parseurl-1.3.3) 12189 ("node-type-is" ,node-type-is-1.6.18)
5725 ("node-on-finished" ,node-on-finished-2.3.0) 12190 ("node-statuses" ,node-statuses-2.0.1)
5726 ("node-methods" ,node-methods-1.1.2) 12191 ("node-setprototypeof" ,node-setprototypeof-1.2.0)
5727 ("node-merge-descriptors" 12192 ("node-serve-static" ,node-serve-static-1.15.0)
5728 ,node-merge-descriptors-1.0.1) 12193 ("node-send" ,node-send-0.18.0)
5729 ("node-fresh" ,node-fresh-0.5.2) 12194 ("node-safe-buffer" ,node-safe-buffer-5.2.1)
5730 ("node-finalhandler" ,node-finalhandler-1.1.2) 12195 ("node-range-parser" ,node-range-parser-1.2.1)
5731 ("node-etag" ,node-etag-1.8.1) 12196 ("node-qs" ,node-qs-6.11.0)
5732 ("node-escape-html" ,node-escape-html-1.0.3) 12197 ("node-proxy-addr" ,node-proxy-addr-2.0.7)
5733 ("node-encodeurl" ,node-encodeurl-1.0.2) 12198 ("node-path-to-regexp" ,node-path-to-regexp-0.1.7)
5734 ("node-depd" ,node-depd-1.1.2) 12199 ("node-parseurl" ,node-parseurl-1.3.3)
5735 ("node-debug" ,node-debug-2.6.9) 12200 ("node-on-finished" ,node-on-finished-2.4.1)
5736 ("node-cookie-signature" 12201 ("node-methods" ,node-methods-1.1.2)
5737 ,node-cookie-signature-1.0.6) 12202 ("node-merge-descriptors" ,node-merge-descriptors-1.0.1)
5738 ("node-cookie" ,node-cookie-0.4.0) 12203 ("node-http-errors" ,node-http-errors-2.0.0)
5739 ("node-content-type" ,node-content-type-1.0.4) 12204 ("node-fresh" ,node-fresh-0.5.2)
5740 ("node-content-disposition" 12205 ("node-finalhandler" ,node-finalhandler-1.2.0)
5741 ,node-content-disposition-0.5.3) 12206 ("node-etag" ,node-etag-1.8.1)
5742 ("node-body-parser" ,node-body-parser-1.19.0) 12207 ("node-escape-html" ,node-escape-html-1.0.3)
5743 ("node-array-flatten" ,node-array-flatten-1.1.1) 12208 ("node-encodeurl" ,node-encodeurl-1.0.2)
5744 ("node-accepts" ,node-accepts-1.3.7))) 12209 ("node-depd" ,node-depd-2.0.0)
12210 ("node-debug" ,node-debug-2.6.9)
12211 ("node-cookie-signature" ,node-cookie-signature-1.0.6)
12212 ("node-cookie" ,node-cookie-0.5.0)
12213 ("node-content-type" ,node-content-type-1.0.5)
12214 ("node-content-disposition" ,node-content-disposition-0.5.4)
12215 ("node-body-parser" ,node-body-parser-1.20.1)
12216 ("node-array-flatten" ,node-array-flatten-1.1.1)
12217 ("node-accepts" ,node-accepts-1.3.8)))
5745 (home-page "http://expressjs.com/") 12218 (home-page "http://expressjs.com/")
5746 (synopsis 12219 (synopsis "Fast, unopinionated, minimalist web framework")
5747 "Fast, unopinionated, minimalist web framework") 12220 (description "Fast, unopinionated, minimalist web framework")
12221 (license license:expat)))
12222
12223(define-public node-javascript-stringify-1.6.0
12224 (package
12225 (name "node-javascript-stringify")
12226 (version "1.6.0")
12227 (source (origin
12228 (method url-fetch)
12229 (uri
12230 "https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-1.6.0.tgz")
12231 (sha256
12232 (base32
12233 "0g2ph2sskxdczc623g7m2988x0j9hz1byymbzkg188pzakn8qkjf"))))
12234 (build-system node-build-system)
12235 (arguments
12236 '(#:tests? #f
12237 #:phases (modify-phases %standard-phases
12238 (delete 'build)
12239 (add-after 'patch-dependencies 'delete-dev-dependencies
12240 (lambda _
12241 (delete-dependencies '("chai" "istanbul" "mocha")))))))
12242 (home-page "https://github.com/blakeembrey/javascript-stringify#readme")
12243 (synopsis "Stringify is to `eval` as `JSON.stringify` is to `JSON.parse`")
5748 (description 12244 (description
5749 "Fast, unopinionated, minimalist web framework") 12245 "Stringify is to `eval` as `JSON.stringify` is to `JSON.parse`")
5750 (license license:expat))) 12246 (license license:expat)))
5751 12247
12248(define-public node-inspector-gadget-1.0.0
12249 (package
12250 (name "node-inspector-gadget")
12251 (version "1.0.0")
12252 (source (origin
12253 (method url-fetch)
12254 (uri
12255 "https://registry.npmjs.org/inspector-gadget/-/inspector-gadget-1.0.0.tgz")
12256 (sha256
12257 (base32
12258 "0v8dxzlq2hrbz5g5vh4dhhsqhrj2na27a9jc75mlpqi0373cgi9f"))))
12259 (build-system node-build-system)
12260 (arguments
12261 '(#:tests? #f
12262 #:phases (modify-phases %standard-phases
12263 (delete 'build))))
12264 (inputs `(("node-javascript-stringify" ,node-javascript-stringify-1.6.0)))
12265 (home-page "https://github.com/fliphub/fliphub#readme")
12266 (synopsis
12267 "preconfigured nodejs util for inspecting, and customizing inspecting")
12268 (description
12269 "preconfigured nodejs util for inspecting, and customizing inspecting")
12270 (license #f)))
12271
5752(define-public node-chain-able-1.0.1 12272(define-public node-chain-able-1.0.1
5753 (package 12273 (package
5754 (name "node-chain-able") 12274 (name "node-chain-able")
5755 (version "1.0.1") 12275 (version "1.0.1")
5756 (source 12276 (source (origin
5757 (origin 12277 (method url-fetch)
5758 (method url-fetch) 12278 (uri
5759 (uri "https://registry.npmjs.org/chain-able/-/chain-able-1.0.1.tgz") 12279 "https://registry.npmjs.org/chain-able/-/chain-able-1.0.1.tgz")
5760 (sha256 12280 (sha256
5761 (base32 12281 (base32
5762 "085qmxbrkf71bn4xslrj099yz8wb9k9ciq6vb1kk86d3zmnh67py")))) 12282 "085qmxbrkf71bn4xslrj099yz8wb9k9ciq6vb1kk86d3zmnh67py"))))
5763 (build-system node-build-system) 12283 (build-system node-build-system)
5764 (arguments 12284 (arguments
5765 `(#:tests? 12285 '(#:tests? #f
5766 #f 12286 #:modules
5767 #:phases 12287 ((guix build node-build-system)
5768 (modify-phases 12288 (srfi srfi-1)
5769 %standard-phases 12289 (ice-9 match)
5770 (delete 'configure) 12290 (guix build utils))
5771 (delete 'build)))) 12291 #:phases (modify-phases %standard-phases
5772 (home-page 12292 (delete 'build)
5773 "https://github.com/fluents/chain-able#readme") 12293 ;; XXX: Copied from Guix.
12294 (add-after 'unpack 'add-deps
12295 (lambda _
12296 (with-atomic-json-file-replacement "package.json"
12297 (match-lambda
12298 (('@ . pkg-meta-alist)
12299 (cons '@ (cons '("dependencies" @ ("inspector-gadget" . "^1.0.0"))
12300 pkg-meta-alist)))))))
12301 (add-after 'patch-dependencies 'delete-dev-dependencies
12302 (lambda _
12303 (delete-dependencies '("ava" "babel-cli"
12304 "babel-core"
12305 "babel-jest"
12306 "babel-plugin-transform-flow-strip-types"
12307 "babel-preset-env"
12308 "flow-remove-types"
12309 "fuse-box"
12310 ;; This is a runtime dependency.
12311 ;"inspector-gadget"
12312 "rollup"
12313 "rollup-plugin-commonjs"
12314 "rollup-plugin-node-resolve")))))))
12315 (inputs `(("node-inspector-gadget" ,node-inspector-gadget-1.0.0)))
12316 (home-page "https://github.com/fluents/chain-able#readme")
5774 (synopsis "next level chaining.") 12317 (synopsis "next level chaining.")
5775 (description "next level chaining.") 12318 (description "next level chaining.")
5776 (license license:expat))) 12319 (license license:expat)))
@@ -5779,55 +12322,70 @@
5779 (package 12322 (package
5780 (name "node-fliplog") 12323 (name "node-fliplog")
5781 (version "0.3.13") 12324 (version "0.3.13")
5782 (source 12325 (source (origin
5783 (origin 12326 (method url-fetch)
5784 (method url-fetch) 12327 (uri "https://registry.npmjs.org/fliplog/-/fliplog-0.3.13.tgz")
5785 (uri "https://registry.npmjs.org/fliplog/-/fliplog-0.3.13.tgz") 12328 (sha256
5786 (sha256 12329 (base32
5787 (base32 12330 "16c8f09313gdm9m2jwlakkrb26zr7n8cb2vif3yv25jly1wbdi72"))))
5788 "16c8f09313gdm9m2jwlakkrb26zr7n8cb2vif3yv25jly1wbdi72")))) 12331 (build-system node-build-system)
5789 (build-system node-build-system) 12332 (arguments
5790 (arguments 12333 '(#:tests? #f
5791 `(#:tests? 12334 #:phases (modify-phases %standard-phases
5792 #f 12335 (delete 'build))))
5793 #:phases 12336 (inputs `(("node-chain-able" ,node-chain-able-1.0.1)))
5794 (modify-phases
5795 %standard-phases
5796 (delete 'configure)
5797 (delete 'build))))
5798 (inputs
5799 `(("node-chain-able" ,node-chain-able-1.0.1)))
5800 (home-page "https://github.com/fliphub/fliplog") 12337 (home-page "https://github.com/fliphub/fliplog")
5801 (synopsis 12338 (synopsis
5802 "fluent logging with verbose insight, colors, tables, emoji, filtering, spinners, progress bars, timestamps, capturing, stack traces, clearing, & presets") 12339 "fluent logging with verbose insight, colors, tables, emoji, filtering, spinners, progress bars, timestamps, capturing, stack traces, clearing, & presets")
5803 (description 12340 (description
5804 "fluent logging with verbose insight, colors, tables, emoji, filtering, spinners, progress bars, timestamps, capturing, stack traces, clearing, & presets") 12341 "fluent logging with verbose insight, colors, tables, emoji, filtering, spinners, progress bars, timestamps, capturing, stack traces, clearing, & presets")
5805 (license license:expat))) 12342 (license license:expat)))
5806 12343
12344(define-public node-graceful-fs-4.2.11
12345 (package
12346 (name "node-graceful-fs")
12347 (version "4.2.11")
12348 (source (origin
12349 (method url-fetch)
12350 (uri
12351 "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz")
12352 (sha256
12353 (base32
12354 "1709vla02prpbf34xqsvkqngvsmp5ypnljvg1pcgxrk1l553fq9r"))))
12355 (build-system node-build-system)
12356 (arguments
12357 '(#:tests? #f
12358 #:phases (modify-phases %standard-phases
12359 (delete 'build)
12360 (add-after 'patch-dependencies 'delete-dev-dependencies
12361 (lambda _
12362 (delete-dependencies '("import-fresh" "mkdirp" "rimraf"
12363 "tap")))))))
12364 (home-page "https://github.com/isaacs/node-graceful-fs#readme")
12365 (synopsis "A drop-in replacement for fs, making various improvements.")
12366 (description "A drop-in replacement for fs, making various improvements.")
12367 (license license:isc)))
12368
5807(define-public node-jsonfile-4.0.0 12369(define-public node-jsonfile-4.0.0
5808 (package 12370 (package
5809 (name "node-jsonfile") 12371 (name "node-jsonfile")
5810 (version "4.0.0") 12372 (version "4.0.0")
5811 (source 12373 (source (origin
5812 (origin 12374 (method url-fetch)
5813 (method url-fetch) 12375 (uri "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz")
5814 (uri "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz") 12376 (sha256
5815 (sha256 12377 (base32
5816 (base32 12378 "1s701cy3mlbvgyhhyy2ypqcy064w5990sk8x81gv0200yybrbfaz"))))
5817 "1s701cy3mlbvgyhhyy2ypqcy064w5990sk8x81gv0200yybrbfaz")))) 12379 (build-system node-build-system)
5818 (build-system node-build-system) 12380 (arguments
5819 (arguments 12381 '(#:tests? #f
5820 `(#:tests? 12382 #:phases (modify-phases %standard-phases
5821 #f 12383 (delete 'build)
5822 #:phases 12384 (add-after 'patch-dependencies 'delete-dev-dependencies
5823 (modify-phases 12385 (lambda _
5824 %standard-phases 12386 (delete-dependencies '("mocha" "rimraf" "standard")))))))
5825 (delete 'configure) 12387 (inputs `(("node-graceful-fs" ,node-graceful-fs-4.2.11)))
5826 (delete 'build)))) 12388 (home-page "https://github.com/jprichardson/node-jsonfile#readme")
5827 (inputs
5828 `(("node-graceful-fs" ,node-graceful-fs-4.2.6)))
5829 (home-page
5830 "https://github.com/jprichardson/node-jsonfile#readme")
5831 (synopsis "Easily read/write JSON files.") 12389 (synopsis "Easily read/write JSON files.")
5832 (description "Easily read/write JSON files.") 12390 (description "Easily read/write JSON files.")
5833 (license license:expat))) 12391 (license license:expat)))
@@ -5836,516 +12394,285 @@
5836 (package 12394 (package
5837 (name "node-universalify") 12395 (name "node-universalify")
5838 (version "0.1.2") 12396 (version "0.1.2")
5839 (source 12397 (source (origin
5840 (origin 12398 (method url-fetch)
5841 (method url-fetch) 12399 (uri
5842 (uri "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz") 12400 "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz")
5843 (sha256 12401 (sha256
5844 (base32 12402 (base32
5845 "0lykbpkmvjkjg0sqngrn086rxlyddgjkfnsi22r8hgixxzxb2alc")))) 12403 "0lykbpkmvjkjg0sqngrn086rxlyddgjkfnsi22r8hgixxzxb2alc"))))
5846 (build-system node-build-system) 12404 (build-system node-build-system)
5847 (arguments 12405 (arguments
5848 `(#:tests? 12406 '(#:tests? #f
5849 #f 12407 #:phases (modify-phases %standard-phases
5850 #:phases 12408 (delete 'build)
5851 (modify-phases 12409 (add-after 'patch-dependencies 'delete-dev-dependencies
5852 %standard-phases 12410 (lambda _
5853 (delete 'configure) 12411 (delete-dependencies '("colortape" "coveralls" "nyc"
5854 (delete 'build)))) 12412 "standard" "tape")))))))
5855 (home-page 12413 (home-page "https://github.com/RyanZim/universalify#readme")
5856 "https://github.com/RyanZim/universalify#readme")
5857 (synopsis 12414 (synopsis
5858 "Make a callback- or promise-based function support both promises and callbacks.") 12415 "Make a callback- or promise-based function support both promises and callbacks.")
5859 (description 12416 (description
5860 "Make a callback- or promise-based function support both promises and callbacks.") 12417 "Make a callback- or promise-based function support both promises and callbacks.")
5861 (license license:expat))) 12418 (license license:expat)))
5862 12419
5863(define-public node-fs-extra-7.0.1 12420(define-public node-fs-extra-7.0.1
5864 (package 12421 (package
5865 (name "node-fs-extra") 12422 (name "node-fs-extra")
5866 (version "7.0.1") 12423 (version "7.0.1")
5867 (source 12424 (source (origin
5868 (origin 12425 (method url-fetch)
5869 (method url-fetch) 12426 (uri "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz")
5870 (uri "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz") 12427 (sha256
5871 (sha256 12428 (base32
5872 (base32 12429 "1f08bng4dgkdrwhd977f4xfch9419b7fbwvwwn1qpz3gy4zgja4b"))))
5873 "1f08bng4dgkdrwhd977f4xfch9419b7fbwvwwn1qpz3gy4zgja4b")))) 12430 (build-system node-build-system)
5874 (build-system node-build-system) 12431 (arguments
5875 (arguments 12432 '(#:tests? #f
5876 `(#:tests? 12433 #:phases (modify-phases %standard-phases
5877 #f 12434 (delete 'build)
5878 #:phases 12435 (add-after 'patch-dependencies 'delete-dev-dependencies
5879 (modify-phases 12436 (lambda _
5880 %standard-phases 12437 (delete-dependencies '("coveralls" "istanbul"
5881 (delete 'configure) 12438 "klaw"
5882 (delete 'build)))) 12439 "klaw-sync"
5883 (inputs 12440 "minimist"
5884 `(("node-universalify" ,node-universalify-0.1.2) 12441 "mocha"
5885 ("node-jsonfile" ,node-jsonfile-4.0.0) 12442 "proxyquire"
5886 ("node-graceful-fs" ,node-graceful-fs-4.2.6))) 12443 "read-dir-files"
5887 (home-page 12444 "rimraf"
5888 "https://github.com/jprichardson/node-fs-extra") 12445 "secure-random"
5889 (synopsis 12446 "semver"
5890 "fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as mkdir -p, cp -r, and rm -rf.") 12447 "standard"
5891 (description 12448 "standard-markdown")))))))
5892 "fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as mkdir -p, cp -r, and rm -rf.") 12449 (inputs `(("node-universalify" ,node-universalify-0.1.2)
12450 ("node-jsonfile" ,node-jsonfile-4.0.0)
12451 ("node-graceful-fs" ,node-graceful-fs-4.2.11)))
12452 (home-page "https://github.com/jprichardson/node-fs-extra")
12453 (synopsis
12454 "fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as mkdir -p, cp -r, and rm -rf.")
12455 (description
12456 "fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as mkdir -p, cp -r, and rm -rf.")
5893 (license license:expat))) 12457 (license license:expat)))
5894 12458
5895(define-public node-fuse-concat-with-sourcemaps-1.0.5 12459(define-public node-fuse-concat-with-sourcemaps-1.0.5
5896 (package 12460 (package
5897 (name "node-fuse-concat-with-sourcemaps") 12461 (name "node-fuse-concat-with-sourcemaps")
5898 (version "1.0.5") 12462 (version "1.0.5")
5899 (source 12463 (source (origin
5900 (origin 12464 (method url-fetch)
5901 (method url-fetch) 12465 (uri
5902 (uri "https://registry.npmjs.org/fuse-concat-with-sourcemaps/-/fuse-concat-with-sourcemaps-1.0.5.tgz") 12466 "https://registry.npmjs.org/fuse-concat-with-sourcemaps/-/fuse-concat-with-sourcemaps-1.0.5.tgz")
5903 (sha256 12467 (sha256
5904 (base32 12468 (base32
5905 "1sam6dbh6zv6hgpc9h4vyv15myl28y1n5pzmcgrxzk0jb16chx3k")))) 12469 "1sam6dbh6zv6hgpc9h4vyv15myl28y1n5pzmcgrxzk0jb16chx3k"))))
5906 (build-system node-build-system) 12470 (build-system node-build-system)
5907 (arguments 12471 (arguments
5908 `(#:tests? 12472 '(#:tests? #f
5909 #f 12473 #:phases (modify-phases %standard-phases
5910 #:phases 12474 (delete 'build)
5911 (modify-phases 12475 (add-after 'patch-dependencies 'delete-dev-dependencies
5912 %standard-phases 12476 (lambda _
5913 (delete 'configure) 12477 (delete-dependencies '("jshint" "tape" "istanbul"
5914 (delete 'build)))) 12478 "faucet" "coveralls")))))))
5915 (inputs 12479 (inputs `(("node-source-map" ,node-source-map-0.6.1)))
5916 `(("node-source-map" ,node-source-map-0.6.1))) 12480 (home-page "http://github.com/floridoo/concat-with-sourcemaps")
5917 (home-page 12481 (synopsis
5918 "http://github.com/floridoo/concat-with-sourcemaps") 12482 "Concatenate file contents with a custom separator and generate a source map")
5919 (synopsis 12483 (description
5920 "Concatenate file contents with a custom separator and generate a source map") 12484 "Concatenate file contents with a custom separator and generate a source map")
5921 (description
5922 "Concatenate file contents with a custom separator and generate a source map")
5923 (license license:isc))) 12485 (license license:isc)))
5924 12486
5925(define-public node-getopts-2.2.5 12487(define-public node-getopts-2.3.0
5926 (package 12488 (package
5927 (name "node-getopts") 12489 (name "node-getopts")
5928 (version "2.2.5") 12490 (version "2.3.0")
5929 (source 12491 (source (origin
5930 (origin 12492 (method url-fetch)
5931 (method url-fetch) 12493 (uri "https://registry.npmjs.org/getopts/-/getopts-2.3.0.tgz")
5932 (uri "https://registry.npmjs.org/getopts/-/getopts-2.2.5.tgz") 12494 (sha256
5933 (sha256 12495 (base32
5934 (base32 12496 "0qfb7pyqvg5by55xnznvnbliywgqd4hh6vyaaifn2s1d3as7qnw5"))))
5935 "0w88w8pda6629sfvmfpzxigl001nb7hhx4cmw24jdsi20gfgd1n6")))) 12497 (build-system node-build-system)
5936 (build-system node-build-system) 12498 (arguments
5937 (arguments 12499 '(#:tests? #f
5938 `(#:tests? 12500 #:modules
5939 #f 12501 ((guix build node-build-system)
5940 #:phases 12502 (srfi srfi-1)
5941 (modify-phases 12503 (ice-9 match)
5942 %standard-phases 12504 (guix build utils))
5943 (delete 'configure) 12505 #:phases (modify-phases %standard-phases
5944 (delete 'build)))) 12506 (delete 'build)
5945 (home-page 12507(add-before 'configure 'avoid-prepare-scripts
5946 "https://github.com/jorgebucaran/getopts#readme") 12508 (lambda _
5947 (synopsis "Parse CLI options, better.") 12509 ;; We need to remove the prepare script from "package.json", as
5948 (description "Parse CLI options, better.") 12510 ;; it would try to use the build environment and would block the
12511 ;; automatic building by other packages making use of node-acorn.
12512 ;; TODO: Add utility function
12513 (with-atomic-json-file-replacement "package.json"
12514 (match-lambda
12515 (('@ . pkg-meta-alist)
12516 (cons '@ (map (match-lambda
12517 (("scripts" @ . scripts-alist)
12518 `("scripts" @ ,@(filter (match-lambda
12519 (("prepare" . _)
12520 #f)
12521 (_
12522 #t))
12523 scripts-alist)))
12524 (other other))
12525 pkg-meta-alist)))))))
12526 (add-after 'patch-dependencies 'delete-dev-dependencies
12527 (lambda _
12528 (delete-dependencies '("c8" "twist")))))))
12529 (home-page "https://github.com/jorgebucaran/getopts#readme")
12530 (synopsis "Parse CLI arguments.")
12531 (description "Parse CLI arguments.")
5949 (license license:expat))) 12532 (license license:expat)))
5950 12533
5951(define-public node-fs-realpath-1.0.0
5952 (package
5953 (name "node-fs-realpath")
5954 (version "1.0.0")
5955 (source
5956 (origin
5957 (method url-fetch)
5958 (uri "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz")
5959 (sha256
5960 (base32
5961 "174g5vay9jnd7h5q8hfdw6dnmwl1gdpn4a8sz0ysanhj2f3wp04y"))))
5962 (build-system node-build-system)
5963 (arguments
5964 `(#:tests?
5965 #f
5966 #:phases
5967 (modify-phases
5968 %standard-phases
5969 (delete 'configure)
5970 (delete 'build))))
5971 (home-page
5972 "https://github.com/isaacs/fs.realpath#readme")
5973 (synopsis
5974 "Use node's fs.realpath, but fall back to the JS implementation if the native one fails")
5975 (description
5976 "Use node's fs.realpath, but fall back to the JS implementation if the native one fails")
5977 (license license:isc)))
5978
5979(define-public node-inflight-1.0.6 12534(define-public node-inflight-1.0.6
5980 (package 12535 (package
5981 (name "node-inflight") 12536 (name "node-inflight")
5982 (version "1.0.6") 12537 (version "1.0.6")
5983 (source 12538 (source (origin
5984 (origin 12539 (method url-fetch)
5985 (method url-fetch) 12540 (uri "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz")
5986 (uri "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz") 12541 (sha256
5987 (sha256 12542 (base32
5988 (base32 12543 "16w864087xsh3q7f5gm3754s7bpsb9fq3dhknk9nmbvlk3sxr7ss"))))
5989 "16w864087xsh3q7f5gm3754s7bpsb9fq3dhknk9nmbvlk3sxr7ss")))) 12544 (build-system node-build-system)
5990 (build-system node-build-system) 12545 (arguments
5991 (arguments 12546 '(#:tests? #f
5992 `(#:tests? 12547 #:phases (modify-phases %standard-phases
5993 #f 12548 (delete 'build)
5994 #:phases 12549 (add-after 'patch-dependencies 'delete-dev-dependencies
5995 (modify-phases 12550 (lambda _
5996 %standard-phases 12551 (delete-dependencies '("tap")))))))
5997 (delete 'configure) 12552 (inputs `(("node-wrappy" ,node-wrappy-1.0.2)
5998 (delete 'build)))) 12553 ("node-once" ,node-once-1.4.0)))
5999 (inputs
6000 `(("node-wrappy" ,node-wrappy-1.0.2)
6001 ("node-once" ,node-once-1.4.0)))
6002 (home-page "https://github.com/isaacs/inflight") 12554 (home-page "https://github.com/isaacs/inflight")
6003 (synopsis 12555 (synopsis "Add callbacks to requests in flight to avoid async duplication")
6004 "Add callbacks to requests in flight to avoid async duplication")
6005 (description 12556 (description
6006 "Add callbacks to requests in flight to avoid async duplication") 12557 "Add callbacks to requests in flight to avoid async duplication")
6007 (license license:isc))) 12558 (license license:isc)))
6008 12559
6009(define-public node-balanced-match-1.0.0
6010 (package
6011 (name "node-balanced-match")
6012 (version "1.0.0")
6013 (source
6014 (origin
6015 (method url-fetch)
6016 (uri "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz")
6017 (sha256
6018 (base32
6019 "1bgzp9jp8ws0kdfgq8h6w3qz8cljyzgcrmxypxkgbknk28n615i8"))))
6020 (build-system node-build-system)
6021 (arguments
6022 `(#:tests?
6023 #f
6024 #:phases
6025 (modify-phases
6026 %standard-phases
6027 (delete 'configure)
6028 (delete 'build))))
6029 (home-page
6030 "https://github.com/juliangruber/balanced-match")
6031 (synopsis
6032 "Match balanced character pairs, like \"{\" and \"}\"")
6033 (description
6034 "Match balanced character pairs, like \"{\" and \"}\"")
6035 (license license:expat)))
6036
6037(define-public node-concat-map-0.0.1 12560(define-public node-concat-map-0.0.1
6038 (package 12561 (package
6039 (name "node-concat-map") 12562 (name "node-concat-map")
6040 (version "0.0.1") 12563 (version "0.0.1")
6041 (source 12564 (source (origin
6042 (origin 12565 (method url-fetch)
6043 (method url-fetch) 12566 (uri
6044 (uri "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz") 12567 "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz")
6045 (sha256 12568 (sha256
6046 (base32 12569 (base32
6047 "0qa2zqn9rrr2fqdki44s4s2dk2d8307i4556kv25h06g43b2v41m")))) 12570 "0qa2zqn9rrr2fqdki44s4s2dk2d8307i4556kv25h06g43b2v41m"))))
6048 (build-system node-build-system) 12571 (build-system node-build-system)
6049 (arguments 12572 (arguments
6050 `(#:tests? 12573 '(#:tests? #f
6051 #f 12574 #:phases (modify-phases %standard-phases
6052 #:phases 12575 (delete 'build)
6053 (modify-phases 12576 (add-after 'patch-dependencies 'delete-dev-dependencies
6054 %standard-phases 12577 (lambda _
6055 (delete 'configure) 12578 (delete-dependencies '("tape")))))))
6056 (delete 'build)))) 12579 (home-page "https://github.com/substack/node-concat-map")
6057 (home-page
6058 "https://github.com/substack/node-concat-map")
6059 (synopsis "concatenative mapdashery") 12580 (synopsis "concatenative mapdashery")
6060 (description "concatenative mapdashery") 12581 (description "concatenative mapdashery")
6061 (license license:expat))) 12582 (license license:expat)))
6062 12583
6063(define-public node-brace-expansion-1.1.11 12584(define-public node-minimatch-3.1.2
6064 (package
6065 (name "node-brace-expansion")
6066 (version "1.1.11")
6067 (source
6068 (origin
6069 (method url-fetch)
6070 (uri "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz")
6071 (sha256
6072 (base32
6073 "1nlmjvlwlp88knblnayns0brr7a9m2fynrlwq425lrpb4mcn9gc4"))))
6074 (build-system node-build-system)
6075 (arguments
6076 `(#:tests?
6077 #f
6078 #:phases
6079 (modify-phases
6080 %standard-phases
6081 (delete 'configure)
6082 (delete 'build))))
6083 (inputs
6084 `(("node-concat-map" ,node-concat-map-0.0.1)
6085 ("node-balanced-match"
6086 ,node-balanced-match-1.0.0)))
6087 (home-page
6088 "https://github.com/juliangruber/brace-expansion")
6089 (synopsis
6090 "Brace expansion as known from sh/bash")
6091 (description
6092 "Brace expansion as known from sh/bash")
6093 (license license:expat)))
6094
6095(define-public node-minimatch-3.0.4
6096 (package 12585 (package
6097 (name "node-minimatch") 12586 (name "node-minimatch")
6098 (version "3.0.4") 12587 (version "3.1.2")
6099 (source 12588 (source (origin
6100 (origin 12589 (method url-fetch)
6101 (method url-fetch) 12590 (uri
6102 (uri "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz") 12591 "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz")
6103 (sha256 12592 (sha256
6104 (base32 12593 (base32
6105 "0wgammjc9myx0k0k3n9r9cjnv0r1j33cwqiy2fxx7w5nkgbj8sj2")))) 12594 "0kd3h6q90kvmzzw1v7cc3dr911gjkb9s547cdvfncfqanq84p5hk"))))
6106 (build-system node-build-system) 12595 (build-system node-build-system)
6107 (arguments 12596 (arguments
6108 `(#:tests? 12597 '(#:tests? #f
6109 #f 12598 #:phases (modify-phases %standard-phases
6110 #:phases 12599 (delete 'build)
6111 (modify-phases 12600 (add-after 'patch-dependencies 'delete-dev-dependencies
6112 %standard-phases 12601 (lambda _
6113 (delete 'configure) 12602 (delete-dependencies '("tap")))))))
6114 (delete 'build)))) 12603 (inputs `(("node-brace-expansion" ,node-brace-expansion-1.1.11)))
6115 (inputs 12604 (home-page "https://github.com/isaacs/minimatch#readme")
6116 `(("node-brace-expansion"
6117 ,node-brace-expansion-1.1.11)))
6118 (home-page
6119 "https://github.com/isaacs/minimatch#readme")
6120 (synopsis "a glob matcher in javascript") 12605 (synopsis "a glob matcher in javascript")
6121 (description "a glob matcher in javascript") 12606 (description "a glob matcher in javascript")
6122 (license license:isc))) 12607 (license license:isc)))
6123 12608
6124(define-public node-wrappy-1.0.2
6125 (package
6126 (name "node-wrappy")
6127 (version "1.0.2")
6128 (source
6129 (origin
6130 (method url-fetch)
6131 (uri "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz")
6132 (sha256
6133 (base32
6134 "1yzx63jf27yz0bk0m78vy4y1cqzm113d2mi9h91y3cdpj46p7wxg"))))
6135 (build-system node-build-system)
6136 (arguments
6137 `(#:tests?
6138 #f
6139 #:phases
6140 (modify-phases
6141 %standard-phases
6142 (delete 'configure)
6143 (delete 'build))))
6144 (home-page "https://github.com/npm/wrappy")
6145 (synopsis "Callback wrapping utility")
6146 (description "Callback wrapping utility")
6147 (license license:isc)))
6148
6149(define-public node-once-1.4.0
6150 (package
6151 (name "node-once")
6152 (version "1.4.0")
6153 (source
6154 (origin
6155 (method url-fetch)
6156 (uri "https://registry.npmjs.org/once/-/once-1.4.0.tgz")
6157 (sha256
6158 (base32
6159 "1kygzk36kdcfiqz01dhql2dk75rl256m2vlpigv9iikhlc5lclfg"))))
6160 (build-system node-build-system)
6161 (arguments
6162 `(#:tests?
6163 #f
6164 #:phases
6165 (modify-phases
6166 %standard-phases
6167 (delete 'configure)
6168 (delete 'build))))
6169 (inputs `(("node-wrappy" ,node-wrappy-1.0.2)))
6170 (home-page
6171 "https://github.com/isaacs/once#readme")
6172 (synopsis "Run a function exactly one time")
6173 (description "Run a function exactly one time")
6174 (license license:isc)))
6175
6176(define-public node-path-is-absolute-1.0.1 12609(define-public node-path-is-absolute-1.0.1
6177 (package 12610 (package
6178 (name "node-path-is-absolute") 12611 (name "node-path-is-absolute")
6179 (version "1.0.1") 12612 (version "1.0.1")
6180 (source 12613 (source (origin
6181 (origin 12614 (method url-fetch)
6182 (method url-fetch) 12615 (uri
6183 (uri "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz") 12616 "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz")
6184 (sha256 12617 (sha256
6185 (base32 12618 (base32
6186 "0p7p04xxd8q495qhxmxydyjgzcf762dp1hp2wha2b52n3agp0vbf")))) 12619 "0p7p04xxd8q495qhxmxydyjgzcf762dp1hp2wha2b52n3agp0vbf"))))
6187 (build-system node-build-system) 12620 (build-system node-build-system)
6188 (arguments 12621 (arguments
6189 `(#:tests? 12622 '(#:tests? #f
6190 #f 12623 #:phases (modify-phases %standard-phases
6191 #:phases 12624 (delete 'build)
6192 (modify-phases 12625 (add-after 'patch-dependencies 'delete-dev-dependencies
6193 %standard-phases 12626 (lambda _
6194 (delete 'configure) 12627 (delete-dependencies '("xo")))))))
6195 (delete 'build)))) 12628 (home-page "https://github.com/sindresorhus/path-is-absolute#readme")
6196 (home-page 12629 (synopsis "Node.js 0.12 path.isAbsolute() ponyfill")
6197 "https://github.com/sindresorhus/path-is-absolute#readme") 12630 (description "Node.js 0.12 path.isAbsolute() ponyfill")
6198 (synopsis
6199 "Node.js 0.12 path.isAbsolute() ponyfill")
6200 (description
6201 "Node.js 0.12 path.isAbsolute() ponyfill")
6202 (license license:expat))) 12631 (license license:expat)))
6203 12632
6204(define-public node-glob-7.1.6
6205 (package
6206 (name "node-glob")
6207 (version "7.1.6")
6208 (source
6209 (origin
6210 (method url-fetch)
6211 (uri "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz")
6212 (sha256
6213 (base32
6214 "1hm62p225wxx15k5kw9b5byif2rdi4ivn2a595lfvv26niq53c2l"))))
6215 (build-system node-build-system)
6216 (arguments
6217 `(#:tests?
6218 #f
6219 #:phases
6220 (modify-phases
6221 %standard-phases
6222 (delete 'configure)
6223 (delete 'build))))
6224 (inputs
6225 `(("node-path-is-absolute"
6226 ,node-path-is-absolute-1.0.1)
6227 ("node-once" ,node-once-1.4.0)
6228 ("node-minimatch" ,node-minimatch-3.0.4)
6229 ("node-inherits" ,node-inherits-2.0.4)
6230 ("node-inflight" ,node-inflight-1.0.6)
6231 ("node-fs-realpath" ,node-fs-realpath-1.0.0)))
6232 (home-page
6233 "https://github.com/isaacs/node-glob#readme")
6234 (synopsis "a little globber")
6235 (description "a little globber")
6236 (license license:isc)))
6237
6238(define-public node-ieee754-1.2.1
6239 (package
6240 (name "node-ieee754")
6241 (version "1.2.1")
6242 (source
6243 (origin
6244 (method url-fetch)
6245 (uri "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz")
6246 (sha256
6247 (base32
6248 "1b4xiyr6fmgl05cjgc8fiyfk2jagf7xq2y5rknw9scvy76dlpwcf"))))
6249 (build-system node-build-system)
6250 (arguments
6251 `(#:tests?
6252 #f
6253 #:phases
6254 (modify-phases
6255 %standard-phases
6256 (delete 'configure)
6257 (delete 'build))))
6258 (home-page
6259 "https://github.com/feross/ieee754#readme")
6260 (synopsis
6261 "Read/write IEEE754 floating point numbers from/to a Buffer or array-like object")
6262 (description
6263 "Read/write IEEE754 floating point numbers from/to a Buffer or array-like object")
6264 (license license:bsd-3)))
6265
6266(define-public node-ansi-escapes-3.2.0 12633(define-public node-ansi-escapes-3.2.0
6267 (package 12634 (package
6268 (name "node-ansi-escapes") 12635 (name "node-ansi-escapes")
6269 (version "3.2.0") 12636 (version "3.2.0")
6270 (source 12637 (source (origin
6271 (origin 12638 (method url-fetch)
6272 (method url-fetch) 12639 (uri
6273 (uri "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz") 12640 "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz")
6274 (sha256 12641 (sha256
6275 (base32 12642 (base32
6276 "13ags8v3fa8ijgkhajaqf6nc5s5xhhxkkn9c44npgnwhdcx93v1f")))) 12643 "13ags8v3fa8ijgkhajaqf6nc5s5xhhxkkn9c44npgnwhdcx93v1f"))))
6277 (build-system node-build-system) 12644 (build-system node-build-system)
6278 (arguments 12645 (arguments
6279 `(#:tests? 12646 '(#:tests? #f
6280 #f 12647 #:phases (modify-phases %standard-phases
6281 #:phases 12648 (delete 'build)
6282 (modify-phases 12649 (add-after 'patch-dependencies 'delete-dev-dependencies
6283 %standard-phases 12650 (lambda _
6284 (delete 'configure) 12651 (delete-dependencies '("ava" "xo")))))))
6285 (delete 'build)))) 12652 (home-page "https://github.com/sindresorhus/ansi-escapes#readme")
6286 (home-page 12653 (synopsis "ANSI escape codes for manipulating the terminal")
6287 "https://github.com/sindresorhus/ansi-escapes#readme") 12654 (description "ANSI escape codes for manipulating the terminal")
6288 (synopsis
6289 "ANSI escape codes for manipulating the terminal")
6290 (description
6291 "ANSI escape codes for manipulating the terminal")
6292 (license license:expat)))
6293
6294(define-public node-chalk-2.4.2
6295 (package
6296 (name "node-chalk")
6297 (version "2.4.2")
6298 (source
6299 (origin
6300 (method url-fetch)
6301 (uri "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz")
6302 (sha256
6303 (base32
6304 "0wf6hln5gcjb2n8p18gag6idghl6dfq4if6pxa6s1jqnwr94x26h"))))
6305 (build-system node-build-system)
6306 (arguments
6307 `(#:tests?
6308 #f
6309 #:phases
6310 (modify-phases
6311 %standard-phases
6312 (delete 'configure)
6313 (delete 'build))))
6314 (inputs
6315 `(("node-supports-color"
6316 ,node-supports-color-5.5.0)
6317 ("node-escape-string-regexp"
6318 ,node-escape-string-regexp-1.0.5)
6319 ("node-ansi-styles" ,node-ansi-styles-3.2.1)))
6320 (home-page
6321 "https://github.com/chalk/chalk#readme")
6322 (synopsis "Terminal string styling done right")
6323 (description
6324 "Terminal string styling done right")
6325 (license license:expat))) 12655 (license license:expat)))
6326 12656
6327(define-public node-mimic-fn-1.2.0 12657(define-public node-mimic-fn-1.2.0
6328 (package 12658 (package
6329 (name "node-mimic-fn") 12659 (name "node-mimic-fn")
6330 (version "1.2.0") 12660 (version "1.2.0")
6331 (source 12661 (source (origin
6332 (origin 12662 (method url-fetch)
6333 (method url-fetch) 12663 (uri "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz")
6334 (uri "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz") 12664 (sha256
6335 (sha256 12665 (base32
6336 (base32 12666 "0fkbqr66pl1vzbqph4m8qc0ss1wr7hhnxymdhj32klsxlvbiz4xi"))))
6337 "0fkbqr66pl1vzbqph4m8qc0ss1wr7hhnxymdhj32klsxlvbiz4xi")))) 12667 (build-system node-build-system)
6338 (build-system node-build-system) 12668 (arguments
6339 (arguments 12669 '(#:tests? #f
6340 `(#:tests? 12670 #:phases (modify-phases %standard-phases
6341 #f 12671 (delete 'build)
6342 #:phases 12672 (add-after 'patch-dependencies 'delete-dev-dependencies
6343 (modify-phases 12673 (lambda _
6344 %standard-phases 12674 (delete-dependencies '("ava" "xo")))))))
6345 (delete 'configure) 12675 (home-page "https://github.com/sindresorhus/mimic-fn#readme")
6346 (delete 'build))))
6347 (home-page
6348 "https://github.com/sindresorhus/mimic-fn#readme")
6349 (synopsis "Make a function mimic another one") 12676 (synopsis "Make a function mimic another one")
6350 (description "Make a function mimic another one") 12677 (description "Make a function mimic another one")
6351 (license license:expat))) 12678 (license license:expat)))
@@ -6354,116 +12681,70 @@
6354 (package 12681 (package
6355 (name "node-onetime") 12682 (name "node-onetime")
6356 (version "2.0.1") 12683 (version "2.0.1")
6357 (source 12684 (source (origin
6358 (origin 12685 (method url-fetch)
6359 (method url-fetch) 12686 (uri "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz")
6360 (uri "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz") 12687 (sha256
6361 (sha256 12688 (base32
6362 (base32 12689 "0zmzcy1cg2qdi0g0nvp5picz2gxg6c3xcx7q1rfigfdfyjwha2yr"))))
6363 "0zmzcy1cg2qdi0g0nvp5picz2gxg6c3xcx7q1rfigfdfyjwha2yr")))) 12690 (build-system node-build-system)
6364 (build-system node-build-system) 12691 (arguments
6365 (arguments 12692 '(#:tests? #f
6366 `(#:tests? 12693 #:phases (modify-phases %standard-phases
6367 #f 12694 (delete 'build)
6368 #:phases 12695 (add-after 'patch-dependencies 'delete-dev-dependencies
6369 (modify-phases 12696 (lambda _
6370 %standard-phases 12697 (delete-dependencies '("ava" "xo")))))))
6371 (delete 'configure) 12698 (inputs `(("node-mimic-fn" ,node-mimic-fn-1.2.0)))
6372 (delete 'build)))) 12699 (home-page "https://github.com/sindresorhus/onetime#readme")
6373 (inputs 12700 (synopsis "Ensure a function is only called once")
6374 `(("node-mimic-fn" ,node-mimic-fn-1.2.0))) 12701 (description "Ensure a function is only called once")
6375 (home-page
6376 "https://github.com/sindresorhus/onetime#readme")
6377 (synopsis
6378 "Ensure a function is only called once")
6379 (description
6380 "Ensure a function is only called once")
6381 (license license:expat))) 12702 (license license:expat)))
6382 12703
6383(define-public node-signal-exit-3.0.3
6384 (package
6385 (name "node-signal-exit")
6386 (version "3.0.3")
6387 (source
6388 (origin
6389 (method url-fetch)
6390 (uri "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz")
6391 (sha256
6392 (base32
6393 "1iq1f7vb12fl4i2gjg9qmr9580axaypc0dvhx9xjzj0jssxckvqm"))))
6394 (build-system node-build-system)
6395 (arguments
6396 `(#:tests?
6397 #f
6398 #:phases
6399 (modify-phases
6400 %standard-phases
6401 (delete 'configure)
6402 (delete 'build))))
6403 (home-page
6404 "https://github.com/tapjs/signal-exit")
6405 (synopsis
6406 "when you want to fire an event no matter how a process exits.")
6407 (description
6408 "when you want to fire an event no matter how a process exits.")
6409 (license license:isc)))
6410
6411(define-public node-restore-cursor-2.0.0 12704(define-public node-restore-cursor-2.0.0
6412 (package 12705 (package
6413 (name "node-restore-cursor") 12706 (name "node-restore-cursor")
6414 (version "2.0.0") 12707 (version "2.0.0")
6415 (source 12708 (source (origin
6416 (origin 12709 (method url-fetch)
6417 (method url-fetch) 12710 (uri
6418 (uri "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz") 12711 "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz")
6419 (sha256 12712 (sha256
6420 (base32 12713 (base32
6421 "18vaswnzkljbawjl88k4pr0ww4mqmmc0x8l2xrpfkvyh7jpck2cr")))) 12714 "18vaswnzkljbawjl88k4pr0ww4mqmmc0x8l2xrpfkvyh7jpck2cr"))))
6422 (build-system node-build-system) 12715 (build-system node-build-system)
6423 (arguments 12716 (arguments
6424 `(#:tests? 12717 '(#:tests? #f
6425 #f 12718 #:phases (modify-phases %standard-phases
6426 #:phases 12719 (delete 'build))))
6427 (modify-phases 12720 (inputs `(("node-signal-exit" ,node-signal-exit-3.0.7)
6428 %standard-phases 12721 ("node-onetime" ,node-onetime-2.0.1)))
6429 (delete 'configure) 12722 (home-page "https://github.com/sindresorhus/restore-cursor#readme")
6430 (delete 'build)))) 12723 (synopsis "Gracefully restore the CLI cursor on exit")
6431 (inputs 12724 (description "Gracefully restore the CLI cursor on exit")
6432 `(("node-signal-exit" ,node-signal-exit-3.0.3)
6433 ("node-onetime" ,node-onetime-2.0.1)))
6434 (home-page
6435 "https://github.com/sindresorhus/restore-cursor#readme")
6436 (synopsis
6437 "Gracefully restore the CLI cursor on exit")
6438 (description
6439 "Gracefully restore the CLI cursor on exit")
6440 (license license:expat))) 12725 (license license:expat)))
6441 12726
6442(define-public node-cli-cursor-2.1.0 12727(define-public node-cli-cursor-2.1.0
6443 (package 12728 (package
6444 (name "node-cli-cursor") 12729 (name "node-cli-cursor")
6445 (version "2.1.0") 12730 (version "2.1.0")
6446 (source 12731 (source (origin
6447 (origin 12732 (method url-fetch)
6448 (method url-fetch) 12733 (uri
6449 (uri "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz") 12734 "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz")
6450 (sha256 12735 (sha256
6451 (base32 12736 (base32
6452 "034sp34k37dacwr16x78c86d9xvrb2z14j88mfwv054bzgkgn9pz")))) 12737 "034sp34k37dacwr16x78c86d9xvrb2z14j88mfwv054bzgkgn9pz"))))
6453 (build-system node-build-system) 12738 (build-system node-build-system)
6454 (arguments 12739 (arguments
6455 `(#:tests? 12740 '(#:tests? #f
6456 #f 12741 #:phases (modify-phases %standard-phases
6457 #:phases 12742 (delete 'build)
6458 (modify-phases 12743 (add-after 'patch-dependencies 'delete-dev-dependencies
6459 %standard-phases 12744 (lambda _
6460 (delete 'configure) 12745 (delete-dependencies '("ava" "xo")))))))
6461 (delete 'build)))) 12746 (inputs `(("node-restore-cursor" ,node-restore-cursor-2.0.0)))
6462 (inputs 12747 (home-page "https://github.com/sindresorhus/cli-cursor#readme")
6463 `(("node-restore-cursor"
6464 ,node-restore-cursor-2.0.0)))
6465 (home-page
6466 "https://github.com/sindresorhus/cli-cursor#readme")
6467 (synopsis "Toggle the CLI cursor") 12748 (synopsis "Toggle the CLI cursor")
6468 (description "Toggle the CLI cursor") 12749 (description "Toggle the CLI cursor")
6469 (license license:expat))) 12750 (license license:expat)))
@@ -6472,106 +12753,104 @@
6472 (package 12753 (package
6473 (name "node-cli-width") 12754 (name "node-cli-width")
6474 (version "2.2.1") 12755 (version "2.2.1")
6475 (source 12756 (source (origin
6476 (origin 12757 (method url-fetch)
6477 (method url-fetch) 12758 (uri
6478 (uri "https://registry.npmjs.org/cli-width/-/cli-width-2.2.1.tgz") 12759 "https://registry.npmjs.org/cli-width/-/cli-width-2.2.1.tgz")
6479 (sha256 12760 (sha256
6480 (base32 12761 (base32
6481 "0vkir7lsf8psvqrb3s7zzkq7c5ng1mj2zksxcy46km03gr8ldrgg")))) 12762 "0vkir7lsf8psvqrb3s7zzkq7c5ng1mj2zksxcy46km03gr8ldrgg"))))
6482 (build-system node-build-system) 12763 (build-system node-build-system)
6483 (arguments 12764 (arguments
6484 `(#:tests? 12765 '(#:tests? #f
6485 #f 12766 #:phases (modify-phases %standard-phases
6486 #:phases 12767 (delete 'build)
6487 (modify-phases 12768 (add-after 'patch-dependencies 'delete-dev-dependencies
6488 %standard-phases 12769 (lambda _
6489 (delete 'configure) 12770 (delete-dependencies '("coveralls" "nyc"
6490 (delete 'build)))) 12771 "standard-version" "tap-spec"
6491 (home-page 12772 "tape")))))))
6492 "https://github.com/knownasilya/cli-width") 12773 (home-page "https://github.com/knownasilya/cli-width")
6493 (synopsis 12774 (synopsis
6494 "Get stdout window width, with two fallbacks, tty and then a default.") 12775 "Get stdout window width, with two fallbacks, tty and then a default.")
6495 (description 12776 (description
6496 "Get stdout window width, with two fallbacks, tty and then a default.") 12777 "Get stdout window width, with two fallbacks, tty and then a default.")
6497 (license license:isc))) 12778 (license license:isc)))
6498 12779
6499(define-public node-chardet-0.4.2 12780(define-public node-chardet-0.4.2
6500 (package 12781 (package
6501 (name "node-chardet") 12782 (name "node-chardet")
6502 (version "0.4.2") 12783 (version "0.4.2")
6503 (source 12784 (source (origin
6504 (origin 12785 (method url-fetch)
6505 (method url-fetch) 12786 (uri "https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz")
6506 (uri "https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz") 12787 (sha256
6507 (sha256 12788 (base32
6508 (base32 12789 "1p2mq4rv3vkwd9k8ipadambn1jw7jzf7fxcrvg16fm3d6slsk7sf"))))
6509 "1p2mq4rv3vkwd9k8ipadambn1jw7jzf7fxcrvg16fm3d6slsk7sf")))) 12790 (build-system node-build-system)
6510 (build-system node-build-system) 12791 (arguments
6511 (arguments 12792 '(#:tests? #f
6512 `(#:tests? 12793 #:phases (modify-phases %standard-phases
6513 #f 12794 (delete 'build)
6514 #:phases 12795 (add-after 'patch-dependencies 'delete-dev-dependencies
6515 (modify-phases 12796 (lambda _
6516 %standard-phases 12797 (delete-dependencies '("github-publish-release" "mocha")))))))
6517 (delete 'configure) 12798 (home-page "https://github.com/runk/node-chardet")
6518 (delete 'build))))
6519 (home-page
6520 "https://github.com/runk/node-chardet")
6521 (synopsis "Character detector") 12799 (synopsis "Character detector")
6522 (description "Character detector") 12800 (description "Character detector")
6523 (license license:expat))) 12801 (license license:expat)))
6524 12802
6525(define-public node-safer-buffer-2.1.2 12803(define-public node-iconv-lite-0.4.24
6526 (package 12804 (package
6527 (name "node-safer-buffer") 12805 (name "node-iconv-lite")
6528 (version "2.1.2") 12806 (version "0.4.24")
6529 (source 12807 (source (origin
6530 (origin 12808 (method url-fetch)
6531 (method url-fetch) 12809 (uri
6532 (uri "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz") 12810 "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz")
6533 (sha256 12811 (sha256
6534 (base32 12812 (base32
6535 "1cx383s7vchfac8jlg3mnb820hkgcvhcpfn9w4f0g61vmrjjz0bq")))) 12813 "0da6ff7dlx6lfhdafsd9sv0h09sicpfakms8bqylrm4f17r68v2p"))))
6536 (build-system node-build-system) 12814 (build-system node-build-system)
6537 (arguments 12815 (arguments
6538 `(#:tests? 12816 '(#:tests? #f
6539 #f 12817 #:phases (modify-phases %standard-phases
6540 #:phases 12818 (delete 'build)
6541 (modify-phases 12819 (add-after 'patch-dependencies 'delete-dev-dependencies
6542 %standard-phases 12820 (lambda _
6543 (delete 'configure) 12821 (delete-dependencies '("mocha" "request"
6544 (delete 'build)))) 12822 "unorm"
6545 (home-page 12823 "errto"
6546 "https://github.com/ChALkeR/safer-buffer#readme") 12824 "async"
6547 (synopsis 12825 "istanbul"
6548 "Modern Buffer API polyfill without footguns") 12826 "semver"
6549 (description 12827 "iconv")))))))
6550 "Modern Buffer API polyfill without footguns") 12828 (inputs `(("node-safer-buffer" ,node-safer-buffer-2.1.2)))
12829 (home-page "https://github.com/ashtuchkin/iconv-lite")
12830 (synopsis "Convert character encodings in pure javascript.")
12831 (description "Convert character encodings in pure javascript.")
6551 (license license:expat))) 12832 (license license:expat)))
6552 12833
6553(define-public node-os-tmpdir-1.0.2 12834(define-public node-os-tmpdir-1.0.2
6554 (package 12835 (package
6555 (name "node-os-tmpdir") 12836 (name "node-os-tmpdir")
6556 (version "1.0.2") 12837 (version "1.0.2")
6557 (source 12838 (source (origin
6558 (origin 12839 (method url-fetch)
6559 (method url-fetch) 12840 (uri
6560 (uri "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz") 12841 "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz")
6561 (sha256 12842 (sha256
6562 (base32 12843 (base32
6563 "12ddjb45wq0swr2159wiaxl2balnli8127if7sc89h3psz125rqk")))) 12844 "12ddjb45wq0swr2159wiaxl2balnli8127if7sc89h3psz125rqk"))))
6564 (build-system node-build-system) 12845 (build-system node-build-system)
6565 (arguments 12846 (arguments
6566 `(#:tests? 12847 '(#:tests? #f
6567 #f 12848 #:phases (modify-phases %standard-phases
6568 #:phases 12849 (delete 'build)
6569 (modify-phases 12850 (add-after 'patch-dependencies 'delete-dev-dependencies
6570 %standard-phases 12851 (lambda _
6571 (delete 'configure) 12852 (delete-dependencies '("ava" "xo")))))))
6572 (delete 'build)))) 12853 (home-page "https://github.com/sindresorhus/os-tmpdir#readme")
6573 (home-page
6574 "https://github.com/sindresorhus/os-tmpdir#readme")
6575 (synopsis "Node.js os.tmpdir() ponyfill") 12854 (synopsis "Node.js os.tmpdir() ponyfill")
6576 (description "Node.js os.tmpdir() ponyfill") 12855 (description "Node.js os.tmpdir() ponyfill")
6577 (license license:expat))) 12856 (license license:expat)))
@@ -6580,113 +12859,96 @@
6580 (package 12859 (package
6581 (name "node-tmp") 12860 (name "node-tmp")
6582 (version "0.0.33") 12861 (version "0.0.33")
6583 (source 12862 (source (origin
6584 (origin 12863 (method url-fetch)
6585 (method url-fetch) 12864 (uri "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz")
6586 (uri "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz") 12865 (sha256
6587 (sha256 12866 (base32
6588 (base32 12867 "1ifn24mp4ds8yx9i79739gsdsj5ml6vzx8v3w5vg0m74dig22fyj"))))
6589 "1ifn24mp4ds8yx9i79739gsdsj5ml6vzx8v3w5vg0m74dig22fyj")))) 12868 (build-system node-build-system)
6590 (build-system node-build-system) 12869 (arguments
6591 (arguments 12870 '(#:tests? #f
6592 `(#:tests? 12871 #:phases (modify-phases %standard-phases
6593 #f 12872 (delete 'build)
6594 #:phases 12873 (add-after 'patch-dependencies 'delete-dev-dependencies
6595 (modify-phases 12874 (lambda _
6596 %standard-phases 12875 (delete-dependencies '("vows")))))))
6597 (delete 'configure) 12876 (inputs `(("node-os-tmpdir" ,node-os-tmpdir-1.0.2)))
6598 (delete 'build))))
6599 (inputs
6600 `(("node-os-tmpdir" ,node-os-tmpdir-1.0.2)))
6601 (home-page "http://github.com/raszi/node-tmp") 12877 (home-page "http://github.com/raszi/node-tmp")
6602 (synopsis "Temporary file and directory creator") 12878 (synopsis "Temporary file and directory creator")
6603 (description 12879 (description "Temporary file and directory creator")
6604 "Temporary file and directory creator")
6605 (license license:expat))) 12880 (license license:expat)))
6606 12881
6607(define-public node-external-editor-2.2.0 12882(define-public node-external-editor-2.2.0
6608 (package 12883 (package
6609 (name "node-external-editor") 12884 (name "node-external-editor")
6610 (version "2.2.0") 12885 (version "2.2.0")
6611 (source 12886 (source (origin
6612 (origin 12887 (method url-fetch)
6613 (method url-fetch) 12888 (uri
6614 (uri "https://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz") 12889 "https://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz")
6615 (sha256 12890 (sha256
6616 (base32 12891 (base32
6617 "0l3g4am7l1li9aznhc82wfkan4qcq8lxm2y5lqfmi0vzmfj0jiii")))) 12892 "0l3g4am7l1li9aznhc82wfkan4qcq8lxm2y5lqfmi0vzmfj0jiii"))))
6618 (build-system node-build-system) 12893 (build-system node-build-system)
6619 (arguments 12894 (arguments
6620 `(#:tests? 12895 '(#:tests? #f
6621 #f 12896 #:phases (modify-phases %standard-phases
6622 #:phases 12897 (delete 'build)
6623 (modify-phases 12898 (add-after 'patch-dependencies 'delete-dev-dependencies
6624 %standard-phases 12899 (lambda _
6625 (delete 'configure) 12900 (delete-dependencies '("chai" "coffee-script"
6626 (delete 'build)))) 12901 "coffeelint" "mocha")))))))
6627 (inputs 12902 (inputs `(("node-tmp" ,node-tmp-0.0.33)
6628 `(("node-tmp" ,node-tmp-0.0.33) 12903 ("node-iconv-lite" ,node-iconv-lite-0.4.24)
6629 ("node-iconv-lite" ,node-iconv-lite-0.4.24) 12904 ("node-chardet" ,node-chardet-0.4.2)))
6630 ("node-chardet" ,node-chardet-0.4.2))) 12905 (home-page "https://github.com/mrkmg/node-external-editor#readme")
6631 (home-page
6632 "https://github.com/mrkmg/node-external-editor#readme")
6633 (synopsis 12906 (synopsis
6634 "Edit a string with the users preferred text editor using $VISUAL or $ENVIRONMENT") 12907 "Edit a string with the users preferred text editor using $VISUAL or $ENVIRONMENT")
6635 (description 12908 (description
6636 "Edit a string with the users preferred text editor using $VISUAL or $ENVIRONMENT") 12909 "Edit a string with the users preferred text editor using $VISUAL or $ENVIRONMENT")
6637 (license license:expat))) 12910 (license license:expat)))
6638 12911
6639(define-public node-figures-2.0.0 12912(define-public node-figures-2.0.0
6640 (package 12913 (package
6641 (name "node-figures") 12914 (name "node-figures")
6642 (version "2.0.0") 12915 (version "2.0.0")
6643 (source 12916 (source (origin
6644 (origin 12917 (method url-fetch)
6645 (method url-fetch) 12918 (uri "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz")
6646 (uri "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz") 12919 (sha256
6647 (sha256 12920 (base32
6648 (base32 12921 "1xyyajzjnv409rhscns6s5cvg519awj445x7cpx7v8g31pqirk5s"))))
6649 "1xyyajzjnv409rhscns6s5cvg519awj445x7cpx7v8g31pqirk5s")))) 12922 (build-system node-build-system)
6650 (build-system node-build-system) 12923 (arguments
6651 (arguments 12924 '(#:tests? #f
6652 `(#:tests? 12925 #:phases (modify-phases %standard-phases
6653 #f 12926 (delete 'build)
6654 #:phases 12927 (add-after 'patch-dependencies 'delete-dev-dependencies
6655 (modify-phases 12928 (lambda _
6656 %standard-phases 12929 (delete-dependencies '("ava" "markdown-table"
6657 (delete 'configure) 12930 "require-uncached" "xo")))))))
6658 (delete 'build)))) 12931 (inputs `(("node-escape-string-regexp" ,node-escape-string-regexp-1.0.5)))
6659 (inputs 12932 (home-page "https://github.com/sindresorhus/figures#readme")
6660 `(("node-escape-string-regexp" 12933 (synopsis "Unicode symbols with Windows CMD fallbacks")
6661 ,node-escape-string-regexp-1.0.5))) 12934 (description "Unicode symbols with Windows CMD fallbacks")
6662 (home-page
6663 "https://github.com/sindresorhus/figures#readme")
6664 (synopsis
6665 "Unicode symbols with Windows CMD fallbacks")
6666 (description
6667 "Unicode symbols with Windows CMD fallbacks")
6668 (license license:expat))) 12935 (license license:expat)))
6669 12936
6670(define-public node-lodash-4.17.20 12937(define-public node-lodash-4.17.21
6671 (package 12938 (package
6672 (name "node-lodash") 12939 (name "node-lodash")
6673 (version "4.17.20") 12940 (version "4.17.21")
6674 (source 12941 (source (origin
6675 (origin 12942 (method url-fetch)
6676 (method url-fetch) 12943 (uri "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz")
6677 (uri "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz") 12944 (sha256
6678 (sha256 12945 (base32
6679 (base32 12946 "017qragyfl5ifajdx48lvz46wr0jc1llikgvc2fhqakhwp4pl23a"))))
6680 "1qpjahj6j8l9sag75f9sxfl85r6ab8f7v8w5axv9319wzim8ranj")))) 12947 (build-system node-build-system)
6681 (build-system node-build-system) 12948 (arguments
6682 (arguments 12949 '(#:tests? #f
6683 `(#:tests? 12950 #:phases (modify-phases %standard-phases
6684 #f 12951 (delete 'build))))
6685 #:phases
6686 (modify-phases
6687 %standard-phases
6688 (delete 'configure)
6689 (delete 'build))))
6690 (home-page "https://lodash.com/") 12952 (home-page "https://lodash.com/")
6691 (synopsis "Lodash modular utilities.") 12953 (synopsis "Lodash modular utilities.")
6692 (description "Lodash modular utilities.") 12954 (description "Lodash modular utilities.")
@@ -6696,227 +12958,198 @@
6696 (package 12958 (package
6697 (name "node-mute-stream") 12959 (name "node-mute-stream")
6698 (version "0.0.7") 12960 (version "0.0.7")
6699 (source 12961 (source (origin
6700 (origin 12962 (method url-fetch)
6701 (method url-fetch) 12963 (uri
6702 (uri "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz") 12964 "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz")
6703 (sha256 12965 (sha256
6704 (base32 12966 (base32
6705 "1mzb26ahrc1p99gqhbfdigigl473yjjpi1q9qpnjhqz24dzi0mvg")))) 12967 "1mzb26ahrc1p99gqhbfdigigl473yjjpi1q9qpnjhqz24dzi0mvg"))))
6706 (build-system node-build-system) 12968 (build-system node-build-system)
6707 (arguments 12969 (arguments
6708 `(#:tests? 12970 '(#:tests? #f
6709 #f 12971 #:phases (modify-phases %standard-phases
6710 #:phases 12972 (delete 'build)
6711 (modify-phases 12973 (add-after 'patch-dependencies 'delete-dev-dependencies
6712 %standard-phases 12974 (lambda _
6713 (delete 'configure) 12975 (delete-dependencies '("tap")))))))
6714 (delete 'build)))) 12976 (home-page "https://github.com/isaacs/mute-stream#readme")
6715 (home-page 12977 (synopsis "Bytes go in, but they don't come out (when muted).")
6716 "https://github.com/isaacs/mute-stream#readme") 12978 (description "Bytes go in, but they don't come out (when muted).")
6717 (synopsis
6718 "Bytes go in, but they don't come out (when muted).")
6719 (description
6720 "Bytes go in, but they don't come out (when muted).")
6721 (license license:isc))) 12979 (license license:isc)))
6722 12980
6723(define-public node-run-async-2.4.1 12981(define-public node-run-async-2.4.1
6724 (package 12982 (package
6725 (name "node-run-async") 12983 (name "node-run-async")
6726 (version "2.4.1") 12984 (version "2.4.1")
6727 (source 12985 (source (origin
6728 (origin 12986 (method url-fetch)
6729 (method url-fetch) 12987 (uri
6730 (uri "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz") 12988 "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz")
6731 (sha256 12989 (sha256
6732 (base32 12990 (base32
6733 "0kwddnvq40f38jzgvz9cxs0jk730nx3gfcdb3xvm7ma05sf3mp0f")))) 12991 "0kwddnvq40f38jzgvz9cxs0jk730nx3gfcdb3xvm7ma05sf3mp0f"))))
6734 (build-system node-build-system) 12992 (build-system node-build-system)
6735 (arguments 12993 (arguments
6736 `(#:tests? 12994 '(#:tests? #f
6737 #f 12995 #:phases (modify-phases %standard-phases
6738 #:phases 12996 (delete 'build)
6739 (modify-phases 12997 (add-after 'patch-dependencies 'delete-dev-dependencies
6740 %standard-phases 12998 (lambda _
6741 (delete 'configure) 12999 (delete-dependencies '("mocha")))))))
6742 (delete 'build)))) 13000 (home-page "https://github.com/SBoudrias/run-async#readme")
6743 (home-page
6744 "https://github.com/SBoudrias/run-async#readme")
6745 (synopsis 13001 (synopsis
6746 "Utility method to run function either synchronously or asynchronously using the common `this.async()` style.") 13002 "Utility method to run function either synchronously or asynchronously using the common `this.async()` style.")
6747 (description 13003 (description
6748 "Utility method to run function either synchronously or asynchronously using the common `this.async()` style.") 13004 "Utility method to run function either synchronously or asynchronously using the common `this.async()` style.")
6749 (license license:expat))) 13005 (license license:expat)))
6750 13006
6751(define-public node-rx-lite-4.0.8 13007(define-public node-rx-lite-4.0.8
6752 (package 13008 (package
6753 (name "node-rx-lite") 13009 (name "node-rx-lite")
6754 (version "4.0.8") 13010 (version "4.0.8")
6755 (source 13011 (source (origin
6756 (origin 13012 (method url-fetch)
6757 (method url-fetch) 13013 (uri "https://registry.npmjs.org/rx-lite/-/rx-lite-4.0.8.tgz")
6758 (uri "https://registry.npmjs.org/rx-lite/-/rx-lite-4.0.8.tgz") 13014 (sha256
6759 (sha256 13015 (base32
6760 (base32 13016 "1w1vdy83nwglrai37qsapwrrixvc5yr490rch6xzkjgcbw0cdpjp"))))
6761 "1w1vdy83nwglrai37qsapwrrixvc5yr490rch6xzkjgcbw0cdpjp")))) 13017 (build-system node-build-system)
6762 (build-system node-build-system) 13018 (arguments
6763 (arguments 13019 '(#:tests? #f
6764 `(#:tests? 13020 #:phases (modify-phases %standard-phases
6765 #f 13021 (delete 'build))))
6766 #:phases 13022 (home-page "https://github.com/Reactive-Extensions/RxJS")
6767 (modify-phases
6768 %standard-phases
6769 (delete 'configure)
6770 (delete 'build))))
6771 (home-page
6772 "https://github.com/Reactive-Extensions/RxJS")
6773 (synopsis 13023 (synopsis
6774 "Lightweight library for composing asynchronous and event-based operations in JavaScript") 13024 "Lightweight library for composing asynchronous and event-based operations in JavaScript")
6775 (description 13025 (description
6776 "Lightweight library for composing asynchronous and event-based operations in JavaScript") 13026 "Lightweight library for composing asynchronous and event-based operations in JavaScript")
6777 (license (license:non-copyleft "unknown")))) 13027 (license #f)))
6778 13028
6779(define-public node-rx-lite-aggregates-4.0.8 13029(define-public node-rx-lite-aggregates-4.0.8
6780 (package 13030 (package
6781 (name "node-rx-lite-aggregates") 13031 (name "node-rx-lite-aggregates")
6782 (version "4.0.8") 13032 (version "4.0.8")
6783 (source 13033 (source (origin
6784 (origin 13034 (method url-fetch)
6785 (method url-fetch) 13035 (uri
6786 (uri "https://registry.npmjs.org/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz") 13036 "https://registry.npmjs.org/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz")
6787 (sha256 13037 (sha256
6788 (base32 13038 (base32
6789 "05z44a4zcwfi2yby9d3ik4msjh23nmpq79py80w6wvzd73iysj4q")))) 13039 "05z44a4zcwfi2yby9d3ik4msjh23nmpq79py80w6wvzd73iysj4q"))))
6790 (build-system node-build-system) 13040 (build-system node-build-system)
6791 (arguments 13041 (arguments
6792 `(#:tests? 13042 '(#:tests? #f
6793 #f 13043 #:phases (modify-phases %standard-phases
6794 #:phases 13044 (delete 'build))))
6795 (modify-phases
6796 %standard-phases
6797 (delete 'configure)
6798 (delete 'build))))
6799 (inputs `(("node-rx-lite" ,node-rx-lite-4.0.8))) 13045 (inputs `(("node-rx-lite" ,node-rx-lite-4.0.8)))
6800 (home-page 13046 (home-page "https://github.com/Reactive-Extensions/RxJS")
6801 "https://github.com/Reactive-Extensions/RxJS")
6802 (synopsis 13047 (synopsis
6803 "Lightweight library with aggregate functions for composing asynchronous and event-based operations in JavaScript") 13048 "Lightweight library with aggregate functions for composing asynchronous and event-based operations in JavaScript")
6804 (description 13049 (description
6805 "Lightweight library with aggregate functions for composing asynchronous and event-based operations in JavaScript") 13050 "Lightweight library with aggregate functions for composing asynchronous and event-based operations in JavaScript")
6806 (license (license:non-copyleft "unknown")))) 13051 (license #f)))
6807 13052
6808(define-public node-is-fullwidth-code-point-2.0.0 13053(define-public node-is-fullwidth-code-point-2.0.0
6809 (package 13054 (package
6810 (name "node-is-fullwidth-code-point") 13055 (name "node-is-fullwidth-code-point")
6811 (version "2.0.0") 13056 (version "2.0.0")
6812 (source 13057 (source (origin
6813 (origin 13058 (method url-fetch)
6814 (method url-fetch) 13059 (uri
6815 (uri "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz") 13060 "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz")
6816 (sha256 13061 (sha256
6817 (base32 13062 (base32
6818 "0sx0mg720hlpxdcg3rpf5ck93bwzkvb5883686v2iwvbxvnx1l2c")))) 13063 "0sx0mg720hlpxdcg3rpf5ck93bwzkvb5883686v2iwvbxvnx1l2c"))))
6819 (build-system node-build-system) 13064 (build-system node-build-system)
6820 (arguments 13065 (arguments
6821 `(#:tests? 13066 '(#:tests? #f
6822 #f 13067 #:phases (modify-phases %standard-phases
6823 #:phases 13068 (delete 'build)
6824 (modify-phases 13069 (add-after 'patch-dependencies 'delete-dev-dependencies
6825 %standard-phases 13070 (lambda _
6826 (delete 'configure) 13071 (delete-dependencies '("ava" "xo")))))))
6827 (delete 'build))))
6828 (home-page 13072 (home-page
6829 "https://github.com/sindresorhus/is-fullwidth-code-point#readme") 13073 "https://github.com/sindresorhus/is-fullwidth-code-point#readme")
6830 (synopsis 13074 (synopsis
6831 "Check if the character represented by a given Unicode code point is fullwidth") 13075 "Check if the character represented by a given Unicode code point is fullwidth")
6832 (description 13076 (description
6833 "Check if the character represented by a given Unicode code point is fullwidth") 13077 "Check if the character represented by a given Unicode code point is fullwidth")
6834 (license license:expat))) 13078 (license license:expat)))
6835 13079
6836(define-public node-string-width-2.1.1 13080(define-public node-string-width-2.1.1
6837 (package 13081 (package
6838 (name "node-string-width") 13082 (name "node-string-width")
6839 (version "2.1.1") 13083 (version "2.1.1")
6840 (source 13084 (source (origin
6841 (origin 13085 (method url-fetch)
6842 (method url-fetch) 13086 (uri
6843 (uri "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz") 13087 "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz")
6844 (sha256 13088 (sha256
6845 (base32 13089 (base32
6846 "0b3rb6pbkyg411hvnzb5v5w2vckasgxvslwwijh0p410x46dqz12")))) 13090 "0b3rb6pbkyg411hvnzb5v5w2vckasgxvslwwijh0p410x46dqz12"))))
6847 (build-system node-build-system) 13091 (build-system node-build-system)
6848 (arguments 13092 (arguments
6849 `(#:tests? 13093 '(#:tests? #f
6850 #f 13094 #:phases (modify-phases %standard-phases
6851 #:phases 13095 (delete 'build)
6852 (modify-phases 13096 (add-after 'patch-dependencies 'delete-dev-dependencies
6853 %standard-phases 13097 (lambda _
6854 (delete 'configure) 13098 (delete-dependencies '("ava" "xo")))))))
6855 (delete 'build)))) 13099 (inputs `(("node-strip-ansi" ,node-strip-ansi-4.0.0)
6856 (inputs 13100 ("node-is-fullwidth-code-point" ,node-is-fullwidth-code-point-2.0.0)))
6857 `(("node-strip-ansi" ,node-strip-ansi-4.0.0) 13101 (home-page "https://github.com/sindresorhus/string-width#readme")
6858 ("node-is-fullwidth-code-point"
6859 ,node-is-fullwidth-code-point-2.0.0)))
6860 (home-page
6861 "https://github.com/sindresorhus/string-width#readme")
6862 (synopsis 13102 (synopsis
6863 "Get the visual width of a string - the number of columns required to display it") 13103 "Get the visual width of a string - the number of columns required to display it")
6864 (description 13104 (description
6865 "Get the visual width of a string - the number of columns required to display it") 13105 "Get the visual width of a string - the number of columns required to display it")
6866 (license license:expat))) 13106 (license license:expat)))
6867 13107
6868(define-public node-ansi-regex-3.0.0 13108(define-public node-ansi-regex-3.0.1
6869 (package 13109 (package
6870 (name "node-ansi-regex") 13110 (name "node-ansi-regex")
6871 (version "3.0.0") 13111 (version "3.0.1")
6872 (source 13112 (source (origin
6873 (origin 13113 (method url-fetch)
6874 (method url-fetch) 13114 (uri
6875 (uri "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz") 13115 "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz")
6876 (sha256 13116 (sha256
6877 (base32 13117 (base32
6878 "0d9xwkpwak84xixi7f21bxvrbdgdpwm4pna73jkm8pfk6v8b1bdx")))) 13118 "0mv4lz09i6n3l427cq83ac590hy3ah6dr6w91n4pwygq5940m74q"))))
6879 (build-system node-build-system) 13119 (build-system node-build-system)
6880 (arguments 13120 (arguments
6881 `(#:tests? 13121 '(#:tests? #f
6882 #f 13122 #:phases (modify-phases %standard-phases
6883 #:phases 13123 (delete 'build)
6884 (modify-phases 13124 (add-after 'patch-dependencies 'delete-dev-dependencies
6885 %standard-phases 13125 (lambda _
6886 (delete 'configure) 13126 (delete-dependencies '("ava" "xo")))))))
6887 (delete 'build)))) 13127 (home-page "https://github.com/chalk/ansi-regex#readme")
6888 (home-page 13128 (synopsis "Regular expression for matching ANSI escape codes")
6889 "https://github.com/chalk/ansi-regex#readme") 13129 (description "Regular expression for matching ANSI escape codes")
6890 (synopsis
6891 "Regular expression for matching ANSI escape codes")
6892 (description
6893 "Regular expression for matching ANSI escape codes")
6894 (license license:expat))) 13130 (license license:expat)))
6895 13131
6896(define-public node-strip-ansi-4.0.0 13132(define-public node-strip-ansi-4.0.0
6897 (package 13133 (package
6898 (name "node-strip-ansi") 13134 (name "node-strip-ansi")
6899 (version "4.0.0") 13135 (version "4.0.0")
6900 (source 13136 (source (origin
6901 (origin 13137 (method url-fetch)
6902 (method url-fetch) 13138 (uri
6903 (uri "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz") 13139 "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz")
6904 (sha256 13140 (sha256
6905 (base32 13141 (base32
6906 "0b90ys7pxxbavph56rhfmlymla8f8vaq7fy2pa91dq4r6r3sic5a")))) 13142 "0b90ys7pxxbavph56rhfmlymla8f8vaq7fy2pa91dq4r6r3sic5a"))))
6907 (build-system node-build-system) 13143 (build-system node-build-system)
6908 (arguments 13144 (arguments
6909 `(#:tests? 13145 '(#:tests? #f
6910 #f 13146 #:phases (modify-phases %standard-phases
6911 #:phases 13147 (delete 'build)
6912 (modify-phases 13148 (add-after 'patch-dependencies 'delete-dev-dependencies
6913 %standard-phases 13149 (lambda _
6914 (delete 'configure) 13150 (delete-dependencies '("ava" "xo")))))))
6915 (delete 'build)))) 13151 (inputs `(("node-ansi-regex" ,node-ansi-regex-3.0.1)))
6916 (inputs 13152 (home-page "https://github.com/chalk/strip-ansi#readme")
6917 `(("node-ansi-regex" ,node-ansi-regex-3.0.0)))
6918 (home-page
6919 "https://github.com/chalk/strip-ansi#readme")
6920 (synopsis "Strip ANSI escape codes") 13153 (synopsis "Strip ANSI escape codes")
6921 (description "Strip ANSI escape codes") 13154 (description "Strip ANSI escape codes")
6922 (license license:expat))) 13155 (license license:expat)))
@@ -6925,24 +13158,21 @@
6925 (package 13158 (package
6926 (name "node-through") 13159 (name "node-through")
6927 (version "2.3.8") 13160 (version "2.3.8")
6928 (source 13161 (source (origin
6929 (origin 13162 (method url-fetch)
6930 (method url-fetch) 13163 (uri "https://registry.npmjs.org/through/-/through-2.3.8.tgz")
6931 (uri "https://registry.npmjs.org/through/-/through-2.3.8.tgz") 13164 (sha256
6932 (sha256 13165 (base32
6933 (base32 13166 "0gjpaj9lwd6s356z2lljj2yj0pxwvdr8sckb6lkmfgmi1y67mchn"))))
6934 "0gjpaj9lwd6s356z2lljj2yj0pxwvdr8sckb6lkmfgmi1y67mchn")))) 13167 (build-system node-build-system)
6935 (build-system node-build-system) 13168 (arguments
6936 (arguments 13169 '(#:tests? #f
6937 `(#:tests? 13170 #:phases (modify-phases %standard-phases
6938 #f 13171 (delete 'build)
6939 #:phases 13172 (add-after 'patch-dependencies 'delete-dev-dependencies
6940 (modify-phases 13173 (lambda _
6941 %standard-phases 13174 (delete-dependencies '("stream-spec" "tape" "from")))))))
6942 (delete 'configure) 13175 (home-page "https://github.com/dominictarr/through")
6943 (delete 'build))))
6944 (home-page
6945 "https://github.com/dominictarr/through")
6946 (synopsis "simplified stream construction") 13176 (synopsis "simplified stream construction")
6947 (description "simplified stream construction") 13177 (description "simplified stream construction")
6948 (license license:expat))) 13178 (license license:expat)))
@@ -6951,99 +13181,137 @@
6951 (package 13181 (package
6952 (name "node-inquirer") 13182 (name "node-inquirer")
6953 (version "3.3.0") 13183 (version "3.3.0")
6954 (source 13184 (source (origin
6955 (origin 13185 (method url-fetch)
6956 (method url-fetch) 13186 (uri "https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz")
6957 (uri "https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz") 13187 (sha256
6958 (sha256 13188 (base32
6959 (base32 13189 "0vjqv6xk5cw6p1kq563nvyb7117gyia8ry30r6a45c57kjv7s8bi"))))
6960 "0vjqv6xk5cw6p1kq563nvyb7117gyia8ry30r6a45c57kjv7s8bi")))) 13190 (build-system node-build-system)
6961 (build-system node-build-system) 13191 (arguments
6962 (arguments 13192 '(#:tests? #f
6963 `(#:tests? 13193 #:phases (modify-phases %standard-phases
6964 #f 13194 (delete 'build)
6965 #:phases 13195 (add-after 'patch-dependencies 'delete-dev-dependencies
6966 (modify-phases 13196 (lambda _
6967 %standard-phases 13197 (delete-dependencies '("chai" "cmdify"
6968 (delete 'configure) 13198 "eslint"
6969 (delete 'build)))) 13199 "eslint-config-xo-space"
6970 (inputs 13200 "gulp"
6971 `(("node-through" ,node-through-2.3.8) 13201 "gulp-codacy"
6972 ("node-strip-ansi" ,node-strip-ansi-4.0.0) 13202 "gulp-coveralls"
6973 ("node-string-width" ,node-string-width-2.1.1) 13203 "gulp-eslint"
6974 ("node-rx-lite-aggregates" 13204 "gulp-exclude-gitignore"
6975 ,node-rx-lite-aggregates-4.0.8) 13205 "gulp-istanbul"
6976 ("node-rx-lite" ,node-rx-lite-4.0.8) 13206 "gulp-line-ending-corrector"
6977 ("node-run-async" ,node-run-async-2.4.1) 13207 "gulp-mocha"
6978 ("node-mute-stream" ,node-mute-stream-0.0.7) 13208 "gulp-nsp"
6979 ("node-lodash" ,node-lodash-4.17.20) 13209 "gulp-plumber"
6980 ("node-figures" ,node-figures-2.0.0) 13210 "mocha"
6981 ("node-external-editor" 13211 "mockery"
6982 ,node-external-editor-2.2.0) 13212 "sinon")))))))
6983 ("node-cli-width" ,node-cli-width-2.2.1) 13213 (inputs `(("node-through" ,node-through-2.3.8)
6984 ("node-cli-cursor" ,node-cli-cursor-2.1.0) 13214 ("node-strip-ansi" ,node-strip-ansi-4.0.0)
6985 ("node-chalk" ,node-chalk-2.4.2) 13215 ("node-string-width" ,node-string-width-2.1.1)
6986 ("node-ansi-escapes" ,node-ansi-escapes-3.2.0))) 13216 ("node-rx-lite-aggregates" ,node-rx-lite-aggregates-4.0.8)
6987 (home-page 13217 ("node-rx-lite" ,node-rx-lite-4.0.8)
6988 "https://github.com/SBoudrias/Inquirer.js#readme") 13218 ("node-run-async" ,node-run-async-2.4.1)
6989 (synopsis 13219 ("node-mute-stream" ,node-mute-stream-0.0.7)
6990 "A collection of common interactive command line user interfaces.") 13220 ("node-lodash" ,node-lodash-4.17.21)
6991 (description 13221 ("node-figures" ,node-figures-2.0.0)
6992 "A collection of common interactive command line user interfaces.") 13222 ("node-external-editor" ,node-external-editor-2.2.0)
13223 ("node-cli-width" ,node-cli-width-2.2.1)
13224 ("node-cli-cursor" ,node-cli-cursor-2.1.0)
13225 ("node-chalk" ,node-chalk-2.4.2)
13226 ("node-ansi-escapes" ,node-ansi-escapes-3.2.0)))
13227 (home-page "https://github.com/SBoudrias/Inquirer.js#readme")
13228 (synopsis
13229 "A collection of common interactive command line user interfaces.")
13230 (description
13231 "A collection of common interactive command line user interfaces.")
6993 (license license:expat))) 13232 (license license:expat)))
6994 13233
6995(define-public node-chain-able-3.0.0 13234(define-public node-chain-able-3.0.0
6996 (package 13235 (package
6997 (name "node-chain-able") 13236 (name "node-chain-able")
6998 (version "3.0.0") 13237 (version "3.0.0")
6999 (source 13238 (source (origin
7000 (origin 13239 (method url-fetch)
7001 (method url-fetch) 13240 (uri
7002 (uri "https://registry.npmjs.org/chain-able/-/chain-able-3.0.0.tgz") 13241 "https://registry.npmjs.org/chain-able/-/chain-able-3.0.0.tgz")
7003 (sha256 13242 (sha256
7004 (base32 13243 (base32
7005 "0pk2szx36nv5lx3ndfiai36jxqwkd28cyyhycy964lqrrlmf8930")))) 13244 "0pk2szx36nv5lx3ndfiai36jxqwkd28cyyhycy964lqrrlmf8930"))))
7006 (build-system node-build-system) 13245 (build-system node-build-system)
7007 (arguments 13246 (arguments
7008 `(#:tests? 13247 '(#:tests? #f
7009 #f 13248 #:phases (modify-phases %standard-phases
7010 #:phases 13249 (delete 'build)
7011 (modify-phases 13250 (add-after 'patch-dependencies 'delete-dev-dependencies
7012 %standard-phases 13251 (lambda _
7013 (delete 'configure) 13252 (delete-dependencies '("ava" "babel-cli"
7014 (delete 'build)))) 13253 "babel-core"
7015 (home-page 13254 "babel-jest"
7016 "https://github.com/fluents/chain-able#readme") 13255 "babel-plugin-istanbul"
7017 (synopsis 13256 "babel-plugin-transform-flow-strip-types"
7018 "interfaces that describe their intentions.") 13257 "babel-preset-env"
7019 (description 13258 "babel-preset-es2015"
7020 "interfaces that describe their intentions.") 13259 "buble"
13260 "chainsaw"
13261 "coveralls"
13262 "deepmerge"
13263 "eslint-config-chain-able"
13264 "fliplog"
13265 "flow-remove-types"
13266 "immutable"
13267 "inspector-gadget"
13268 "mobx"
13269 "module-alias"
13270 "nyc"
13271 "optimize-js"
13272 "rollup"
13273 "rollup-plugin-babili"
13274 "rollup-plugin-buble"
13275 "rollup-plugin-cleanup"
13276 "rollup-plugin-commonjs"
13277 "rollup-plugin-filesize"
13278 "rollup-plugin-node-resolve"
13279 "rollup-plugin-replace"
13280 "rollup-plugin-uglify"
13281 "traverse"
13282 "uglify-es"
13283 "uglify-js"
13284 "validator")))))))
13285 (home-page "https://github.com/fluents/chain-able#readme")
13286 (synopsis "interfaces that describe their intentions.")
13287 (description "interfaces that describe their intentions.")
7021 (license license:expat))) 13288 (license license:expat)))
7022 13289
7023(define-public node-lego-api-1.0.8 13290(define-public node-lego-api-1.0.8
7024 (package 13291 (package
7025 (name "node-lego-api") 13292 (name "node-lego-api")
7026 (version "1.0.8") 13293 (version "1.0.8")
7027 (source 13294 (source (origin
7028 (origin 13295 (method url-fetch)
7029 (method url-fetch) 13296 (uri "https://registry.npmjs.org/lego-api/-/lego-api-1.0.8.tgz")
7030 (uri "https://registry.npmjs.org/lego-api/-/lego-api-1.0.8.tgz") 13297 (sha256
7031 (sha256 13298 (base32
7032 (base32 13299 "0q1y63fyki5ss4f9y01q93bk39wli46fjvvf9wlbn8w53my05iqw"))))
7033 "0q1y63fyki5ss4f9y01q93bk39wli46fjvvf9wlbn8w53my05iqw")))) 13300 (build-system node-build-system)
7034 (build-system node-build-system) 13301 (arguments
7035 (arguments 13302 '(#:tests? #f
7036 `(#:tests? 13303 #:phases (modify-phases %standard-phases
7037 #f 13304 (delete 'build)
7038 #:phases 13305 (add-after 'patch-dependencies 'delete-dev-dependencies
7039 (modify-phases 13306 (lambda _
7040 %standard-phases 13307 (delete-dependencies '("ava" "eslint-config-chain-able"
7041 (delete 'configure) 13308 "eslint-plugin-prettier"
7042 (delete 'build)))) 13309 "fliplog"
7043 (inputs 13310 "flow-remove-types"
7044 `(("node-chain-able" ,node-chain-able-3.0.0))) 13311 "prettier"
7045 (home-page 13312 "prettier-eslint")))))))
7046 "https://github.com/fuse-box/lego-api#readme") 13313 (inputs `(("node-chain-able" ,node-chain-able-3.0.0)))
13314 (home-page "https://github.com/fuse-box/lego-api#readme")
7047 (synopsis "lego api") 13315 (synopsis "lego api")
7048 (description "lego api") 13316 (description "lego api")
7049 (license license:expat))) 13317 (license license:expat)))
@@ -7052,1032 +13320,984 @@
7052 (package 13320 (package
7053 (name "node-mustache") 13321 (name "node-mustache")
7054 (version "2.3.2") 13322 (version "2.3.2")
7055 (source 13323 (source (origin
7056 (origin 13324 (method url-fetch)
7057 (method url-fetch) 13325 (uri "https://registry.npmjs.org/mustache/-/mustache-2.3.2.tgz")
7058 (uri "https://registry.npmjs.org/mustache/-/mustache-2.3.2.tgz") 13326 (sha256
7059 (sha256 13327 (base32
7060 (base32 13328 "0mpjnc0h2aplfgbz74j1hhghh43sbyra5x8gm7ri4syh0nfmsx9a"))))
7061 "0mpjnc0h2aplfgbz74j1hhghh43sbyra5x8gm7ri4syh0nfmsx9a")))) 13329 (build-system node-build-system)
7062 (build-system node-build-system) 13330 (arguments
7063 (arguments 13331 '(#:tests? #f
7064 `(#:tests? 13332 #:phases (modify-phases %standard-phases
7065 #f 13333 (delete 'build)
7066 #:phases 13334 (add-after 'patch-dependencies 'delete-dev-dependencies
7067 (modify-phases 13335 (lambda _
7068 %standard-phases 13336 (delete-dependencies '("chai" "eslint"
7069 (delete 'configure) 13337 "jshint"
7070 (delete 'build)))) 13338 "mocha"
13339 "uglify-js"
13340 "zuul"
13341 "zuul-ngrok")))))))
7071 (home-page "https://github.com/janl/mustache.js") 13342 (home-page "https://github.com/janl/mustache.js")
7072 (synopsis 13343 (synopsis "Logic-less {{mustache}} templates with JavaScript")
7073 "Logic-less {{mustache}} templates with JavaScript") 13344 (description "Logic-less {{mustache}} templates with JavaScript")
7074 (description
7075 "Logic-less {{mustache}} templates with JavaScript")
7076 (license license:expat)))
7077
7078(define-public node-color-name-1.1.3
7079 (package
7080 (name "node-color-name")
7081 (version "1.1.3")
7082 (source
7083 (origin
7084 (method url-fetch)
7085 (uri "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz")
7086 (sha256
7087 (base32
7088 "0kkq17s5yg6lg8ncg2nls6asih58qafn7wbrcgmwnqr5zdqk7vxh"))))
7089 (build-system node-build-system)
7090 (arguments
7091 `(#:tests?
7092 #f
7093 #:phases
7094 (modify-phases
7095 %standard-phases
7096 (delete 'configure)
7097 (delete 'build))))
7098 (home-page
7099 "https://github.com/dfcreative/color-name")
7100 (synopsis "A list of color names and its values")
7101 (description
7102 "A list of color names and its values")
7103 (license license:expat))) 13345 (license license:expat)))
7104 13346
7105(define-public node-color-convert-1.9.3 13347(define-public node-chalk-2.4.2
7106 (package 13348 (package
7107 (name "node-color-convert") 13349 (name "node-chalk")
7108 (version "1.9.3") 13350 (version "2.4.2")
7109 (source 13351 (source (origin
7110 (origin 13352 (method url-fetch)
7111 (method url-fetch) 13353 (uri "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz")
7112 (uri "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz") 13354 (sha256
7113 (sha256 13355 (base32
7114 (base32 13356 "0wf6hln5gcjb2n8p18gag6idghl6dfq4if6pxa6s1jqnwr94x26h"))))
7115 "1ahbdssv1qgwlzvhv7731hpfgz8wny0619x97b7n5x9lckj17i0j")))) 13357 (build-system node-build-system)
7116 (build-system node-build-system) 13358 (arguments
7117 (arguments 13359 '(#:tests? #f
7118 `(#:tests? 13360 #:phases (modify-phases %standard-phases
7119 #f 13361 (delete 'build)
7120 #:phases 13362 (add-after 'patch-dependencies 'delete-dev-dependencies
7121 (modify-phases 13363 (lambda _
7122 %standard-phases 13364 (delete-dependencies '("ava" "coveralls"
7123 (delete 'configure) 13365 "execa"
7124 (delete 'build)))) 13366 "flow-bin"
7125 (inputs 13367 "import-fresh"
7126 `(("node-color-name" ,node-color-name-1.1.3))) 13368 "matcha"
7127 (home-page 13369 "nyc"
7128 "https://github.com/Qix-/color-convert#readme") 13370 "resolve-from"
7129 (synopsis "Plain color conversion functions") 13371 "typescript"
7130 (description "Plain color conversion functions") 13372 "xo")))))))
13373 (inputs `(("node-supports-color" ,node-supports-color-5.5.0)
13374 ("node-escape-string-regexp" ,node-escape-string-regexp-1.0.5)
13375 ("node-ansi-styles" ,node-ansi-styles-3.2.1)))
13376 (home-page "https://github.com/chalk/chalk#readme")
13377 (synopsis "Terminal string styling done right")
13378 (description "Terminal string styling done right")
7131 (license license:expat))) 13379 (license license:expat)))
7132 13380
7133(define-public node-ansi-styles-3.2.1 13381(define-public node-source-map-0.6.1
7134 (package 13382 (package
7135 (name "node-ansi-styles") 13383 (name "node-source-map")
7136 (version "3.2.1") 13384 (version "0.6.1")
7137 (source 13385 (source (origin
7138 (origin 13386 (method url-fetch)
7139 (method url-fetch) 13387 (uri
7140 (uri "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz") 13388 "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz")
7141 (sha256 13389 (sha256
7142 (base32 13390 (base32
7143 "1wqd08glq159q724kvpi6nnf87biajr749a7r9c84xm639g6463k")))) 13391 "11ib173i7xf5sd85da9jfrcbzygr48pppz5csl15hnpz2w6s3g5x"))))
7144 (build-system node-build-system) 13392 (build-system node-build-system)
7145 (arguments 13393 (arguments
7146 `(#:tests? 13394 '(#:tests? #f
7147 #f 13395 #:phases (modify-phases %standard-phases
7148 #:phases 13396 (delete 'build)
7149 (modify-phases 13397 (add-after 'patch-dependencies 'delete-dev-dependencies
7150 %standard-phases 13398 (lambda _
7151 (delete 'configure) 13399 (delete-dependencies '("doctoc" "webpack")))))))
7152 (delete 'build)))) 13400 (home-page "https://github.com/mozilla/source-map")
7153 (inputs 13401 (synopsis "Generates and consumes source maps")
7154 `(("node-color-convert" ,node-color-convert-1.9.3))) 13402 (description "Generates and consumes source maps")
7155 (home-page 13403 (license license:bsd-3)))
7156 "https://github.com/chalk/ansi-styles#readme")
7157 (synopsis
7158 "ANSI escape codes for styling strings in the terminal")
7159 (description
7160 "ANSI escape codes for styling strings in the terminal")
7161 (license license:expat)))
7162 13404
7163(define-public node-escape-string-regexp-1.0.5 13405(define-public node-has-flag-3.0.0
7164 (package 13406 (package
7165 (name "node-escape-string-regexp") 13407 (name "node-has-flag")
7166 (version "1.0.5") 13408 (version "3.0.0")
7167 (source 13409 (source (origin
7168 (origin 13410 (method url-fetch)
7169 (method url-fetch) 13411 (uri "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz")
7170 (uri "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz") 13412 (sha256
7171 (sha256 13413 (base32
7172 (base32 13414 "1sp0m48zavms86q7vkf90mwll9z2bqi11hk3s01aw8nw40r72jzd"))))
7173 "0iy3jirnnslnfwk8wa5xkg56fnbmg7bsv5v2a1s0qgbnfqp7j375")))) 13415 (build-system node-build-system)
7174 (build-system node-build-system) 13416 (arguments
7175 (arguments 13417 '(#:tests? #f
7176 `(#:tests? 13418 #:phases (modify-phases %standard-phases
7177 #f 13419 (delete 'build)
7178 #:phases 13420 (add-after 'patch-dependencies 'delete-dev-dependencies
7179 (modify-phases 13421 (lambda _
7180 %standard-phases 13422 (delete-dependencies '("ava" "xo")))))))
7181 (delete 'configure) 13423 (home-page "https://github.com/sindresorhus/has-flag#readme")
7182 (delete 'build)))) 13424 (synopsis "Check if argv has a specific flag")
7183 (home-page 13425 (description "Check if argv has a specific flag")
7184 "https://github.com/sindresorhus/escape-string-regexp")
7185 (synopsis "Escape RegExp special characters")
7186 (description "Escape RegExp special characters")
7187 (license license:expat))) 13426 (license license:expat)))
7188 13427
7189(define-public node-supports-color-5.5.0 13428(define-public node-supports-color-5.5.0
7190 (package 13429 (package
7191 (name "node-supports-color") 13430 (name "node-supports-color")
7192 (version "5.5.0") 13431 (version "5.5.0")
7193 (source 13432 (source (origin
7194 (origin 13433 (method url-fetch)
7195 (method url-fetch) 13434 (uri
7196 (uri "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz") 13435 "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz")
7197 (sha256 13436 (sha256
7198 (base32 13437 (base32
7199 "1ap0lk4n0m3948cnkfmyz71pizqlzjdfrhs0f954pksg4jnk52h5")))) 13438 "1ap0lk4n0m3948cnkfmyz71pizqlzjdfrhs0f954pksg4jnk52h5"))))
7200 (build-system node-build-system) 13439 (build-system node-build-system)
7201 (arguments 13440 (arguments
7202 `(#:tests? 13441 '(#:tests? #f
7203 #f 13442 #:phases (modify-phases %standard-phases
7204 #:phases 13443 (delete 'build)
7205 (modify-phases 13444 (add-after 'patch-dependencies 'delete-dev-dependencies
7206 %standard-phases 13445 (lambda _
7207 (delete 'configure) 13446 (delete-dependencies '("ava" "import-fresh" "xo")))))))
7208 (delete 'build)))) 13447 (inputs `(("node-has-flag" ,node-has-flag-3.0.0)))
7209 (inputs 13448 (home-page "https://github.com/chalk/supports-color#readme")
7210 `(("node-has-flag" ,node-has-flag-3.0.0))) 13449 (synopsis "Detect whether a terminal supports color")
7211 (home-page 13450 (description "Detect whether a terminal supports color")
7212 "https://github.com/chalk/supports-color#readme")
7213 (synopsis
7214 "Detect whether a terminal supports color")
7215 (description
7216 "Detect whether a terminal supports color")
7217 (license license:expat)))
7218
7219(define-public node-has-flag-3.0.0
7220 (package
7221 (name "node-has-flag")
7222 (version "3.0.0")
7223 (source
7224 (origin
7225 (method url-fetch)
7226 (uri "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz")
7227 (sha256
7228 (base32
7229 "1sp0m48zavms86q7vkf90mwll9z2bqi11hk3s01aw8nw40r72jzd"))))
7230 (build-system node-build-system)
7231 (arguments
7232 `(#:tests?
7233 #f
7234 #:phases
7235 (modify-phases
7236 %standard-phases
7237 (delete 'configure)
7238 (delete 'build))))
7239 (home-page
7240 "https://github.com/sindresorhus/has-flag#readme")
7241 (synopsis "Check if argv has a specific flag")
7242 (description "Check if argv has a specific flag")
7243 (license license:expat))) 13451 (license license:expat)))
7244 13452
7245(define-public node-postcss-6.0.23 13453(define-public node-postcss-6.0.23
7246 (package 13454 (package
7247 (name "node-postcss") 13455 (name "node-postcss")
7248 (version "6.0.23") 13456 (version "6.0.23")
7249 (source 13457 (source (origin
7250 (origin 13458 (method url-fetch)
7251 (method url-fetch) 13459 (uri "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz")
7252 (uri "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz") 13460 (sha256
7253 (sha256 13461 (base32
7254 (base32 13462 "1r6pmafj6i6qysgmkl5yjcjjxfbbylx4yf1fb82r3bsp3acx2m8k"))))
7255 "1r6pmafj6i6qysgmkl5yjcjjxfbbylx4yf1fb82r3bsp3acx2m8k")))) 13463 (build-system node-build-system)
7256 (build-system node-build-system) 13464 (arguments
7257 (arguments 13465 '(#:tests? #f
7258 `(#:tests? 13466 #:phases (modify-phases %standard-phases
7259 #f 13467 (delete 'build))))
7260 #:phases 13468 (inputs `(("node-supports-color" ,node-supports-color-5.5.0)
7261 (modify-phases 13469 ("node-source-map" ,node-source-map-0.6.1)
7262 %standard-phases 13470 ("node-chalk" ,node-chalk-2.4.2)))
7263 (delete 'configure)
7264 (delete 'build))))
7265 (inputs
7266 `(("node-supports-color"
7267 ,node-supports-color-5.5.0)
7268 ("node-source-map" ,node-source-map-0.6.1)
7269 ("node-chalk" ,node-chalk-2.4.2)))
7270 (home-page "https://postcss.org/") 13471 (home-page "https://postcss.org/")
7271 (synopsis 13472 (synopsis "Tool for transforming styles with JS plugins")
7272 "Tool for transforming styles with JS plugins") 13473 (description "Tool for transforming styles with JS plugins")
7273 (description
7274 "Tool for transforming styles with JS plugins")
7275 (license license:expat))) 13474 (license license:expat)))
7276 13475
7277(define-public node-is-buffer-1.1.6 13476(define-public node-is-buffer-1.1.6
7278 (package 13477 (package
7279 (name "node-is-buffer") 13478 (name "node-is-buffer")
7280 (version "1.1.6") 13479 (version "1.1.6")
7281 (source 13480 (source (origin
7282 (origin 13481 (method url-fetch)
7283 (method url-fetch) 13482 (uri
7284 (uri "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz") 13483 "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz")
7285 (sha256 13484 (sha256
7286 (base32 13485 (base32
7287 "03l8f9r41xy0lq5zjm790jg758r8wv3fcsfwsd8331w6l30dh6ix")))) 13486 "03l8f9r41xy0lq5zjm790jg758r8wv3fcsfwsd8331w6l30dh6ix"))))
7288 (build-system node-build-system) 13487 (build-system node-build-system)
7289 (arguments 13488 (arguments
7290 `(#:tests? 13489 '(#:tests? #f
7291 #f 13490 #:phases (modify-phases %standard-phases
7292 #:phases 13491 (delete 'build)
7293 (modify-phases 13492 (add-after 'patch-dependencies 'delete-dev-dependencies
7294 %standard-phases 13493 (lambda _
7295 (delete 'configure) 13494 (delete-dependencies '("standard" "tape" "zuul")))))))
7296 (delete 'build)))) 13495 (home-page "https://github.com/feross/is-buffer#readme")
7297 (home-page
7298 "https://github.com/feross/is-buffer#readme")
7299 (synopsis "Determine if an object is a Buffer") 13496 (synopsis "Determine if an object is a Buffer")
7300 (description 13497 (description "Determine if an object is a Buffer")
7301 "Determine if an object is a Buffer") 13498 (license license:expat)))
13499
13500(define-public node-kind-of-3.2.2
13501 (package
13502 (name "node-kind-of")
13503 (version "3.2.2")
13504 (source (origin
13505 (method url-fetch)
13506 (uri "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz")
13507 (sha256
13508 (base32
13509 "0isxns331nf5f4h8yj0vb4rj626bscxh1rh7j92vk8lbzcs2x93q"))))
13510 (build-system node-build-system)
13511 (arguments
13512 '(#:tests? #f
13513 #:phases (modify-phases %standard-phases
13514 (delete 'build)
13515 (add-after 'patch-dependencies 'delete-dev-dependencies
13516 (lambda _
13517 (delete-dependencies '("ansi-bold" "benchmarked"
13518 "browserify"
13519 "glob"
13520 "gulp-format-md"
13521 "mocha"
13522 "type-of"
13523 "typeof")))))))
13524 (inputs `(("node-is-buffer" ,node-is-buffer-1.1.6)))
13525 (home-page "https://github.com/jonschlinkert/kind-of")
13526 (synopsis "Get the native type of a value.")
13527 (description "Get the native type of a value.")
13528 (license license:expat)))
13529
13530(define-public node-is-number-2.1.0
13531 (package
13532 (name "node-is-number")
13533 (version "2.1.0")
13534 (source (origin
13535 (method url-fetch)
13536 (uri
13537 "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz")
13538 (sha256
13539 (base32
13540 "07v7lz3vb6iq9f36ksnbf60gy91dggaa32l0m8026zpa5ccrx8r2"))))
13541 (build-system node-build-system)
13542 (arguments
13543 '(#:tests? #f
13544 #:phases (modify-phases %standard-phases
13545 (delete 'build)
13546 (add-after 'patch-dependencies 'delete-dev-dependencies
13547 (lambda _
13548 (delete-dependencies '("benchmarked" "chalk" "mocha")))))))
13549 (inputs `(("node-kind-of" ,node-kind-of-3.2.2)))
13550 (home-page "https://github.com/jonschlinkert/is-number")
13551 (synopsis "Returns true if the value is a number. comprehensive tests.")
13552 (description "Returns true if the value is a number. comprehensive tests.")
7302 (license license:expat))) 13553 (license license:expat)))
7303 13554
7304(define-public node-nanoseconds-0.1.0 13555(define-public node-nanoseconds-0.1.0
7305 (package 13556 (package
7306 (name "node-nanoseconds") 13557 (name "node-nanoseconds")
7307 (version "0.1.0") 13558 (version "0.1.0")
7308 (source 13559 (source (origin
7309 (origin 13560 (method url-fetch)
7310 (method url-fetch) 13561 (uri
7311 (uri "https://registry.npmjs.org/nanoseconds/-/nanoseconds-0.1.0.tgz") 13562 "https://registry.npmjs.org/nanoseconds/-/nanoseconds-0.1.0.tgz")
7312 (sha256 13563 (sha256
7313 (base32 13564 (base32
7314 "0ap9dmnqj0k5mn7bxcj6icbw20sh15j8i1d5zfsyi2la8ic5mn2a")))) 13565 "0ap9dmnqj0k5mn7bxcj6icbw20sh15j8i1d5zfsyi2la8ic5mn2a"))))
7315 (build-system node-build-system) 13566 (build-system node-build-system)
7316 (arguments 13567 (arguments
7317 `(#:tests? 13568 '(#:tests? #f
7318 #f 13569 #:phases (modify-phases %standard-phases
7319 #:phases 13570 (delete 'build)
7320 (modify-phases 13571 (add-after 'patch-dependencies 'delete-dev-dependencies
7321 %standard-phases 13572 (lambda _
7322 (delete 'configure) 13573 (delete-dependencies '("mocha")))))))
7323 (delete 'build)))) 13574 (home-page "https://github.com/jonschlinkert/nanoseconds")
7324 (home-page
7325 "https://github.com/jonschlinkert/nanoseconds")
7326 (synopsis 13575 (synopsis
7327 "Convert the process.hrtime array to a single nanoseconds value.") 13576 "Convert the process.hrtime array to a single nanoseconds value.")
7328 (description 13577 (description
7329 "Convert the process.hrtime array to a single nanoseconds value.") 13578 "Convert the process.hrtime array to a single nanoseconds value.")
7330 (license license:expat))) 13579 (license license:expat)))
7331 13580
7332(define-public node-pretty-time-0.2.0 13581(define-public node-pretty-time-0.2.0
7333 (package 13582 (package
7334 (name "node-pretty-time") 13583 (name "node-pretty-time")
7335 (version "0.2.0") 13584 (version "0.2.0")
7336 (source 13585 (source (origin
7337 (origin 13586 (method url-fetch)
7338 (method url-fetch) 13587 (uri
7339 (uri "https://registry.npmjs.org/pretty-time/-/pretty-time-0.2.0.tgz") 13588 "https://registry.npmjs.org/pretty-time/-/pretty-time-0.2.0.tgz")
7340 (sha256 13589 (sha256
7341 (base32 13590 (base32
7342 "0i1qjipzd1dd5m1zrngx9awxyikvmfjl62bl5c1b5lbvf6k0qb46")))) 13591 "0i1qjipzd1dd5m1zrngx9awxyikvmfjl62bl5c1b5lbvf6k0qb46"))))
7343 (build-system node-build-system) 13592 (build-system node-build-system)
7344 (arguments 13593 (arguments
7345 `(#:tests? 13594 '(#:tests? #f
7346 #f 13595 #:phases (modify-phases %standard-phases
7347 #:phases 13596 (delete 'build)
7348 (modify-phases 13597 (add-after 'patch-dependencies 'delete-dev-dependencies
7349 %standard-phases 13598 (lambda _
7350 (delete 'configure) 13599 (delete-dependencies '("gulp" "gulp-istanbul"
7351 (delete 'build)))) 13600 "gulp-jshint" "gulp-mocha"
7352 (inputs 13601 "jshint-stylish" "mocha")))))))
7353 `(("node-nanoseconds" ,node-nanoseconds-0.1.0) 13602 (inputs `(("node-nanoseconds" ,node-nanoseconds-0.1.0)
7354 ("node-is-number" ,node-is-number-2.1.0))) 13603 ("node-is-number" ,node-is-number-2.1.0)))
7355 (home-page 13604 (home-page "https://github.com/jonschlinkert/pretty-time")
7356 "https://github.com/jonschlinkert/pretty-time")
7357 (synopsis 13605 (synopsis
7358 "Easily format the time from node.js `process.hrtime`. Works with timescales ranging from weeks to nanoseconds.") 13606 "Easily format the time from node.js `process.hrtime`. Works with timescales ranging from weeks to nanoseconds.")
7359 (description 13607 (description
7360 "Easily format the time from node.js `process.hrtime`. Works with timescales ranging from weeks to nanoseconds.") 13608 "Easily format the time from node.js `process.hrtime`. Works with timescales ranging from weeks to nanoseconds.")
7361 (license license:expat))) 13609 (license license:expat)))
7362 13610
7363(define-public node-prettysize-0.0.3 13611(define-public node-prettysize-0.0.3
7364 (package 13612 (package
7365 (name "node-prettysize") 13613 (name "node-prettysize")
7366 (version "0.0.3") 13614 (version "0.0.3")
7367 (source 13615 (source (origin
7368 (origin 13616 (method url-fetch)
7369 (method url-fetch) 13617 (uri
7370 (uri "https://registry.npmjs.org/prettysize/-/prettysize-0.0.3.tgz") 13618 "https://registry.npmjs.org/prettysize/-/prettysize-0.0.3.tgz")
7371 (sha256 13619 (sha256
7372 (base32 13620 (base32
7373 "01kgjq1p0dr3k2gj2vlk2qba66l0bwr79z17f9ah2q939y6bwdwg")))) 13621 "01kgjq1p0dr3k2gj2vlk2qba66l0bwr79z17f9ah2q939y6bwdwg"))))
7374 (build-system node-build-system) 13622 (build-system node-build-system)
7375 (arguments 13623 (arguments
7376 `(#:tests? 13624 '(#:tests? #f
7377 #f 13625 #:phases (modify-phases %standard-phases
7378 #:phases 13626 (delete 'build)
7379 (modify-phases 13627 (add-after 'patch-dependencies 'delete-dev-dependencies
7380 %standard-phases 13628 (lambda _
7381 (delete 'configure) 13629 (delete-dependencies '("vows" "yui-lint" "jshint"
7382 (delete 'build)))) 13630 "istanbul")))))))
7383 (home-page #f) 13631 (home-page "https://www.npmjs.com/package/node-prettysize")
7384 (synopsis 13632 (synopsis "Convert bytes to other sizes for prettier logging")
7385 "Convert bytes to other sizes for prettier logging") 13633 (description "Convert bytes to other sizes for prettier logging")
7386 (description 13634 (license #f)))
7387 "Convert bytes to other sizes for prettier logging")
7388 (license (license:non-copyleft "unknown"))))
7389 13635
7390(define-public node-app-root-path-1.4.0 13636(define-public node-app-root-path-1.4.0
7391 (package 13637 (package
7392 (name "node-app-root-path") 13638 (name "node-app-root-path")
7393 (version "1.4.0") 13639 (version "1.4.0")
7394 (source 13640 (source (origin
7395 (origin 13641 (method url-fetch)
7396 (method url-fetch) 13642 (uri
7397 (uri "https://registry.npmjs.org/app-root-path/-/app-root-path-1.4.0.tgz") 13643 "https://registry.npmjs.org/app-root-path/-/app-root-path-1.4.0.tgz")
7398 (sha256 13644 (sha256
7399 (base32 13645 (base32
7400 "00ccw98bvkbrzrwf40ykq6jlckvyxbag1sl8answjqg86h2xs3lb")))) 13646 "00ccw98bvkbrzrwf40ykq6jlckvyxbag1sl8answjqg86h2xs3lb"))))
7401 (build-system node-build-system) 13647 (build-system node-build-system)
7402 (arguments 13648 (arguments
7403 `(#:tests? 13649 '(#:tests? #f
7404 #f 13650 #:phases (modify-phases %standard-phases
7405 #:phases 13651 (delete 'build)
7406 (modify-phases 13652 (add-after 'patch-dependencies 'delete-dev-dependencies
7407 %standard-phases 13653 (lambda _
7408 (delete 'configure) 13654 (delete-dependencies '("codecov" "coveralls"
7409 (delete 'build)))) 13655 "cracks"
7410 (home-page 13656 "cz-conventional-changelog"
7411 "https://github.com/inxilpro/node-app-root-path") 13657 "ghooks"
7412 (synopsis 13658 "istanbul"
7413 "Determine an app's root path from anywhere inside the app") 13659 "mocha"
7414 (description 13660 "mocha-lcov-reporter"
7415 "Determine an app's root path from anywhere inside the app") 13661 "nyc"
7416 (license license:expat))) 13662 "semantic-release"
7417 13663 "validate-commit-msg")))))))
7418(define-public node-minimist-1.2.5 13664 (home-page "https://github.com/inxilpro/node-app-root-path")
7419 (package 13665 (synopsis "Determine an app's root path from anywhere inside the app")
7420 (name "node-minimist") 13666 (description "Determine an app's root path from anywhere inside the app")
7421 (version "1.2.5") 13667 (license license:expat)))
7422 (source 13668
7423 (origin 13669(define-public node-mkdirp-0.5.6
7424 (method url-fetch)
7425 (uri "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz")
7426 (sha256
7427 (base32
7428 "0l23rq2pam1khc06kd7fv0ys2cq0mlgs82dxjxjfjmlksgj0r051"))))
7429 (build-system node-build-system)
7430 (arguments
7431 `(#:tests?
7432 #f
7433 #:phases
7434 (modify-phases
7435 %standard-phases
7436 (delete 'configure)
7437 (delete 'build))))
7438 (home-page
7439 "https://github.com/substack/minimist")
7440 (synopsis "parse argument options")
7441 (description "parse argument options")
7442 (license license:expat)))
7443
7444(define-public node-mkdirp-0.5.5
7445 (package 13670 (package
7446 (name "node-mkdirp") 13671 (name "node-mkdirp")
7447 (version "0.5.5") 13672 (version "0.5.6")
7448 (source 13673 (source (origin
7449 (origin 13674 (method url-fetch)
7450 (method url-fetch) 13675 (uri "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz")
7451 (uri "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz") 13676 (sha256
7452 (sha256 13677 (base32
7453 (base32 13678 "0sdmma4bm86i69b5p1didy3cass87rb0zjv35z0xs8sb0ld2ja8v"))))
7454 "02mvn5hllnsxzli8yy0gkgkkxndbwd3fh302shadsag3c4db0njf")))) 13679 (build-system node-build-system)
7455 (build-system node-build-system) 13680 (arguments
7456 (arguments 13681 '(#:tests? #f
7457 `(#:tests? 13682 #:phases (modify-phases %standard-phases
7458 #f 13683 (delete 'build)
7459 #:phases 13684 (add-after 'patch-dependencies 'delete-dev-dependencies
7460 (modify-phases 13685 (lambda _
7461 %standard-phases 13686 (delete-dependencies '("tap")))))))
7462 (delete 'configure) 13687 (inputs `(("node-minimist" ,node-minimist-1.2.8)))
7463 (delete 'build)))) 13688 (home-page "https://github.com/substack/node-mkdirp#readme")
7464 (inputs
7465 `(("node-minimist" ,node-minimist-1.2.5)))
7466 (home-page
7467 "https://github.com/substack/node-mkdirp#readme")
7468 (synopsis "Recursively mkdir, like `mkdir -p`") 13689 (synopsis "Recursively mkdir, like `mkdir -p`")
7469 (description 13690 (description "Recursively mkdir, like `mkdir -p`")
7470 "Recursively mkdir, like `mkdir -p`")
7471 (license license:expat))) 13691 (license license:expat)))
7472 13692
7473(define-public node-realm-utils-1.0.9 13693(define-public node-realm-utils-1.0.9
7474 (package 13694 (package
7475 (name "node-realm-utils") 13695 (name "node-realm-utils")
7476 (version "1.0.9") 13696 (version "1.0.9")
7477 (source 13697 (source (origin
7478 (origin 13698 (method url-fetch)
7479 (method url-fetch) 13699 (uri
7480 (uri "https://registry.npmjs.org/realm-utils/-/realm-utils-1.0.9.tgz") 13700 "https://registry.npmjs.org/realm-utils/-/realm-utils-1.0.9.tgz")
7481 (sha256 13701 (sha256
7482 (base32 13702 (base32
7483 "06vl01rm2sxbjmdfwr4m736khcppq4nc0wn2apcg8dqgcvad09y9")))) 13703 "06vl01rm2sxbjmdfwr4m736khcppq4nc0wn2apcg8dqgcvad09y9"))))
7484 (build-system node-build-system) 13704 (build-system node-build-system)
7485 (arguments 13705 (arguments
7486 `(#:tests? 13706 '(#:tests? #f
7487 #f 13707 #:phases (modify-phases %standard-phases
7488 #:phases 13708 (delete 'build)
7489 (modify-phases 13709 (add-after 'patch-dependencies 'delete-dev-dependencies
7490 %standard-phases 13710 (lambda _
7491 (delete 'configure) 13711 (delete-dependencies '("babel-preset-es2015" "gulp"
7492 (delete 'build)))) 13712 "gulp-babel"
7493 (inputs 13713 "gulp-bump"
7494 `(("node-mkdirp" ,node-mkdirp-0.5.5) 13714 "gulp-concat"
7495 ("node-app-root-path" ,node-app-root-path-1.4.0))) 13715 "gulp-rename"
7496 (home-page 13716 "gulp-sourcemaps"
7497 "https://github.com/realm-js/realm-utils#readme") 13717 "gulp-typescript"
7498 (synopsis 13718 "gulp-util"
7499 "Realm-js has a set of functionality that helps solving many problems or impediments related to Promises. Utilities live in this repository, apart from realm-js library. Typings included ### Install") 13719 "merge2"
7500 (description 13720 "mocha"
7501 "Realm-js has a set of functionality that helps solving many problems or impediments related to Promises. Utilities live in this repository, apart from realm-js library. Typings included ### Install") 13721 "run-sequence"
13722 "should"
13723 "ts-universal")))))))
13724 (inputs `(("node-mkdirp" ,node-mkdirp-0.5.6)
13725 ("node-app-root-path" ,node-app-root-path-1.4.0)))
13726 (home-page "https://github.com/realm-js/realm-utils#readme")
13727 (synopsis
13728 "Realm-js has a set of functionality that helps solving many problems or impediments related to Promises. Utilities live in this repository, apart from realm-js library. Typings included ### Install")
13729 (description
13730 "Realm-js has a set of functionality that helps solving many problems or impediments related to Promises. Utilities live in this repository, apart from realm-js library. Typings included ### Install")
7502 (license license:isc))) 13731 (license license:isc)))
7503 13732
7504(define-public node-regenerate-1.4.2 13733(define-public node-regenerate-1.4.2
7505 (package 13734 (package
7506 (name "node-regenerate") 13735 (name "node-regenerate")
7507 (version "1.4.2") 13736 (version "1.4.2")
7508 (source 13737 (source (origin
7509 (origin 13738 (method url-fetch)
7510 (method url-fetch) 13739 (uri
7511 (uri "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz") 13740 "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz")
7512 (sha256 13741 (sha256
7513 (base32 13742 (base32
7514 "07km6in83r5da81jn43ps2gll0gpdykcy0aa94v3vlwh83ygqy33")))) 13743 "07km6in83r5da81jn43ps2gll0gpdykcy0aa94v3vlwh83ygqy33"))))
7515 (build-system node-build-system) 13744 (build-system node-build-system)
7516 (arguments 13745 (arguments
7517 `(#:tests? 13746 '(#:tests? #f
7518 #f 13747 #:phases (modify-phases %standard-phases
7519 #:phases 13748 (delete 'build)
7520 (modify-phases 13749 (add-after 'patch-dependencies 'delete-dev-dependencies
7521 %standard-phases 13750 (lambda _
7522 (delete 'configure) 13751 (delete-dependencies '("codecov" "grunt"
7523 (delete 'build)))) 13752 "grunt-shell"
13753 "istanbul"
13754 "qunit-extras"
13755 "qunitjs"
13756 "requirejs")))))))
7524 (home-page "https://mths.be/regenerate") 13757 (home-page "https://mths.be/regenerate")
7525 (synopsis 13758 (synopsis
7526 "Generate JavaScript-compatible regular expressions based on a given set of Unicode symbols or code points.") 13759 "Generate JavaScript-compatible regular expressions based on a given set of Unicode symbols or code points.")
7527 (description 13760 (description
7528 "Generate JavaScript-compatible regular expressions based on a given set of Unicode symbols or code points.") 13761 "Generate JavaScript-compatible regular expressions based on a given set of Unicode symbols or code points.")
7529 (license license:expat))) 13762 (license license:expat)))
7530 13763
7531(define-public node-regenerate-unicode-properties-8.2.0 13764(define-public node-regenerate-unicode-properties-9.0.0
7532 (package 13765 (package
7533 (name "node-regenerate-unicode-properties") 13766 (name "node-regenerate-unicode-properties")
7534 (version "8.2.0") 13767 (version "9.0.0")
7535 (source 13768 (source (origin
7536 (origin 13769 (method url-fetch)
7537 (method url-fetch) 13770 (uri
7538 (uri "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz") 13771 "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-9.0.0.tgz")
7539 (sha256 13772 (sha256
7540 (base32 13773 (base32
7541 "0piv2vsrvkwmyb5rril6j7br4xvl1lv33g89hzqnpg0wap9lsp4g")))) 13774 "0k5m9a5fq2ddc0qrdzjw5i339nc3bhz7i576zfisnnwgmlbij9nd"))))
7542 (build-system node-build-system) 13775 (build-system node-build-system)
7543 (arguments 13776 (arguments
7544 `(#:tests? 13777 '(#:tests? #f
7545 #f 13778 #:phases (modify-phases %standard-phases
7546 #:phases 13779 (delete 'build)
7547 (modify-phases 13780 (add-after 'patch-dependencies 'delete-dev-dependencies
7548 %standard-phases 13781 (lambda _
7549 (delete 'configure) 13782 (delete-dependencies '("ava" "fs-extra" "jsesc"
7550 (delete 'build)))) 13783 "@unicode/unicode-14.0.0"
7551 (inputs 13784 "unicode-canonical-property-names-ecmascript")))))))
7552 `(("node-regenerate" ,node-regenerate-1.4.2))) 13785 (inputs `(("node-regenerate" ,node-regenerate-1.4.2)))
7553 (home-page 13786 (home-page
7554 "https://github.com/mathiasbynens/regenerate-unicode-properties") 13787 "https://github.com/mathiasbynens/regenerate-unicode-properties")
7555 (synopsis 13788 (synopsis "Regenerate sets for Unicode properties and values.")
7556 "Regenerate sets for Unicode properties and values.") 13789 (description "Regenerate sets for Unicode properties and values.")
7557 (description
7558 "Regenerate sets for Unicode properties and values.")
7559 (license license:expat))) 13790 (license license:expat)))
7560 13791
7561(define-public node-regjsgen-0.5.2 13792(define-public node-regjsgen-0.5.2
7562 (package 13793 (package
7563 (name "node-regjsgen") 13794 (name "node-regjsgen")
7564 (version "0.5.2") 13795 (version "0.5.2")
7565 (source 13796 (source (origin
7566 (origin 13797 (method url-fetch)
7567 (method url-fetch) 13798 (uri "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz")
7568 (uri "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz") 13799 (sha256
7569 (sha256 13800 (base32
7570 (base32 13801 "1rcqz05jgsfq3v23aaryhfxkk2fcj4d22ah46dyg91zgjhpii74r"))))
7571 "1rcqz05jgsfq3v23aaryhfxkk2fcj4d22ah46dyg91zgjhpii74r")))) 13802 (build-system node-build-system)
7572 (build-system node-build-system) 13803 (arguments
7573 (arguments 13804 '(#:tests? #f
7574 `(#:tests? 13805 #:phases (modify-phases %standard-phases
7575 #f 13806 (delete 'build)
7576 #:phases 13807 (add-after 'patch-dependencies 'delete-dev-dependencies
7577 (modify-phases 13808 (lambda _
7578 %standard-phases 13809 (delete-dependencies '("codecov" "nyc" "regjsparser"
7579 (delete 'configure) 13810 "request")))))))
7580 (delete 'build)))) 13811 (home-page "https://github.com/bnjmnt4n/regjsgen")
7581 (home-page 13812 (synopsis "Generate regular expressions from regjsparser’s AST.")
7582 "https://github.com/bnjmnt4n/regjsgen") 13813 (description "Generate regular expressions from regjsparser’s AST.")
7583 (synopsis
7584 "Generate regular expressions from regjsparserâ\x80\x99s AST.")
7585 (description
7586 "Generate regular expressions from regjsparserâ\x80\x99s AST.")
7587 (license license:expat))) 13814 (license license:expat)))
7588 13815
7589(define-public node-jsesc-0.5.0 13816(define-public node-jsesc-0.5.0
7590 (package 13817 (package
7591 (name "node-jsesc") 13818 (name "node-jsesc")
7592 (version "0.5.0") 13819 (version "0.5.0")
7593 (source 13820 (source (origin
7594 (origin 13821 (method url-fetch)
7595 (method url-fetch) 13822 (uri "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz")
7596 (uri "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz") 13823 (sha256
7597 (sha256 13824 (base32
7598 (base32 13825 "0x365wjgs65s1xa7zad9rbg5izayxbh2mfgsjgqm7zl0gi3116iy"))))
7599 "0x365wjgs65s1xa7zad9rbg5izayxbh2mfgsjgqm7zl0gi3116iy")))) 13826 (build-system node-build-system)
7600 (build-system node-build-system) 13827 (arguments
7601 (arguments 13828 '(#:tests? #f
7602 `(#:tests? 13829 #:phases (modify-phases %standard-phases
7603 #f 13830 (delete 'build)
7604 #:phases 13831 (add-after 'patch-dependencies 'delete-dev-dependencies
7605 (modify-phases 13832 (lambda _
7606 %standard-phases 13833 (delete-dependencies '("coveralls" "grunt"
7607 (delete 'configure) 13834 "grunt-shell"
7608 (delete 'build)))) 13835 "grunt-template"
13836 "istanbul"
13837 "qunit-extras"
13838 "qunitjs"
13839 "regenerate"
13840 "requirejs")))))))
7609 (home-page "http://mths.be/jsesc") 13841 (home-page "http://mths.be/jsesc")
7610 (synopsis 13842 (synopsis
7611 "A JavaScript library for escaping JavaScript strings while generating the shortest possible valid output.") 13843 "A JavaScript library for escaping JavaScript strings while generating the shortest possible valid output.")
7612 (description 13844 (description
7613 "A JavaScript library for escaping JavaScript strings while generating the shortest possible valid output.") 13845 "A JavaScript library for escaping JavaScript strings while generating the shortest possible valid output.")
7614 (license (license:non-copyleft "unknown")))) 13846 (license #f)))
7615 13847
7616(define-public node-regjsparser-0.6.7 13848(define-public node-regjsparser-0.7.0
7617 (package 13849 (package
7618 (name "node-regjsparser") 13850 (name "node-regjsparser")
7619 (version "0.6.7") 13851 (version "0.7.0")
7620 (source 13852 (source (origin
7621 (origin 13853 (method url-fetch)
7622 (method url-fetch) 13854 (uri
7623 (uri "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.7.tgz") 13855 "https://registry.npmjs.org/regjsparser/-/regjsparser-0.7.0.tgz")
7624 (sha256 13856 (sha256
7625 (base32 13857 (base32
7626 "162xnk1xj0yz3p4qg9hb7yryrijgahymkin7s461bv7gv0ikp9c4")))) 13858 "08x6i1yqccwik7ryk8n3vx6b3nb2bskp5ap4xkznfz2y1fqsf9ad"))))
7627 (build-system node-build-system) 13859 (build-system node-build-system)
7628 (arguments 13860 (arguments
7629 `(#:tests? 13861 '(#:tests? #f
7630 #f 13862 #:phases (modify-phases %standard-phases
7631 #:phases 13863 (delete 'build)
7632 (modify-phases 13864 (add-after 'patch-dependencies 'delete-dev-dependencies
7633 %standard-phases 13865 (lambda _
7634 (delete 'configure) 13866 (delete-dependencies '("regenerate" "unicode-11.0.0")))))))
7635 (delete 'build))))
7636 (inputs `(("node-jsesc" ,node-jsesc-0.5.0))) 13867 (inputs `(("node-jsesc" ,node-jsesc-0.5.0)))
7637 (home-page 13868 (home-page "https://github.com/jviereck/regjsparser")
7638 "https://github.com/jviereck/regjsparser") 13869 (synopsis "Parsing the JavaScript's RegExp in JavaScript.")
7639 (synopsis 13870 (description "Parsing the JavaScript's RegExp in JavaScript.")
7640 "Parsing the JavaScript's RegExp in JavaScript.") 13871 (license license:bsd-2)))
7641 (description
7642 "Parsing the JavaScript's RegExp in JavaScript.")
7643 (license (license:non-copyleft "unknown"))))
7644 13872
7645(define-public node-unicode-canonical-property-names-ecmascript-1.0.4 13873(define-public node-unicode-canonical-property-names-ecmascript-2.0.0
7646 (package 13874 (package
7647 (name "node-unicode-canonical-property-names-ecmascript") 13875 (name "node-unicode-canonical-property-names-ecmascript")
7648 (version "1.0.4") 13876 (version "2.0.0")
7649 (source 13877 (source (origin
7650 (origin 13878 (method url-fetch)
7651 (method url-fetch) 13879 (uri
7652 (uri "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz") 13880 "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz")
7653 (sha256 13881 (sha256
7654 (base32 13882 (base32
7655 "05pwacrq8a4l63zcxljrbxxm11f2rhmzspvsmdph94yy69rl49cn")))) 13883 "11k4z0098c9r7c0mignfdbislxn3b9ds0mwbgsmrpr3liwa0zw3j"))))
7656 (build-system node-build-system) 13884 (build-system node-build-system)
7657 (arguments 13885 (arguments
7658 `(#:tests? 13886 '(#:tests? #f
7659 #f 13887 #:phases (modify-phases %standard-phases
7660 #:phases 13888 (delete 'build)
7661 (modify-phases 13889 (add-after 'patch-dependencies 'delete-dev-dependencies
7662 %standard-phases 13890 (lambda _
7663 (delete 'configure) 13891 (delete-dependencies '("ava")))))))
7664 (delete 'build))))
7665 (home-page 13892 (home-page
7666 "https://github.com/mathiasbynens/unicode-canonical-property-names-ecmascript") 13893 "https://github.com/mathiasbynens/unicode-canonical-property-names-ecmascript")
7667 (synopsis 13894 (synopsis
7668 "The set of canonical Unicode property names supported in ECMAScript RegExp property escapes.") 13895 "The set of canonical Unicode property names supported in ECMAScript RegExp property escapes.")
7669 (description 13896 (description
7670 "The set of canonical Unicode property names supported in ECMAScript RegExp property escapes.") 13897 "The set of canonical Unicode property names supported in ECMAScript RegExp property escapes.")
7671 (license license:expat))) 13898 (license license:expat)))
7672 13899
7673(define-public node-unicode-property-aliases-ecmascript-1.1.0 13900(define-public node-unicode-property-aliases-ecmascript-2.1.0
7674 (package 13901 (package
7675 (name "node-unicode-property-aliases-ecmascript") 13902 (name "node-unicode-property-aliases-ecmascript")
7676 (version "1.1.0") 13903 (version "2.1.0")
7677 (source 13904 (source (origin
7678 (origin 13905 (method url-fetch)
7679 (method url-fetch) 13906 (uri
7680 (uri "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz") 13907 "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz")
7681 (sha256 13908 (sha256
7682 (base32 13909 (base32
7683 "0x43wbprnz7ppc5diwsbz0lry397h6jmpinmmizi9kmsxk5yh8za")))) 13910 "12dd3gla04q1cxssqf2bzqqwdvvz5fir4kjral3hvm7g9p49rm3n"))))
7684 (build-system node-build-system) 13911 (build-system node-build-system)
7685 (arguments 13912 (arguments
7686 `(#:tests? 13913 '(#:tests? #f
7687 #f 13914 #:phases (modify-phases %standard-phases
7688 #:phases 13915 (delete 'build)
7689 (modify-phases 13916 (add-after 'patch-dependencies 'delete-dev-dependencies
7690 %standard-phases 13917 (lambda _
7691 (delete 'configure) 13918 (delete-dependencies '("ava" "jsesc"
7692 (delete 'build)))) 13919 "unicode-canonical-property-names-ecmascript")))))))
7693 (home-page 13920 (home-page
7694 "https://github.com/mathiasbynens/unicode-property-aliases-ecmascript") 13921 "https://github.com/mathiasbynens/unicode-property-aliases-ecmascript")
7695 (synopsis 13922 (synopsis
7696 "Unicode property alias mappings in JavaScript format for property names that are supported in ECMAScript RegExp property escapes.") 13923 "Unicode property alias mappings in JavaScript format for property names that are supported in ECMAScript RegExp property escapes.")
7697 (description 13924 (description
7698 "Unicode property alias mappings in JavaScript format for property names that are supported in ECMAScript RegExp property escapes.") 13925 "Unicode property alias mappings in JavaScript format for property names that are supported in ECMAScript RegExp property escapes.")
7699 (license license:expat))) 13926 (license license:expat)))
7700 13927
7701(define-public node-unicode-match-property-ecmascript-1.0.4 13928(define-public node-unicode-match-property-ecmascript-2.0.0
7702 (package 13929 (package
7703 (name "node-unicode-match-property-ecmascript") 13930 (name "node-unicode-match-property-ecmascript")
7704 (version "1.0.4") 13931 (version "2.0.0")
7705 (source 13932 (source (origin
7706 (origin 13933 (method url-fetch)
7707 (method url-fetch) 13934 (uri
7708 (uri "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz") 13935 "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz")
7709 (sha256 13936 (sha256
7710 (base32 13937 (base32
7711 "0z4gd8jr8haxp2rdndqgxxqzp7ik83qp4phf8637zvhv2f20sdcq")))) 13938 "13bzxipaxf66i2xvlmmfv8yhc2db6ndv05xgrxinspypiq3z469a"))))
7712 (build-system node-build-system) 13939 (build-system node-build-system)
7713 (arguments 13940 (arguments
7714 `(#:tests? 13941 '(#:tests? #f
7715 #f 13942 #:phases (modify-phases %standard-phases
7716 #:phases 13943 (delete 'build)
7717 (modify-phases 13944 (add-after 'patch-dependencies 'delete-dev-dependencies
7718 %standard-phases 13945 (lambda _
7719 (delete 'configure) 13946 (delete-dependencies '("ava")))))))
7720 (delete 'build)))) 13947 (inputs `(("node-unicode-property-aliases-ecmascript" ,node-unicode-property-aliases-ecmascript-2.1.0)
7721 (inputs 13948 ("node-unicode-canonical-property-names-ecmascript" ,node-unicode-canonical-property-names-ecmascript-2.0.0)))
7722 `(("node-unicode-property-aliases-ecmascript"
7723 ,node-unicode-property-aliases-ecmascript-1.1.0)
7724 ("node-unicode-canonical-property-names-ecmascript"
7725 ,node-unicode-canonical-property-names-ecmascript-1.0.4)))
7726 (home-page 13949 (home-page
7727 "https://github.com/mathiasbynens/unicode-match-property-ecmascript") 13950 "https://github.com/mathiasbynens/unicode-match-property-ecmascript")
7728 (synopsis 13951 (synopsis
7729 "Match a Unicode property or property alias to its canonical property name per the algorithm used for RegExp Unicode property escapes in ECMAScript.") 13952 "Match a Unicode property or property alias to its canonical property name per the algorithm used for RegExp Unicode property escapes in ECMAScript.")
7730 (description 13953 (description
7731 "Match a Unicode property or property alias to its canonical property name per the algorithm used for RegExp Unicode property escapes in ECMAScript.") 13954 "Match a Unicode property or property alias to its canonical property name per the algorithm used for RegExp Unicode property escapes in ECMAScript.")
7732 (license license:expat))) 13955 (license license:expat)))
7733 13956
7734(define-public node-unicode-match-property-value-ecmascript-1.2.0 13957(define-public node-unicode-match-property-value-ecmascript-2.1.0
7735 (package 13958 (package
7736 (name "node-unicode-match-property-value-ecmascript") 13959 (name "node-unicode-match-property-value-ecmascript")
7737 (version "1.2.0") 13960 (version "2.1.0")
7738 (source 13961 (source (origin
7739 (origin 13962 (method url-fetch)
7740 (method url-fetch) 13963 (uri
7741 (uri "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz") 13964 "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz")
7742 (sha256 13965 (sha256
7743 (base32 13966 (base32
7744 "13w08xs4vd5m5c9f9b3h13adar9gwr54wf5ki8a1q4z8q3g9970n")))) 13967 "04rsxphw84cbc7qqywcr7xh39ryhswfrzix0ycf8h3qnrm1x9p5m"))))
7745 (build-system node-build-system) 13968 (build-system node-build-system)
7746 (arguments 13969 (arguments
7747 `(#:tests? 13970 '(#:tests? #f
7748 #f 13971 #:phases (modify-phases %standard-phases
7749 #:phases 13972 (delete 'build)
7750 (modify-phases 13973 (add-after 'patch-dependencies 'delete-dev-dependencies
7751 %standard-phases 13974 (lambda _
7752 (delete 'configure) 13975 (delete-dependencies '("ava" "jsesc"
7753 (delete 'build)))) 13976 "unicode-property-value-aliases-ecmascript")))))))
7754 (home-page 13977 (home-page
7755 "https://github.com/mathiasbynens/unicode-match-property-value-ecmascript") 13978 "https://github.com/mathiasbynens/unicode-match-property-value-ecmascript")
7756 (synopsis 13979 (synopsis
7757 "Match a Unicode property or property alias to its canonical property name per the algorithm used for RegExp Unicode property escapes in ECMAScript.") 13980 "Match a Unicode property or property alias to its canonical property name per the algorithm used for RegExp Unicode property escapes in ECMAScript.")
7758 (description 13981 (description
7759 "Match a Unicode property or property alias to its canonical property name per the algorithm used for RegExp Unicode property escapes in ECMAScript.") 13982 "Match a Unicode property or property alias to its canonical property name per the algorithm used for RegExp Unicode property escapes in ECMAScript.")
7760 (license license:expat))) 13983 (license license:expat)))
7761 13984
7762(define-public node-regexpu-core-4.7.1 13985(define-public node-regexpu-core-4.8.0
7763 (package 13986 (package
7764 (name "node-regexpu-core") 13987 (name "node-regexpu-core")
7765 (version "4.7.1") 13988 (version "4.8.0")
7766 (source 13989 (source (origin
7767 (origin 13990 (method url-fetch)
7768 (method url-fetch) 13991 (uri
7769 (uri "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz") 13992 "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.8.0.tgz")
7770 (sha256 13993 (sha256
7771 (base32 13994 (base32
7772 "1klc37nx92vjs48f5gq1hiqignsbcyca0l20yagcj7k850vn329k")))) 13995 "0wsk7lkkaf8rs3lmmm7mjvjr6bcnsfsvyd607b15xyrk32k6k8hv"))))
7773 (build-system node-build-system) 13996 (build-system node-build-system)
7774 (arguments 13997 (arguments
7775 `(#:tests? 13998 '(#:tests? #f
7776 #f 13999 #:phases (modify-phases %standard-phases
7777 #:phases 14000 (delete 'build)
7778 (modify-phases 14001 (add-after 'patch-dependencies 'delete-dev-dependencies
7779 %standard-phases 14002 (lambda _
7780 (delete 'configure) 14003 (delete-dependencies '("codecov" "istanbul"
7781 (delete 'build)))) 14004 "jsesc"
7782 (inputs 14005 "lodash"
7783 `(("node-unicode-match-property-value-ecmascript" 14006 "mocha"
7784 ,node-unicode-match-property-value-ecmascript-1.2.0) 14007 "regexpu-fixtures"
7785 ("node-unicode-match-property-ecmascript" 14008 "@unicode/unicode-14.0.0")))))))
7786 ,node-unicode-match-property-ecmascript-1.0.4) 14009 (inputs `(("node-unicode-match-property-value-ecmascript" ,node-unicode-match-property-value-ecmascript-2.1.0)
7787 ("node-regjsparser" ,node-regjsparser-0.6.7) 14010 ("node-unicode-match-property-ecmascript" ,node-unicode-match-property-ecmascript-2.0.0)
7788 ("node-regjsgen" ,node-regjsgen-0.5.2) 14011 ("node-regjsparser" ,node-regjsparser-0.7.0)
7789 ("node-regenerate-unicode-properties" 14012 ("node-regjsgen" ,node-regjsgen-0.5.2)
7790 ,node-regenerate-unicode-properties-8.2.0) 14013 ("node-regenerate-unicode-properties" ,node-regenerate-unicode-properties-9.0.0)
7791 ("node-regenerate" ,node-regenerate-1.4.2))) 14014 ("node-regenerate" ,node-regenerate-1.4.2)))
7792 (home-page "https://mths.be/regexpu") 14015 (home-page "https://mths.be/regexpu")
7793 (synopsis 14016 (synopsis
7794 "regexpuâ\x80\x99s core functionality (i.e. `rewritePattern(pattern, flag)`), capable of translating ES6 Unicode regular expressions to ES5.") 14017 "regexpu’s core functionality (i.e. `rewritePattern(pattern, flag)`), capable of translating ES6 Unicode regular expressions to ES5.")
7795 (description 14018 (description
7796 "regexpuâ\x80\x99s core functionality (i.e. `rewritePattern(pattern, flag)`), capable of translating ES6 Unicode regular expressions to ES5.") 14019 "regexpu’s core functionality (i.e. `rewritePattern(pattern, flag)`), capable of translating ES6 Unicode regular expressions to ES5.")
7797 (license license:expat))) 14020 (license license:expat)))
7798 14021
7799(define-public node-aws-sign2-0.7.0 14022(define-public node-aws-sign2-0.7.0
7800 (package 14023 (package
7801 (name "node-aws-sign2") 14024 (name "node-aws-sign2")
7802 (version "0.7.0") 14025 (version "0.7.0")
7803 (source 14026 (source (origin
7804 (origin 14027 (method url-fetch)
7805 (method url-fetch) 14028 (uri
7806 (uri "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz") 14029 "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz")
7807 (sha256 14030 (sha256
7808 (base32 14031 (base32
7809 "12bjw01pgh0nfyxi7vw6lvsapyvnazrnyn4qf87lclardjaz9yd8")))) 14032 "12bjw01pgh0nfyxi7vw6lvsapyvnazrnyn4qf87lclardjaz9yd8"))))
7810 (build-system node-build-system) 14033 (build-system node-build-system)
7811 (arguments 14034 (arguments
7812 `(#:tests? 14035 '(#:tests? #f
7813 #f 14036 #:phases (modify-phases %standard-phases
7814 #:phases 14037 (delete 'build))))
7815 (modify-phases 14038 (home-page "https://github.com/mikeal/aws-sign#readme")
7816 %standard-phases
7817 (delete 'configure)
7818 (delete 'build))))
7819 (home-page
7820 "https://github.com/mikeal/aws-sign#readme")
7821 (synopsis 14039 (synopsis
7822 "AWS signing. Originally pulled from LearnBoost/knox, maintained as vendor in request, now a standalone module.") 14040 "AWS signing. Originally pulled from LearnBoost/knox, maintained as vendor in request, now a standalone module.")
7823 (description 14041 (description
7824 "AWS signing. Originally pulled from LearnBoost/knox, maintained as vendor in request, now a standalone module.") 14042 "AWS signing. Originally pulled from LearnBoost/knox, maintained as vendor in request, now a standalone module.")
7825 (license license:asl2.0))) 14043 (license license:asl2.0)))
7826 14044
7827(define-public node-aws4-1.11.0 14045(define-public node-aws4-1.12.0
7828 (package 14046 (package
7829 (name "node-aws4") 14047 (name "node-aws4")
7830 (version "1.11.0") 14048 (version "1.12.0")
7831 (source 14049 (source (origin
7832 (origin 14050 (method url-fetch)
7833 (method url-fetch) 14051 (uri "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz")
7834 (uri "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz") 14052 (sha256
7835 (sha256 14053 (base32
7836 (base32 14054 "073xjq7cq7x4wqpjay0bzzd3ssbyp0salb5d4wh1mksaa9xl2ccz"))))
7837 "1a9gd1wyx3k9agcprmgpfhp63w9v6cvf2kxfnijk77k6zcqqqjnd")))) 14055 (build-system node-build-system)
7838 (build-system node-build-system) 14056 (arguments
7839 (arguments 14057 '(#:tests? #f
7840 `(#:tests? 14058 #:phases (modify-phases %standard-phases
7841 #f 14059 (delete 'build)
7842 #:phases 14060 (add-after 'patch-dependencies 'delete-dev-dependencies
7843 (modify-phases 14061 (lambda _
7844 %standard-phases 14062 (delete-dependencies '("mocha" "should")))))))
7845 (delete 'configure) 14063 (home-page "https://github.com/mhart/aws4#readme")
7846 (delete 'build)))) 14064 (synopsis "Signs and prepares requests using AWS Signature Version 4")
7847 (home-page 14065 (description "Signs and prepares requests using AWS Signature Version 4")
7848 "https://github.com/mhart/aws4#readme")
7849 (synopsis
7850 "Signs and prepares requests using AWS Signature Version 4")
7851 (description
7852 "Signs and prepares requests using AWS Signature Version 4")
7853 (license license:expat))) 14066 (license license:expat)))
7854 14067
7855(define-public node-caseless-0.12.0 14068(define-public node-caseless-0.12.0
7856 (package 14069 (package
7857 (name "node-caseless") 14070 (name "node-caseless")
7858 (version "0.12.0") 14071 (version "0.12.0")
7859 (source 14072 (source (origin
7860 (origin 14073 (method url-fetch)
7861 (method url-fetch) 14074 (uri "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz")
7862 (uri "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz") 14075 (sha256
7863 (sha256 14076 (base32
7864 (base32 14077 "165fzm8s6qxapxk8xlb548q58xjav55k5nnychr234282irb2zjd"))))
7865 "165fzm8s6qxapxk8xlb548q58xjav55k5nnychr234282irb2zjd")))) 14078 (build-system node-build-system)
7866 (build-system node-build-system) 14079 (arguments
7867 (arguments 14080 '(#:tests? #f
7868 `(#:tests? 14081 #:phases (modify-phases %standard-phases
7869 #f 14082 (delete 'build)
7870 #:phases 14083 (add-after 'patch-dependencies 'delete-dev-dependencies
7871 (modify-phases 14084 (lambda _
7872 %standard-phases 14085 (delete-dependencies '("tape")))))))
7873 (delete 'configure) 14086 (home-page "https://github.com/mikeal/caseless#readme")
7874 (delete 'build))))
7875 (home-page
7876 "https://github.com/mikeal/caseless#readme")
7877 (synopsis 14087 (synopsis
7878 "Caseless object set/get/has, very useful when working with HTTP headers.") 14088 "Caseless object set/get/has, very useful when working with HTTP headers.")
7879 (description 14089 (description
7880 "Caseless object set/get/has, very useful when working with HTTP headers.") 14090 "Caseless object set/get/has, very useful when working with HTTP headers.")
7881 (license license:asl2.0))) 14091 (license license:asl2.0)))
7882 14092
7883(define-public node-combined-stream-1.0.8
7884 (package
7885 (name "node-combined-stream")
7886 (version "1.0.8")
7887 (source
7888 (origin
7889 (method url-fetch)
7890 (uri "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz")
7891 (sha256
7892 (base32
7893 "04hm5rrkwda2qgy1afwhrz42asmflw5hxkbpxddn741ywnmmmgmn"))))
7894 (build-system node-build-system)
7895 (arguments
7896 `(#:tests?
7897 #f
7898 #:phases
7899 (modify-phases
7900 %standard-phases
7901 (delete 'configure)
7902 (delete 'build))))
7903 (inputs
7904 `(("node-delayed-stream"
7905 ,node-delayed-stream-1.0.0)))
7906 (home-page
7907 "https://github.com/felixge/node-combined-stream")
7908 (synopsis
7909 "A stream that emits multiple other streams one after another.")
7910 (description
7911 "A stream that emits multiple other streams one after another.")
7912 (license license:expat)))
7913
7914(define-public node-extend-3.0.2 14093(define-public node-extend-3.0.2
7915 (package 14094 (package
7916 (name "node-extend") 14095 (name "node-extend")
7917 (version "3.0.2") 14096 (version "3.0.2")
7918 (source 14097 (source (origin
7919 (origin 14098 (method url-fetch)
7920 (method url-fetch) 14099 (uri "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz")
7921 (uri "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz") 14100 (sha256
7922 (sha256 14101 (base32
7923 (base32 14102 "1ckjrzapv4awrafybcvq3n5rcqm6ljswfdx97wibl355zaqd148x"))))
7924 "1ckjrzapv4awrafybcvq3n5rcqm6ljswfdx97wibl355zaqd148x")))) 14103 (build-system node-build-system)
7925 (build-system node-build-system) 14104 (arguments
7926 (arguments 14105 '(#:tests? #f
7927 `(#:tests? 14106 #:phases (modify-phases %standard-phases
7928 #f 14107 (delete 'build)
7929 #:phases 14108 (add-after 'patch-dependencies 'delete-dev-dependencies
7930 (modify-phases 14109 (lambda _
7931 %standard-phases 14110 (delete-dependencies '("@ljharb/eslint-config" "covert"
7932 (delete 'configure) 14111 "eslint" "jscs" "tape")))))))
7933 (delete 'build)))) 14112 (home-page "https://github.com/justmoon/node-extend#readme")
7934 (home-page 14113 (synopsis "Port of jQuery.extend for node.js and the browser")
7935 "https://github.com/justmoon/node-extend#readme") 14114 (description "Port of jQuery.extend for node.js and the browser")
7936 (synopsis
7937 "Port of jQuery.extend for node.js and the browser")
7938 (description
7939 "Port of jQuery.extend for node.js and the browser")
7940 (license license:expat))) 14115 (license license:expat)))
7941 14116
7942(define-public node-forever-agent-0.6.1 14117(define-public node-forever-agent-0.6.1
7943 (package 14118 (package
7944 (name "node-forever-agent") 14119 (name "node-forever-agent")
7945 (version "0.6.1") 14120 (version "0.6.1")
7946 (source 14121 (source (origin
7947 (origin 14122 (method url-fetch)
7948 (method url-fetch) 14123 (uri
7949 (uri "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz") 14124 "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz")
7950 (sha256 14125 (sha256
7951 (base32 14126 (base32
7952 "1i86r2ip6ryrnpg3v7pf0ywddhsdlr809xycd3zm9gq7zphn5a7c")))) 14127 "1i86r2ip6ryrnpg3v7pf0ywddhsdlr809xycd3zm9gq7zphn5a7c"))))
7953 (build-system node-build-system) 14128 (build-system node-build-system)
7954 (arguments 14129 (arguments
7955 `(#:tests? 14130 '(#:tests? #f
7956 #f 14131 #:phases (modify-phases %standard-phases
7957 #:phases 14132 (delete 'build))))
7958 (modify-phases 14133 (home-page "https://github.com/mikeal/forever-agent")
7959 %standard-phases
7960 (delete 'configure)
7961 (delete 'build))))
7962 (home-page
7963 "https://github.com/mikeal/forever-agent")
7964 (synopsis 14134 (synopsis
7965 "HTTP Agent that keeps socket connections alive between keep-alive requests. Formerly part of mikeal/request, now a standalone module.") 14135 "HTTP Agent that keeps socket connections alive between keep-alive requests. Formerly part of mikeal/request, now a standalone module.")
7966 (description 14136 (description
7967 "HTTP Agent that keeps socket connections alive between keep-alive requests. Formerly part of mikeal/request, now a standalone module.") 14137 "HTTP Agent that keeps socket connections alive between keep-alive requests. Formerly part of mikeal/request, now a standalone module.")
7968 (license license:asl2.0))) 14138 (license license:asl2.0)))
7969 14139
7970(define-public node-asynckit-0.4.0 14140(define-public node-asynckit-0.4.0
7971 (package 14141 (package
7972 (name "node-asynckit") 14142 (name "node-asynckit")
7973 (version "0.4.0") 14143 (version "0.4.0")
7974 (source 14144 (source (origin
7975 (origin 14145 (method url-fetch)
7976 (method url-fetch) 14146 (uri "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz")
7977 (uri "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz") 14147 (sha256
7978 (sha256 14148 (base32
7979 (base32 14149 "1kvxnmjbjwqc8gvp4ms7d8w8x7y41rcizmz4898694h7ywq4y9cc"))))
7980 "1kvxnmjbjwqc8gvp4ms7d8w8x7y41rcizmz4898694h7ywq4y9cc")))) 14150 (build-system node-build-system)
7981 (build-system node-build-system) 14151 (arguments
7982 (arguments 14152 '(#:tests? #f
7983 `(#:tests? 14153 #:phases (modify-phases %standard-phases
7984 #f 14154 (delete 'build)
7985 #:phases 14155 (add-after 'patch-dependencies 'delete-dev-dependencies
7986 (modify-phases 14156 (lambda _
7987 %standard-phases 14157 (delete-dependencies '("browserify"
7988 (delete 'configure) 14158 "browserify-istanbul"
7989 (delete 'build)))) 14159 "coveralls"
7990 (home-page 14160 "eslint"
7991 "https://github.com/alexindigo/asynckit#readme") 14161 "istanbul"
7992 (synopsis 14162 "obake"
7993 "Minimal async jobs utility library, with streams support") 14163 "phantomjs-prebuilt"
7994 (description 14164 "pre-commit"
7995 "Minimal async jobs utility library, with streams support") 14165 "reamde"
14166 "rimraf"
14167 "size-table"
14168 "tap-spec"
14169 "tape")))))))
14170 (home-page "https://github.com/alexindigo/asynckit#readme")
14171 (synopsis "Minimal async jobs utility library, with streams support")
14172 (description "Minimal async jobs utility library, with streams support")
7996 (license license:expat))) 14173 (license license:expat)))
7997 14174
7998(define-public node-delayed-stream-1.0.0 14175(define-public node-delayed-stream-1.0.0
7999 (package 14176 (package
8000 (name "node-delayed-stream") 14177 (name "node-delayed-stream")
8001 (version "1.0.0") 14178 (version "1.0.0")
8002 (source 14179 (source (origin
8003 (origin 14180 (method url-fetch)
8004 (method url-fetch) 14181 (uri
8005 (uri "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz") 14182 "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz")
8006 (sha256 14183 (sha256
8007 (base32 14184 (base32
8008 "1lr98585rayrc5xfj599hg6mxqvks38diir74ivivyvx47jgqf5c")))) 14185 "1lr98585rayrc5xfj599hg6mxqvks38diir74ivivyvx47jgqf5c"))))
8009 (build-system node-build-system) 14186 (build-system node-build-system)
8010 (arguments 14187 (arguments
8011 `(#:tests? 14188 '(#:tests? #f
8012 #f 14189 #:phases (modify-phases %standard-phases
8013 #:phases 14190 (delete 'build)
8014 (modify-phases 14191 (add-after 'patch-dependencies 'delete-dev-dependencies
8015 %standard-phases 14192 (lambda _
8016 (delete 'configure) 14193 (delete-dependencies '("fake" "far")))))))
8017 (delete 'build)))) 14194 (home-page "https://github.com/felixge/node-delayed-stream")
8018 (home-page
8019 "https://github.com/felixge/node-delayed-stream")
8020 (synopsis 14195 (synopsis
8021 "Buffers events from a stream until you are ready to handle them.") 14196 "Buffers events from a stream until you are ready to handle them.")
14197 (description
14198 "Buffers events from a stream until you are ready to handle them.")
14199 (license license:expat)))
14200
14201(define-public node-combined-stream-1.0.8
14202 (package
14203 (name "node-combined-stream")
14204 (version "1.0.8")
14205 (source (origin
14206 (method url-fetch)
14207 (uri
14208 "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz")
14209 (sha256
14210 (base32
14211 "04hm5rrkwda2qgy1afwhrz42asmflw5hxkbpxddn741ywnmmmgmn"))))
14212 (build-system node-build-system)
14213 (arguments
14214 '(#:tests? #f
14215 #:phases (modify-phases %standard-phases
14216 (delete 'build)
14217 (add-after 'patch-dependencies 'delete-dev-dependencies
14218 (lambda _
14219 (delete-dependencies '("far")))))))
14220 (inputs `(("node-delayed-stream" ,node-delayed-stream-1.0.0)))
14221 (home-page "https://github.com/felixge/node-combined-stream")
14222 (synopsis "A stream that emits multiple other streams one after another.")
8022 (description 14223 (description
8023 "Buffers events from a stream until you are ready to handle them.") 14224 "A stream that emits multiple other streams one after another.")
8024 (license license:expat))) 14225 (license license:expat)))
8025 14226
8026(define-public node-form-data-2.3.3 14227(define-public node-form-data-2.3.3
8027 (package 14228 (package
8028 (name "node-form-data") 14229 (name "node-form-data")
8029 (version "2.3.3") 14230 (version "2.3.3")
8030 (source 14231 (source (origin
8031 (origin 14232 (method url-fetch)
8032 (method url-fetch) 14233 (uri
8033 (uri "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz") 14234 "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz")
8034 (sha256 14235 (sha256
8035 (base32 14236 (base32
8036 "1j1ka178syqqaycr1m3vqahbb3bi7qsks0mp0iqbd6y7yj1wz7p3")))) 14237 "1j1ka178syqqaycr1m3vqahbb3bi7qsks0mp0iqbd6y7yj1wz7p3"))))
8037 (build-system node-build-system) 14238 (build-system node-build-system)
8038 (arguments 14239 (arguments
8039 `(#:tests? 14240 '(#:tests? #f
8040 #f 14241 #:phases (modify-phases %standard-phases
8041 #:phases 14242 (delete 'build)
8042 (modify-phases 14243 (add-after 'patch-dependencies 'delete-dev-dependencies
8043 %standard-phases 14244 (lambda _
8044 (delete 'configure) 14245 (delete-dependencies '("browserify"
8045 (delete 'build)))) 14246 "browserify-istanbul"
8046 (inputs 14247 "coveralls"
8047 `(("node-mime-types" ,node-mime-types-2.1.28) 14248 "cross-spawn"
8048 ("node-combined-stream" 14249 "eslint"
8049 ,node-combined-stream-1.0.8) 14250 "fake"
8050 ("node-asynckit" ,node-asynckit-0.4.0))) 14251 "far"
8051 (home-page 14252 "formidable"
8052 "https://github.com/form-data/form-data#readme") 14253 "in-publish"
8053 (synopsis 14254 "is-node-modern"
8054 "A library to create readable \"multipart/form-data\" streams. Can be used to submit forms and file uploads to other web applications.") 14255 "istanbul"
8055 (description 14256 "obake"
8056 "A library to create readable \"multipart/form-data\" streams. Can be used to submit forms and file uploads to other web applications.") 14257 "phantomjs-prebuilt"
14258 "pkgfiles"
14259 "pre-commit"
14260 "request"
14261 "rimraf"
14262 "tape")))))))
14263 (inputs `(("node-mime-types" ,node-mime-types-2.1.35)
14264 ("node-combined-stream" ,node-combined-stream-1.0.8)
14265 ("node-asynckit" ,node-asynckit-0.4.0)))
14266 (home-page "https://github.com/form-data/form-data#readme")
14267 (synopsis
14268 "A library to create readable \"multipart/form-data\" streams. Can be used to submit forms and file uploads to other web applications.")
14269 (description
14270 "A library to create readable \"multipart/form-data\" streams. Can be used to submit forms and file uploads to other web applications.")
8057 (license license:expat))) 14271 (license license:expat)))
8058 14272
8059(define-public node-fast-deep-equal-3.1.3 14273(define-public node-fast-deep-equal-3.1.3
8060 (package 14274 (package
8061 (name "node-fast-deep-equal") 14275 (name "node-fast-deep-equal")
8062 (version "3.1.3") 14276 (version "3.1.3")
8063 (source 14277 (source (origin
8064 (origin 14278 (method url-fetch)
8065 (method url-fetch) 14279 (uri
8066 (uri "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz") 14280 "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz")
8067 (sha256 14281 (sha256
8068 (base32 14282 (base32
8069 "13vvwib6za4zh7054n3fg86y127ig3jb0djqz31qsqr71yca06dh")))) 14283 "13vvwib6za4zh7054n3fg86y127ig3jb0djqz31qsqr71yca06dh"))))
8070 (build-system node-build-system) 14284 (build-system node-build-system)
8071 (arguments 14285 (arguments
8072 `(#:tests? 14286 '(#:tests? #f
8073 #f 14287 #:phases (modify-phases %standard-phases
8074 #:phases 14288 (delete 'build)
8075 (modify-phases 14289 (add-after 'patch-dependencies 'delete-dev-dependencies
8076 %standard-phases 14290 (lambda _
8077 (delete 'configure) 14291 (delete-dependencies '("coveralls" "dot"
8078 (delete 'build)))) 14292 "eslint"
8079 (home-page 14293 "mocha"
8080 "https://github.com/epoberezkin/fast-deep-equal#readme") 14294 "nyc"
14295 "pre-commit"
14296 "react"
14297 "react-test-renderer"
14298 "sinon"
14299 "typescript")))))))
14300 (home-page "https://github.com/epoberezkin/fast-deep-equal#readme")
8081 (synopsis "Fast deep equal") 14301 (synopsis "Fast deep equal")
8082 (description "Fast deep equal") 14302 (description "Fast deep equal")
8083 (license license:expat))) 14303 (license license:expat)))
@@ -8086,144 +14306,143 @@
8086 (package 14306 (package
8087 (name "node-fast-json-stable-stringify") 14307 (name "node-fast-json-stable-stringify")
8088 (version "2.1.0") 14308 (version "2.1.0")
8089 (source 14309 (source (origin
8090 (origin 14310 (method url-fetch)
8091 (method url-fetch) 14311 (uri
8092 (uri "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz") 14312 "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz")
8093 (sha256 14313 (sha256
8094 (base32 14314 (base32
8095 "11qnzlan5yd2hg9nqi9hdv48bq6kwvw9pxsxir22n2iyqhighb8y")))) 14315 "11qnzlan5yd2hg9nqi9hdv48bq6kwvw9pxsxir22n2iyqhighb8y"))))
8096 (build-system node-build-system) 14316 (build-system node-build-system)
8097 (arguments 14317 (arguments
8098 `(#:tests? 14318 '(#:tests? #f
8099 #f 14319 #:phases (modify-phases %standard-phases
8100 #:phases 14320 (delete 'build)
8101 (modify-phases 14321 (add-after 'patch-dependencies 'delete-dev-dependencies
8102 %standard-phases 14322 (lambda _
8103 (delete 'configure) 14323 (delete-dependencies '("benchmark" "coveralls"
8104 (delete 'build)))) 14324 "eslint"
8105 (home-page 14325 "fast-stable-stringify"
8106 "https://github.com/epoberezkin/fast-json-stable-stringify") 14326 "faster-stable-stringify"
8107 (synopsis 14327 "json-stable-stringify"
8108 "deterministic `JSON.stringify()` - a faster version of substack's json-stable-strigify without jsonify") 14328 "nyc"
8109 (description 14329 "pre-commit"
8110 "deterministic `JSON.stringify()` - a faster version of substack's json-stable-strigify without jsonify") 14330 "tape")))))))
14331 (home-page "https://github.com/epoberezkin/fast-json-stable-stringify")
14332 (synopsis
14333 "deterministic `JSON.stringify()` - a faster version of substack's json-stable-strigify without jsonify")
14334 (description
14335 "deterministic `JSON.stringify()` - a faster version of substack's json-stable-strigify without jsonify")
8111 (license license:expat))) 14336 (license license:expat)))
8112 14337
8113(define-public node-json-schema-traverse-0.4.1 14338(define-public node-json-schema-traverse-0.4.1
8114 (package 14339 (package
8115 (name "node-json-schema-traverse") 14340 (name "node-json-schema-traverse")
8116 (version "0.4.1") 14341 (version "0.4.1")
8117 (source 14342 (source (origin
8118 (origin 14343 (method url-fetch)
8119 (method url-fetch) 14344 (uri
8120 (uri "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz") 14345 "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz")
8121 (sha256 14346 (sha256
8122 (base32 14347 (base32
8123 "0rf0pvm62k8g81vs7n7zx080p6sfylwk52vc149jx1216vcssdgp")))) 14348 "0rf0pvm62k8g81vs7n7zx080p6sfylwk52vc149jx1216vcssdgp"))))
8124 (build-system node-build-system) 14349 (build-system node-build-system)
8125 (arguments 14350 (arguments
8126 `(#:tests? 14351 '(#:tests? #f
8127 #f 14352 #:phases (modify-phases %standard-phases
8128 #:phases 14353 (delete 'build)
8129 (modify-phases 14354 (add-after 'patch-dependencies 'delete-dev-dependencies
8130 %standard-phases 14355 (lambda _
8131 (delete 'configure) 14356 (delete-dependencies '("coveralls" "eslint" "mocha"
8132 (delete 'build)))) 14357 "nyc" "pre-commit")))))))
8133 (home-page 14358 (home-page "https://github.com/epoberezkin/json-schema-traverse#readme")
8134 "https://github.com/epoberezkin/json-schema-traverse#readme") 14359 (synopsis "Traverse JSON Schema passing each schema object to callback")
8135 (synopsis 14360 (description "Traverse JSON Schema passing each schema object to callback")
8136 "Traverse JSON Schema passing each schema object to callback")
8137 (description
8138 "Traverse JSON Schema passing each schema object to callback")
8139 (license license:expat)))
8140
8141(define-public node-punycode-2.1.1
8142 (package
8143 (name "node-punycode")
8144 (version "2.1.1")
8145 (source
8146 (origin
8147 (method url-fetch)
8148 (uri "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz")
8149 (sha256
8150 (base32
8151 "0g7z0kdxs15jrcijwbka2jajgr4b7bvpa6xmrcs0wf82pxwx1k75"))))
8152 (build-system node-build-system)
8153 (arguments
8154 `(#:tests?
8155 #f
8156 #:phases
8157 (modify-phases
8158 %standard-phases
8159 (delete 'configure)
8160 (delete 'build))))
8161 (home-page "https://mths.be/punycode")
8162 (synopsis
8163 "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.")
8164 (description
8165 "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.")
8166 (license license:expat))) 14361 (license license:expat)))
8167 14362
8168(define-public node-uri-js-4.4.1 14363(define-public node-uri-js-4.4.1
8169 (package 14364 (package
8170 (name "node-uri-js") 14365 (name "node-uri-js")
8171 (version "4.4.1") 14366 (version "4.4.1")
8172 (source 14367 (source (origin
8173 (origin 14368 (method url-fetch)
8174 (method url-fetch) 14369 (uri "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz")
8175 (uri "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz") 14370 (sha256
8176 (sha256 14371 (base32
8177 (base32 14372 "0bcdxkngap84iv7hpfa4r18i3a3allxfh6dmcqzafgg8mx9dw4jn"))))
8178 "0bcdxkngap84iv7hpfa4r18i3a3allxfh6dmcqzafgg8mx9dw4jn")))) 14373 (build-system node-build-system)
8179 (build-system node-build-system) 14374 (arguments
8180 (arguments 14375 '(#:tests? #f
8181 `(#:tests? 14376 #:phases (modify-phases %standard-phases
8182 #f 14377 (delete 'build)
8183 #:phases 14378 (add-after 'patch-dependencies 'delete-dev-dependencies
8184 (modify-phases 14379 (lambda _
8185 %standard-phases 14380 (delete-dependencies '("babel-cli"
8186 (delete 'configure) 14381 "babel-plugin-external-helpers"
8187 (delete 'build)))) 14382 "babel-preset-latest"
8188 (inputs 14383 "mocha"
8189 `(("node-punycode" ,node-punycode-2.1.1))) 14384 "mocha-qunit-ui"
14385 "rollup"
14386 "rollup-plugin-babel"
14387 "rollup-plugin-node-resolve"
14388 "sorcery"
14389 "typescript"
14390 "uglify-js")))))))
14391 (inputs `(("node-punycode" ,node-punycode-2.3.0)))
8190 (home-page "https://github.com/garycourt/uri-js") 14392 (home-page "https://github.com/garycourt/uri-js")
8191 (synopsis 14393 (synopsis
8192 "An RFC 3986/3987 compliant, scheme extendable URI/IRI parsing/validating/resolving library for JavaScript.") 14394 "An RFC 3986/3987 compliant, scheme extendable URI/IRI parsing/validating/resolving library for JavaScript.")
8193 (description 14395 (description
8194 "An RFC 3986/3987 compliant, scheme extendable URI/IRI parsing/validating/resolving library for JavaScript.") 14396 "An RFC 3986/3987 compliant, scheme extendable URI/IRI parsing/validating/resolving library for JavaScript.")
8195 (license (license:non-copyleft "unknown")))) 14397 (license license:bsd-2)))
8196 14398
8197(define-public node-ajv-6.12.6 14399(define-public node-ajv-6.12.6
8198 (package 14400 (package
8199 (name "node-ajv") 14401 (name "node-ajv")
8200 (version "6.12.6") 14402 (version "6.12.6")
8201 (source 14403 (source (origin
8202 (origin 14404 (method url-fetch)
8203 (method url-fetch) 14405 (uri "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz")
8204 (uri "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz") 14406 (sha256
8205 (sha256 14407 (base32
8206 (base32 14408 "0jhk2dnzrk188p3micnkh7126lhdbkj9iip0pywhky6vh1dk8xcr"))))
8207 "0jhk2dnzrk188p3micnkh7126lhdbkj9iip0pywhky6vh1dk8xcr")))) 14409 (build-system node-build-system)
8208 (build-system node-build-system) 14410 (arguments
8209 (arguments 14411 '(#:tests? #f
8210 `(#:tests? 14412 #:phases (modify-phases %standard-phases
8211 #f 14413 (delete 'build)
8212 #:phases 14414 (add-after 'patch-dependencies 'delete-dev-dependencies
8213 (modify-phases 14415 (lambda _
8214 %standard-phases 14416 (delete-dependencies '("ajv-async" "bluebird"
8215 (delete 'configure) 14417 "brfs"
8216 (delete 'build)))) 14418 "browserify"
8217 (inputs 14419 "chai"
8218 `(("node-uri-js" ,node-uri-js-4.4.1) 14420 "coveralls"
8219 ("node-json-schema-traverse" 14421 "del-cli"
8220 ,node-json-schema-traverse-0.4.1) 14422 "dot"
8221 ("node-fast-json-stable-stringify" 14423 "eslint"
8222 ,node-fast-json-stable-stringify-2.1.0) 14424 "gh-pages-generator"
8223 ("node-fast-deep-equal" 14425 "glob"
8224 ,node-fast-deep-equal-3.1.3))) 14426 "if-node-version"
8225 (home-page 14427 "js-beautify"
8226 "https://github.com/ajv-validator/ajv") 14428 "jshint"
14429 "json-schema-test"
14430 "karma"
14431 "karma-chrome-launcher"
14432 "karma-mocha"
14433 "karma-sauce-launcher"
14434 "mocha"
14435 "nyc"
14436 "pre-commit"
14437 "require-globify"
14438 "typescript"
14439 "uglify-js"
14440 "watch")))))))
14441 (inputs `(("node-uri-js" ,node-uri-js-4.4.1)
14442 ("node-json-schema-traverse" ,node-json-schema-traverse-0.4.1)
14443 ("node-fast-json-stable-stringify" ,node-fast-json-stable-stringify-2.1.0)
14444 ("node-fast-deep-equal" ,node-fast-deep-equal-3.1.3)))
14445 (home-page "https://github.com/ajv-validator/ajv")
8227 (synopsis "Another JSON Schema Validator") 14446 (synopsis "Another JSON Schema Validator")
8228 (description "Another JSON Schema Validator") 14447 (description "Another JSON Schema Validator")
8229 (license license:expat))) 14448 (license license:expat)))
@@ -8232,192 +14451,144 @@
8232 (package 14451 (package
8233 (name "node-har-schema") 14452 (name "node-har-schema")
8234 (version "2.0.0") 14453 (version "2.0.0")
8235 (source 14454 (source (origin
8236 (origin 14455 (method url-fetch)
8237 (method url-fetch) 14456 (uri
8238 (uri "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz") 14457 "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz")
8239 (sha256 14458 (sha256
8240 (base32 14459 (base32
8241 "09myh5q5225c53v39mw9n3a2kgf2pk0z9dfwbmm7rbb70npq8yrf")))) 14460 "09myh5q5225c53v39mw9n3a2kgf2pk0z9dfwbmm7rbb70npq8yrf"))))
8242 (build-system node-build-system) 14461 (build-system node-build-system)
8243 (arguments 14462 (arguments
8244 `(#:tests? 14463 '(#:tests? #f
8245 #f 14464 #:phases (modify-phases %standard-phases
8246 #:phases 14465 (delete 'build)
8247 (modify-phases 14466 (add-after 'patch-dependencies 'delete-dev-dependencies
8248 %standard-phases 14467 (lambda _
8249 (delete 'configure) 14468 (delete-dependencies '("ajv" "codeclimate-test-reporter"
8250 (delete 'build)))) 14469 "cz-conventional-changelog"
8251 (home-page 14470 "echint"
8252 "https://github.com/ahmadnassri/har-schema") 14471 "semantic-release"
14472 "snazzy"
14473 "tap")))))))
14474 (home-page "https://github.com/ahmadnassri/har-schema")
8253 (synopsis "JSON Schema for HTTP Archive (HAR)") 14475 (synopsis "JSON Schema for HTTP Archive (HAR)")
8254 (description 14476 (description "JSON Schema for HTTP Archive (HAR)")
8255 "JSON Schema for HTTP Archive (HAR)")
8256 (license license:isc))) 14477 (license license:isc)))
8257 14478
8258(define-public node-har-validator-5.1.5 14479(define-public node-har-validator-5.1.5
8259 (package 14480 (package
8260 (name "node-har-validator") 14481 (name "node-har-validator")
8261 (version "5.1.5") 14482 (version "5.1.5")
8262 (source 14483 (source (origin
8263 (origin 14484 (method url-fetch)
8264 (method url-fetch) 14485 (uri
8265 (uri "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz") 14486 "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz")
8266 (sha256 14487 (sha256
8267 (base32 14488 (base32
8268 "02vymdr8s3x1cbsv15m9fq6bnbiajyjy8vdz0hl9vrv8xi5ay27f")))) 14489 "02vymdr8s3x1cbsv15m9fq6bnbiajyjy8vdz0hl9vrv8xi5ay27f"))))
8269 (build-system node-build-system) 14490 (build-system node-build-system)
8270 (arguments 14491 (arguments
8271 `(#:tests? 14492 '(#:tests? #f
8272 #f 14493 #:phases (modify-phases %standard-phases
8273 #:phases 14494 (delete 'build)
8274 (modify-phases 14495 (add-after 'patch-dependencies 'delete-dev-dependencies
8275 %standard-phases 14496 (lambda _
8276 (delete 'configure) 14497 (delete-dependencies '("tap")))))))
8277 (delete 'build)))) 14498 (inputs `(("node-har-schema" ,node-har-schema-2.0.0)
8278 (inputs 14499 ("node-ajv" ,node-ajv-6.12.6)))
8279 `(("node-har-schema" ,node-har-schema-2.0.0) 14500 (home-page "https://github.com/ahmadnassri/node-har-validator")
8280 ("node-ajv" ,node-ajv-6.12.6))) 14501 (synopsis "Extremely fast HTTP Archive (HAR) validator using JSON Schema")
8281 (home-page
8282 "https://github.com/ahmadnassri/node-har-validator")
8283 (synopsis
8284 "Extremely fast HTTP Archive (HAR) validator using JSON Schema")
8285 (description
8286 "Extremely fast HTTP Archive (HAR) validator using JSON Schema")
8287 (license license:expat)))
8288
8289(define-public node-assert-plus-1.0.0
8290 (package
8291 (name "node-assert-plus")
8292 (version "1.0.0")
8293 (source
8294 (origin
8295 (method url-fetch)
8296 (uri "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz")
8297 (sha256
8298 (base32
8299 "1srkj0nyslz3rbfncj59sqbsllavmwik8gphd7jxwjshf52mras7"))))
8300 (build-system node-build-system)
8301 (arguments
8302 `(#:tests?
8303 #f
8304 #:phases
8305 (modify-phases
8306 %standard-phases
8307 (delete 'configure)
8308 (delete 'build))))
8309 (home-page
8310 "https://github.com/mcavage/node-assert-plus#readme")
8311 (synopsis
8312 "Extra assertions on top of node's assert module")
8313 (description 14502 (description
8314 "Extra assertions on top of node's assert module") 14503 "Extremely fast HTTP Archive (HAR) validator using JSON Schema")
8315 (license license:expat))) 14504 (license license:expat)))
8316 14505
8317(define-public node-extsprintf-1.3.0 14506(define-public node-extsprintf-1.3.0
8318 (package 14507 (package
8319 (name "node-extsprintf") 14508 (name "node-extsprintf")
8320 (version "1.3.0") 14509 (version "1.3.0")
8321 (source 14510 (source (origin
8322 (origin 14511 (method url-fetch)
8323 (method url-fetch) 14512 (uri
8324 (uri "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz") 14513 "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz")
8325 (sha256 14514 (sha256
8326 (base32 14515 (base32
8327 "0i6hmr7mkg76rgrxs7f0xny48kha2xi03wj43mfik77m0lk3k6yg")))) 14516 "0i6hmr7mkg76rgrxs7f0xny48kha2xi03wj43mfik77m0lk3k6yg"))))
8328 (build-system node-build-system) 14517 (build-system node-build-system)
8329 (arguments 14518 (arguments
8330 `(#:tests? 14519 '(#:tests? #f
8331 #f 14520 #:phases (modify-phases %standard-phases
8332 #:phases 14521 (delete 'build))))
8333 (modify-phases 14522 (home-page "https://github.com/davepacheco/node-extsprintf")
8334 %standard-phases
8335 (delete 'configure)
8336 (delete 'build))))
8337 (home-page
8338 "https://github.com/davepacheco/node-extsprintf")
8339 (synopsis "extended POSIX-style sprintf") 14523 (synopsis "extended POSIX-style sprintf")
8340 (description "extended POSIX-style sprintf") 14524 (description "extended POSIX-style sprintf")
8341 (license license:expat))) 14525 (license license:expat)))
8342 14526
8343(define-public node-json-schema-0.2.3 14527(define-public node-json-schema-0.4.0
8344 (package 14528 (package
8345 (name "node-json-schema") 14529 (name "node-json-schema")
8346 (version "0.2.3") 14530 (version "0.4.0")
8347 (source 14531 (source (origin
8348 (origin 14532 (method url-fetch)
8349 (method url-fetch) 14533 (uri
8350 (uri "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz") 14534 "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz")
8351 (sha256 14535 (sha256
8352 (base32 14536 (base32
8353 "0gwkxqmwlwb5nffgxsjf1rcd1lv21br555mxr5mcnc60zd9kq5p3")))) 14537 "0jdkfpin57qi9h45afiznjan7m1xm51jn0f0g1y91i1szzrgya1b"))))
8354 (build-system node-build-system) 14538 (build-system node-build-system)
8355 (arguments 14539 (arguments
8356 `(#:tests? 14540 '(#:tests? #f
8357 #f 14541 #:phases (modify-phases %standard-phases
8358 #:phases 14542 (delete 'build)
8359 (modify-phases 14543 (add-after 'patch-dependencies 'delete-dev-dependencies
8360 %standard-phases 14544 (lambda _
8361 (delete 'configure) 14545 (delete-dependencies '("vows")))))))
8362 (delete 'build)))) 14546 (home-page "https://github.com/kriszyp/json-schema#readme")
8363 (home-page 14547 (synopsis "JSON Schema validation and specifications")
8364 "https://github.com/kriszyp/json-schema#readme") 14548 (description "JSON Schema validation and specifications")
8365 (synopsis 14549 (license #f)))
8366 "JSON Schema validation and specifications")
8367 (description
8368 "JSON Schema validation and specifications")
8369 (license (license:non-copyleft "unknown"))))
8370 14550
8371(define-public node-core-util-is-1.0.2 14551(define-public node-core-util-is-1.0.2
8372 (package 14552 (package
8373 (name "node-core-util-is") 14553 (name "node-core-util-is")
8374 (version "1.0.2") 14554 (version "1.0.2")
8375 (source 14555 (source (origin
8376 (origin 14556 (method url-fetch)
8377 (method url-fetch) 14557 (uri
8378 (uri "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz") 14558 "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz")
8379 (sha256 14559 (sha256
8380 (base32 14560 (base32
8381 "164k94d9bdzw1335kzakj7hflhnnixpx4n6ydbhf7vbrcnmlv954")))) 14561 "164k94d9bdzw1335kzakj7hflhnnixpx4n6ydbhf7vbrcnmlv954"))))
8382 (build-system node-build-system) 14562 (build-system node-build-system)
8383 (arguments 14563 (arguments
8384 `(#:tests? 14564 '(#:tests? #f
8385 #f 14565 #:phases (modify-phases %standard-phases
8386 #:phases 14566 (delete 'build)
8387 (modify-phases 14567 (add-after 'patch-dependencies 'delete-dev-dependencies
8388 %standard-phases 14568 (lambda _
8389 (delete 'configure) 14569 (delete-dependencies '("tap")))))))
8390 (delete 'build)))) 14570 (home-page "https://github.com/isaacs/core-util-is#readme")
8391 (home-page 14571 (synopsis "The `util.is*` functions introduced in Node v0.12.")
8392 "https://github.com/isaacs/core-util-is#readme") 14572 (description "The `util.is*` functions introduced in Node v0.12.")
8393 (synopsis
8394 "The `util.is*` functions introduced in Node v0.12.")
8395 (description
8396 "The `util.is*` functions introduced in Node v0.12.")
8397 (license license:expat))) 14573 (license license:expat)))
8398 14574
8399(define-public node-extsprintf-1.4.0 14575(define-public node-extsprintf-1.4.1
8400 (package 14576 (package
8401 (name "node-extsprintf") 14577 (name "node-extsprintf")
8402 (version "1.4.0") 14578 (version "1.4.1")
8403 (source 14579 (source (origin
8404 (origin 14580 (method url-fetch)
8405 (method url-fetch) 14581 (uri
8406 (uri "https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.0.tgz") 14582 "https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.1.tgz")
8407 (sha256 14583 (sha256
8408 (base32 14584 (base32
8409 "1lphcbxrq7x1gz84f71hx7z4fkick5knxbif1cxim53ifn5cwrxm")))) 14585 "1k3s5pdmrc0j52xzh9bbna3fsyplg1626k898laaq4ibr3axcks5"))))
8410 (build-system node-build-system) 14586 (build-system node-build-system)
8411 (arguments 14587 (arguments
8412 `(#:tests? 14588 '(#:tests? #f
8413 #f 14589 #:phases (modify-phases %standard-phases
8414 #:phases 14590 (delete 'build))))
8415 (modify-phases 14591 (home-page "https://github.com/davepacheco/node-extsprintf#readme")
8416 %standard-phases
8417 (delete 'configure)
8418 (delete 'build))))
8419 (home-page
8420 "https://github.com/davepacheco/node-extsprintf#readme")
8421 (synopsis "extended POSIX-style sprintf") 14592 (synopsis "extended POSIX-style sprintf")
8422 (description "extended POSIX-style sprintf") 14593 (description "extended POSIX-style sprintf")
8423 (license license:expat))) 14594 (license license:expat)))
@@ -8426,665 +14597,692 @@
8426 (package 14597 (package
8427 (name "node-verror") 14598 (name "node-verror")
8428 (version "1.10.0") 14599 (version "1.10.0")
8429 (source 14600 (source (origin
8430 (origin 14601 (method url-fetch)
8431 (method url-fetch) 14602 (uri "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz")
8432 (uri "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz") 14603 (sha256
8433 (sha256 14604 (base32
8434 (base32 14605 "0swyg46nvq95xlrrjjbhhmhjrdxg19yrc1aj69zipck0vi24b6q1"))))
8435 "0swyg46nvq95xlrrjjbhhmhjrdxg19yrc1aj69zipck0vi24b6q1")))) 14606 (build-system node-build-system)
8436 (build-system node-build-system) 14607 (arguments
8437 (arguments 14608 '(#:tests? #f
8438 `(#:tests? 14609 #:phases (modify-phases %standard-phases
8439 #f 14610 (delete 'build))))
8440 #:phases 14611 (inputs `(("node-extsprintf" ,node-extsprintf-1.4.1)
8441 (modify-phases 14612 ("node-core-util-is" ,node-core-util-is-1.0.2)
8442 %standard-phases 14613 ("node-assert-plus" ,node-assert-plus-1.0.0)))
8443 (delete 'configure) 14614 (home-page "https://github.com/davepacheco/node-verror")
8444 (delete 'build))))
8445 (inputs
8446 `(("node-extsprintf" ,node-extsprintf-1.4.0)
8447 ("node-core-util-is" ,node-core-util-is-1.0.2)
8448 ("node-assert-plus" ,node-assert-plus-1.0.0)))
8449 (home-page
8450 "https://github.com/davepacheco/node-verror")
8451 (synopsis "richer JavaScript errors") 14615 (synopsis "richer JavaScript errors")
8452 (description "richer JavaScript errors") 14616 (description "richer JavaScript errors")
8453 (license license:expat))) 14617 (license license:expat)))
8454 14618
8455(define-public node-jsprim-1.4.1 14619(define-public node-jsprim-1.4.2
8456 (package 14620 (package
8457 (name "node-jsprim") 14621 (name "node-jsprim")
8458 (version "1.4.1") 14622 (version "1.4.2")
8459 (source 14623 (source (origin
8460 (origin 14624 (method url-fetch)
8461 (method url-fetch) 14625 (uri "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz")
8462 (uri "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz") 14626 (sha256
8463 (sha256 14627 (base32
8464 (base32 14628 "1qnwv3p5r2xs7r8mdf28nb9xbammmjrl4zhigmx0p3022n8gk5d2"))))
8465 "0ipc481jham9q4ayfl335zjdfmnxc1wcixx5qibfwl2ncz60gwqx")))) 14629 (build-system node-build-system)
8466 (build-system node-build-system) 14630 (arguments
8467 (arguments 14631 '(#:tests? #f
8468 `(#:tests? 14632 #:phases (modify-phases %standard-phases
8469 #f 14633 (delete 'build))))
8470 #:phases 14634 (inputs `(("node-verror" ,node-verror-1.10.0)
8471 (modify-phases 14635 ("node-json-schema" ,node-json-schema-0.4.0)
8472 %standard-phases 14636 ("node-extsprintf" ,node-extsprintf-1.3.0)
8473 (delete 'configure) 14637 ("node-assert-plus" ,node-assert-plus-1.0.0)))
8474 (delete 'build)))) 14638 (home-page "https://github.com/joyent/node-jsprim#readme")
8475 (inputs 14639 (synopsis "utilities for primitive JavaScript types")
8476 `(("node-verror" ,node-verror-1.10.0) 14640 (description "utilities for primitive JavaScript types")
8477 ("node-json-schema" ,node-json-schema-0.2.3)
8478 ("node-extsprintf" ,node-extsprintf-1.3.0)
8479 ("node-assert-plus" ,node-assert-plus-1.0.0)))
8480 (home-page
8481 "https://github.com/joyent/node-jsprim#readme")
8482 (synopsis
8483 "utilities for primitive JavaScript types")
8484 (description
8485 "utilities for primitive JavaScript types")
8486 (license license:expat))) 14641 (license license:expat)))
8487 14642
8488(define-public node-asn1-0.2.4 14643(define-public node-asn1-0.2.6
8489 (package 14644 (package
8490 (name "node-asn1") 14645 (name "node-asn1")
8491 (version "0.2.4") 14646 (version "0.2.6")
8492 (source 14647 (source (origin
8493 (origin 14648 (method url-fetch)
8494 (method url-fetch) 14649 (uri "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz")
8495 (uri "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz") 14650 (sha256
8496 (sha256 14651 (base32
8497 (base32 14652 "0l72iwxdhwl7h4qafw9pxrxvas4r5ck3knhb66p83xp337znzjhp"))))
8498 "0fymjdkmd7kg4kyga0hssiwdz9jz5nv8fyndl3l1dr9q9jbl9971")))) 14653 (build-system node-build-system)
8499 (build-system node-build-system) 14654 (arguments
8500 (arguments 14655 '(#:tests? #f
8501 `(#:tests? 14656 #:phases (modify-phases %standard-phases
8502 #f 14657 (delete 'build)
8503 #:phases 14658 (add-after 'patch-dependencies 'delete-dev-dependencies
8504 (modify-phases 14659 (lambda _
8505 %standard-phases 14660 (delete-dependencies '("istanbul" "faucet" "tape"
8506 (delete 'configure) 14661 "eslint" "eslint-plugin-joyent")))))))
8507 (delete 'build)))) 14662 (inputs `(("node-safer-buffer" ,node-safer-buffer-2.1.2)))
8508 (inputs 14663 (home-page "https://github.com/joyent/node-asn1#readme")
8509 `(("node-safer-buffer" ,node-safer-buffer-2.1.2)))
8510 (home-page
8511 "https://github.com/joyent/node-asn1#readme")
8512 (synopsis 14664 (synopsis
8513 "Contains parsers and serializers for ASN.1 (currently BER only)") 14665 "Contains parsers and serializers for ASN.1 (currently BER only)")
8514 (description 14666 (description
8515 "Contains parsers and serializers for ASN.1 (currently BER only)") 14667 "Contains parsers and serializers for ASN.1 (currently BER only)")
8516 (license license:expat))) 14668 (license license:expat)))
8517 14669
8518(define-public node-dashdash-1.14.1 14670(define-public node-dashdash-1.14.1
8519 (package 14671 (package
8520 (name "node-dashdash") 14672 (name "node-dashdash")
8521 (version "1.14.1") 14673 (version "1.14.1")
8522 (source 14674 (source (origin
8523 (origin 14675 (method url-fetch)
8524 (method url-fetch) 14676 (uri "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz")
8525 (uri "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz") 14677 (sha256
8526 (sha256 14678 (base32
8527 (base32 14679 "0h2kaml5wgx5x430wlbnjz3j6q1ppvndqckylfmi13xa33gfnycb"))))
8528 "0h2kaml5wgx5x430wlbnjz3j6q1ppvndqckylfmi13xa33gfnycb")))) 14680 (build-system node-build-system)
8529 (build-system node-build-system) 14681 (arguments
8530 (arguments 14682 '(#:tests? #f
8531 `(#:tests? 14683 #:phases (modify-phases %standard-phases
8532 #f 14684 (delete 'build)
8533 #:phases 14685 (add-after 'patch-dependencies 'delete-dev-dependencies
8534 (modify-phases 14686 (lambda _
8535 %standard-phases 14687 (delete-dependencies '("nodeunit")))))))
8536 (delete 'configure) 14688 (inputs `(("node-assert-plus" ,node-assert-plus-1.0.0)))
8537 (delete 'build)))) 14689 (home-page "https://github.com/trentm/node-dashdash#readme")
8538 (inputs 14690 (synopsis "A light, featureful and explicit option parsing library.")
8539 `(("node-assert-plus" ,node-assert-plus-1.0.0))) 14691 (description "A light, featureful and explicit option parsing library.")
8540 (home-page 14692 (license license:expat)))
8541 "https://github.com/trentm/node-dashdash#readme") 14693
8542 (synopsis 14694(define-public node-assert-plus-1.0.0
8543 "A light, featureful and explicit option parsing library.") 14695 (package
8544 (description 14696 (name "node-assert-plus")
8545 "A light, featureful and explicit option parsing library.") 14697 (version "1.0.0")
14698 (source (origin
14699 (method url-fetch)
14700 (uri
14701 "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz")
14702 (sha256
14703 (base32
14704 "1srkj0nyslz3rbfncj59sqbsllavmwik8gphd7jxwjshf52mras7"))))
14705 (build-system node-build-system)
14706 (arguments
14707 '(#:tests? #f
14708 #:phases (modify-phases %standard-phases
14709 (delete 'build)
14710 (add-after 'patch-dependencies 'delete-dev-dependencies
14711 (lambda _
14712 (delete-dependencies '("tape" "faucet")))))))
14713 (home-page "https://github.com/mcavage/node-assert-plus#readme")
14714 (synopsis "Extra assertions on top of node's assert module")
14715 (description "Extra assertions on top of node's assert module")
8546 (license license:expat))) 14716 (license license:expat)))
8547 14717
8548(define-public node-getpass-0.1.7 14718(define-public node-getpass-0.1.7
8549 (package 14719 (package
8550 (name "node-getpass") 14720 (name "node-getpass")
8551 (version "0.1.7") 14721 (version "0.1.7")
8552 (source 14722 (source (origin
8553 (origin 14723 (method url-fetch)
8554 (method url-fetch) 14724 (uri "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz")
8555 (uri "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz") 14725 (sha256
8556 (sha256 14726 (base32
8557 (base32 14727 "0ifl7rdzhkbwzb2pmi6mxvv92qd2ihbfbfkipw9nqvbn22x140wg"))))
8558 "0ifl7rdzhkbwzb2pmi6mxvv92qd2ihbfbfkipw9nqvbn22x140wg")))) 14728 (build-system node-build-system)
8559 (build-system node-build-system) 14729 (arguments
8560 (arguments 14730 '(#:tests? #f
8561 `(#:tests? 14731 #:phases (modify-phases %standard-phases
8562 #f 14732 (delete 'build))))
8563 #:phases 14733 (inputs `(("node-assert-plus" ,node-assert-plus-1.0.0)))
8564 (modify-phases 14734 (home-page "https://github.com/arekinath/node-getpass#readme")
8565 %standard-phases
8566 (delete 'configure)
8567 (delete 'build))))
8568 (inputs
8569 `(("node-assert-plus" ,node-assert-plus-1.0.0)))
8570 (home-page
8571 "https://github.com/arekinath/node-getpass#readme")
8572 (synopsis "getpass for node.js") 14735 (synopsis "getpass for node.js")
8573 (description "getpass for node.js") 14736 (description "getpass for node.js")
8574 (license license:expat))) 14737 (license license:expat)))
8575 14738
8576(define-public node-tweetnacl-0.14.5
8577 (package
8578 (name "node-tweetnacl")
8579 (version "0.14.5")
8580 (source
8581 (origin
8582 (method url-fetch)
8583 (uri "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz")
8584 (sha256
8585 (base32
8586 "1mnzrxlww1sqwv493gn6ph9ak7n8l9w5qrahsa5kzn4vgbb37skc"))))
8587 (build-system node-build-system)
8588 (arguments
8589 `(#:tests?
8590 #f
8591 #:phases
8592 (modify-phases
8593 %standard-phases
8594 (delete 'configure)
8595 (delete 'build))))
8596 (home-page "https://tweetnacl.js.org")
8597 (synopsis
8598 "Port of TweetNaCl cryptographic library to JavaScript")
8599 (description
8600 "Port of TweetNaCl cryptographic library to JavaScript")
8601 (license license:unlicense)))
8602
8603(define-public node-jsbn-0.1.1 14739(define-public node-jsbn-0.1.1
8604 (package 14740 (package
8605 (name "node-jsbn") 14741 (name "node-jsbn")
8606 (version "0.1.1") 14742 (version "0.1.1")
8607 (source 14743 (source (origin
8608 (origin 14744 (method url-fetch)
8609 (method url-fetch) 14745 (uri "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz")
8610 (uri "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz") 14746 (sha256
8611 (sha256 14747 (base32
8612 (base32 14748 "08r3wxx18yixax4w9rs18ya1ggw6kgzjhw5vbsj7sb8a974lpi2s"))))
8613 "08r3wxx18yixax4w9rs18ya1ggw6kgzjhw5vbsj7sb8a974lpi2s")))) 14749 (build-system node-build-system)
8614 (build-system node-build-system) 14750 (arguments
8615 (arguments 14751 '(#:tests? #f
8616 `(#:tests? 14752 #:phases (modify-phases %standard-phases
8617 #f 14753 (delete 'build))))
8618 #:phases 14754 (home-page "https://github.com/andyperlitch/jsbn#readme")
8619 (modify-phases
8620 %standard-phases
8621 (delete 'configure)
8622 (delete 'build))))
8623 (home-page
8624 "https://github.com/andyperlitch/jsbn#readme")
8625 (synopsis 14755 (synopsis
8626 "The jsbn library is a fast, portable implementation of large-number math in pure JavaScript, enabling public-key crypto and other applications on desktop and mobile browsers.") 14756 "The jsbn library is a fast, portable implementation of large-number math in pure JavaScript, enabling public-key crypto and other applications on desktop and mobile browsers.")
8627 (description 14757 (description
8628 "The jsbn library is a fast, portable implementation of large-number math in pure JavaScript, enabling public-key crypto and other applications on desktop and mobile browsers.") 14758 "The jsbn library is a fast, portable implementation of large-number math in pure JavaScript, enabling public-key crypto and other applications on desktop and mobile browsers.")
8629 (license license:expat))) 14759 (license license:expat)))
8630 14760
8631(define-public node-ecc-jsbn-0.1.2 14761(define-public node-ecc-jsbn-0.1.2
8632 (package 14762 (package
8633 (name "node-ecc-jsbn") 14763 (name "node-ecc-jsbn")
8634 (version "0.1.2") 14764 (version "0.1.2")
8635 (source 14765 (source (origin
8636 (origin 14766 (method url-fetch)
8637 (method url-fetch) 14767 (uri "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz")
8638 (uri "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz") 14768 (sha256
8639 (sha256 14769 (base32
8640 (base32 14770 "0x39lihzphr0h1fvh9p65k86vx3p7z6jrxgv4b402lvdrifd56k0"))))
8641 "0x39lihzphr0h1fvh9p65k86vx3p7z6jrxgv4b402lvdrifd56k0")))) 14771 (build-system node-build-system)
8642 (build-system node-build-system) 14772 (arguments
8643 (arguments 14773 '(#:tests? #f
8644 `(#:tests? 14774 #:phases (modify-phases %standard-phases
8645 #f 14775 (delete 'build))))
8646 #:phases 14776 (inputs `(("node-safer-buffer" ,node-safer-buffer-2.1.2)
8647 (modify-phases 14777 ("node-jsbn" ,node-jsbn-0.1.1)))
8648 %standard-phases 14778 (home-page "https://github.com/quartzjer/ecc-jsbn")
8649 (delete 'configure)
8650 (delete 'build))))
8651 (inputs
8652 `(("node-safer-buffer" ,node-safer-buffer-2.1.2)
8653 ("node-jsbn" ,node-jsbn-0.1.1)))
8654 (home-page
8655 "https://github.com/quartzjer/ecc-jsbn")
8656 (synopsis "ECC JS code based on JSBN") 14779 (synopsis "ECC JS code based on JSBN")
8657 (description "ECC JS code based on JSBN") 14780 (description "ECC JS code based on JSBN")
8658 (license license:expat))) 14781 (license license:expat)))
8659 14782
14783(define-public node-tweetnacl-0.14.5
14784 (package
14785 (name "node-tweetnacl")
14786 (version "0.14.5")
14787 (source (origin
14788 (method url-fetch)
14789 (uri
14790 "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz")
14791 (sha256
14792 (base32
14793 "1mnzrxlww1sqwv493gn6ph9ak7n8l9w5qrahsa5kzn4vgbb37skc"))))
14794 (build-system node-build-system)
14795 (arguments
14796 '(#:tests? #f
14797 #:phases (modify-phases %standard-phases
14798 (delete 'build)
14799 (add-after 'patch-dependencies 'delete-dev-dependencies
14800 (lambda _
14801 (delete-dependencies '("browserify" "eslint"
14802 "faucet"
14803 "tap-browser-color"
14804 "tape"
14805 "tape-run"
14806 "tweetnacl-util"
14807 "uglify-js")))))))
14808 (home-page "https://tweetnacl.js.org")
14809 (synopsis "Port of TweetNaCl cryptographic library to JavaScript")
14810 (description "Port of TweetNaCl cryptographic library to JavaScript")
14811 (license license:unlicense)))
14812
8660(define-public node-bcrypt-pbkdf-1.0.2 14813(define-public node-bcrypt-pbkdf-1.0.2
8661 (package 14814 (package
8662 (name "node-bcrypt-pbkdf") 14815 (name "node-bcrypt-pbkdf")
8663 (version "1.0.2") 14816 (version "1.0.2")
8664 (source 14817 (source (origin
8665 (origin 14818 (method url-fetch)
8666 (method url-fetch) 14819 (uri
8667 (uri "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz") 14820 "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz")
8668 (sha256 14821 (sha256
8669 (base32 14822 (base32
8670 "09kqy1rjj0b1aavdssglrjj8ayf9vxvnnvlh5ah270j3bngrwgp1")))) 14823 "09kqy1rjj0b1aavdssglrjj8ayf9vxvnnvlh5ah270j3bngrwgp1"))))
8671 (build-system node-build-system) 14824 (build-system node-build-system)
8672 (arguments 14825 (arguments
8673 `(#:tests? 14826 '(#:tests? #f
8674 #f 14827 #:phases (modify-phases %standard-phases
8675 #:phases 14828 (delete 'build))))
8676 (modify-phases 14829 (inputs `(("node-tweetnacl" ,node-tweetnacl-0.14.5)))
8677 %standard-phases 14830 (home-page "https://github.com/joyent/node-bcrypt-pbkdf#readme")
8678 (delete 'configure) 14831 (synopsis "Port of the OpenBSD bcrypt_pbkdf function to pure JS")
8679 (delete 'build)))) 14832 (description "Port of the OpenBSD bcrypt_pbkdf function to pure JS")
8680 (inputs
8681 `(("node-tweetnacl" ,node-tweetnacl-0.14.5)))
8682 (home-page
8683 "https://github.com/joyent/node-bcrypt-pbkdf#readme")
8684 (synopsis
8685 "Port of the OpenBSD bcrypt_pbkdf function to pure JS")
8686 (description
8687 "Port of the OpenBSD bcrypt_pbkdf function to pure JS")
8688 (license license:bsd-3))) 14833 (license license:bsd-3)))
8689 14834
8690(define-public node-sshpk-1.16.1 14835(define-public node-sshpk-1.17.0
8691 (package 14836 (package
8692 (name "node-sshpk") 14837 (name "node-sshpk")
8693 (version "1.16.1") 14838 (version "1.17.0")
8694 (source 14839 (source (origin
8695 (origin 14840 (method url-fetch)
8696 (method url-fetch) 14841 (uri "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz")
8697 (uri "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz") 14842 (sha256
8698 (sha256 14843 (base32
8699 (base32 14844 "1wjq0428xaji0i62iz8v809mjnd7l1qck4d3r99kqn56mcw3iavv"))))
8700 "0f885dfxv4nhpgsin60z0iflnbr9wfax9lwbcv4i9j3s7shxsjjw")))) 14845 (build-system node-build-system)
8701 (build-system node-build-system) 14846 (arguments
8702 (arguments 14847 '(#:tests? #f
8703 `(#:tests? 14848 #:phases (modify-phases %standard-phases
8704 #f 14849 (delete 'build)
8705 #:phases 14850 (add-after 'patch-dependencies 'delete-dev-dependencies
8706 (modify-phases 14851 (lambda _
8707 %standard-phases 14852 (delete-dependencies '("tape" "benchmark" "sinon" "temp")))))))
8708 (delete 'configure) 14853 (inputs `(("node-bcrypt-pbkdf" ,node-bcrypt-pbkdf-1.0.2)
8709 (delete 'build)))) 14854 ("node-ecc-jsbn" ,node-ecc-jsbn-0.1.2)
8710 (inputs 14855 ("node-tweetnacl" ,node-tweetnacl-0.14.5)
8711 `(("node-bcrypt-pbkdf" ,node-bcrypt-pbkdf-1.0.2) 14856 ("node-jsbn" ,node-jsbn-0.1.1)
8712 ("node-ecc-jsbn" ,node-ecc-jsbn-0.1.2) 14857 ("node-safer-buffer" ,node-safer-buffer-2.1.2)
8713 ("node-tweetnacl" ,node-tweetnacl-0.14.5) 14858 ("node-getpass" ,node-getpass-0.1.7)
8714 ("node-jsbn" ,node-jsbn-0.1.1) 14859 ("node-dashdash" ,node-dashdash-1.14.1)
8715 ("node-safer-buffer" ,node-safer-buffer-2.1.2) 14860 ("node-assert-plus" ,node-assert-plus-1.0.0)
8716 ("node-getpass" ,node-getpass-0.1.7) 14861 ("node-asn1" ,node-asn1-0.2.6)))
8717 ("node-dashdash" ,node-dashdash-1.14.1) 14862 (home-page "https://github.com/arekinath/node-sshpk#readme")
8718 ("node-assert-plus" ,node-assert-plus-1.0.0) 14863 (synopsis "A library for finding and using SSH public keys")
8719 ("node-asn1" ,node-asn1-0.2.4))) 14864 (description "A library for finding and using SSH public keys")
8720 (home-page
8721 "https://github.com/arekinath/node-sshpk#readme")
8722 (synopsis
8723 "A library for finding and using SSH public keys")
8724 (description
8725 "A library for finding and using SSH public keys")
8726 (license license:expat))) 14865 (license license:expat)))
8727 14866
8728(define-public node-http-signature-1.2.0 14867(define-public node-http-signature-1.2.0
8729 (package 14868 (package
8730 (name "node-http-signature") 14869 (name "node-http-signature")
8731 (version "1.2.0") 14870 (version "1.2.0")
8732 (source 14871 (source (origin
8733 (origin 14872 (method url-fetch)
8734 (method url-fetch) 14873 (uri
8735 (uri "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz") 14874 "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz")
8736 (sha256 14875 (sha256
8737 (base32 14876 (base32
8738 "1y856b84kxhq6wc9yiqcfhd4187nizr7lhxi9z69mwzavmpnvgk6")))) 14877 "1y856b84kxhq6wc9yiqcfhd4187nizr7lhxi9z69mwzavmpnvgk6"))))
8739 (build-system node-build-system) 14878 (build-system node-build-system)
8740 (arguments 14879 (arguments
8741 `(#:tests? 14880 '(#:tests? #f
8742 #f 14881 #:phases (modify-phases %standard-phases
8743 #:phases 14882 (delete 'build)
8744 (modify-phases 14883 (add-after 'patch-dependencies 'delete-dev-dependencies
8745 %standard-phases 14884 (lambda _
8746 (delete 'configure) 14885 (delete-dependencies '("tap" "uuid")))))))
8747 (delete 'build)))) 14886 (inputs `(("node-sshpk" ,node-sshpk-1.17.0)
8748 (inputs 14887 ("node-jsprim" ,node-jsprim-1.4.2)
8749 `(("node-sshpk" ,node-sshpk-1.16.1) 14888 ("node-assert-plus" ,node-assert-plus-1.0.0)))
8750 ("node-jsprim" ,node-jsprim-1.4.1) 14889 (home-page "https://github.com/joyent/node-http-signature/")
8751 ("node-assert-plus" ,node-assert-plus-1.0.0))) 14890 (synopsis "Reference implementation of Joyent's HTTP Signature scheme.")
8752 (home-page 14891 (description "Reference implementation of Joyent's HTTP Signature scheme.")
8753 "https://github.com/joyent/node-http-signature/")
8754 (synopsis
8755 "Reference implementation of Joyent's HTTP Signature scheme.")
8756 (description
8757 "Reference implementation of Joyent's HTTP Signature scheme.")
8758 (license license:expat))) 14892 (license license:expat)))
8759 14893
8760(define-public node-is-typedarray-1.0.0 14894(define-public node-is-typedarray-1.0.0
8761 (package 14895 (package
8762 (name "node-is-typedarray") 14896 (name "node-is-typedarray")
8763 (version "1.0.0") 14897 (version "1.0.0")
8764 (source 14898 (source (origin
8765 (origin 14899 (method url-fetch)
8766 (method url-fetch) 14900 (uri
8767 (uri "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz") 14901 "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz")
8768 (sha256 14902 (sha256
8769 (base32 14903 (base32
8770 "0i9qr2b79d0chhvpd1fc5pcp9bvirpg37f99d40alciqffmrfp0d")))) 14904 "0i9qr2b79d0chhvpd1fc5pcp9bvirpg37f99d40alciqffmrfp0d"))))
8771 (build-system node-build-system) 14905 (build-system node-build-system)
8772 (arguments 14906 (arguments
8773 `(#:tests? 14907 '(#:tests? #f
8774 #f 14908 #:phases (modify-phases %standard-phases
8775 #:phases 14909 (delete 'build)
8776 (modify-phases 14910 (add-after 'patch-dependencies 'delete-dev-dependencies
8777 %standard-phases 14911 (lambda _
8778 (delete 'configure) 14912 (delete-dependencies '("tape")))))))
8779 (delete 'build)))) 14913 (home-page "https://github.com/hughsk/is-typedarray")
8780 (home-page 14914 (synopsis "Detect whether or not an object is a Typed Array")
8781 "https://github.com/hughsk/is-typedarray") 14915 (description "Detect whether or not an object is a Typed Array")
8782 (synopsis
8783 "Detect whether or not an object is a Typed Array")
8784 (description
8785 "Detect whether or not an object is a Typed Array")
8786 (license license:expat))) 14916 (license license:expat)))
8787 14917
8788(define-public node-isstream-0.1.2 14918(define-public node-isstream-0.1.2
8789 (package 14919 (package
8790 (name "node-isstream") 14920 (name "node-isstream")
8791 (version "0.1.2") 14921 (version "0.1.2")
8792 (source 14922 (source (origin
8793 (origin 14923 (method url-fetch)
8794 (method url-fetch) 14924 (uri "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz")
8795 (uri "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz") 14925 (sha256
8796 (sha256 14926 (base32
8797 (base32 14927 "0i0br6synccpj2ian2z5fnnna99qq4w73dbp46vnyi53l9w47bkr"))))
8798 "0i0br6synccpj2ian2z5fnnna99qq4w73dbp46vnyi53l9w47bkr")))) 14928 (build-system node-build-system)
8799 (build-system node-build-system) 14929 (arguments
8800 (arguments 14930 '(#:tests? #f
8801 `(#:tests? 14931 #:phases (modify-phases %standard-phases
8802 #f 14932 (delete 'build)
8803 #:phases 14933 (add-after 'patch-dependencies 'delete-dev-dependencies
8804 (modify-phases 14934 (lambda _
8805 %standard-phases 14935 (delete-dependencies '("tape" "core-util-is" "isarray"
8806 (delete 'configure) 14936 "string_decoder" "inherits")))))))
8807 (delete 'build))))
8808 (home-page "https://github.com/rvagg/isstream") 14937 (home-page "https://github.com/rvagg/isstream")
8809 (synopsis "Determine if an object is a Stream") 14938 (synopsis "Determine if an object is a Stream")
8810 (description 14939 (description "Determine if an object is a Stream")
8811 "Determine if an object is a Stream")
8812 (license license:expat))) 14940 (license license:expat)))
8813 14941
8814(define-public node-json-stringify-safe-5.0.1 14942(define-public node-json-stringify-safe-5.0.1
8815 (package 14943 (package
8816 (name "node-json-stringify-safe") 14944 (name "node-json-stringify-safe")
8817 (version "5.0.1") 14945 (version "5.0.1")
8818 (source 14946 (source (origin
8819 (origin 14947 (method url-fetch)
8820 (method url-fetch) 14948 (uri
8821 (uri "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz") 14949 "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz")
8822 (sha256 14950 (sha256
8823 (base32 14951 (base32
8824 "12ljc7ipy7cprz5zxzzds20ykw6z5616763ca5zx9xmzq1jvzyxp")))) 14952 "12ljc7ipy7cprz5zxzzds20ykw6z5616763ca5zx9xmzq1jvzyxp"))))
8825 (build-system node-build-system) 14953 (build-system node-build-system)
8826 (arguments 14954 (arguments
8827 `(#:tests? 14955 '(#:tests? #f
8828 #f 14956 #:phases (modify-phases %standard-phases
8829 #:phases 14957 (delete 'build)
8830 (modify-phases 14958 (add-after 'patch-dependencies 'delete-dev-dependencies
8831 %standard-phases 14959 (lambda _
8832 (delete 'configure) 14960 (delete-dependencies '("mocha" "must" "sinon")))))))
8833 (delete 'build)))) 14961 (home-page "https://github.com/isaacs/json-stringify-safe")
8834 (home-page 14962 (synopsis "Like JSON.stringify, but doesn't blow up on circular refs.")
8835 "https://github.com/isaacs/json-stringify-safe") 14963 (description "Like JSON.stringify, but doesn't blow up on circular refs.")
8836 (synopsis
8837 "Like JSON.stringify, but doesn't blow up on circular refs.")
8838 (description
8839 "Like JSON.stringify, but doesn't blow up on circular refs.")
8840 (license license:isc))) 14964 (license license:isc)))
8841 14965
8842(define-public node-mime-db-1.45.0 14966(define-public node-mime-db-1.52.0
8843 (package 14967 (package
8844 (name "node-mime-db") 14968 (name "node-mime-db")
8845 (version "1.45.0") 14969 (version "1.52.0")
8846 (source 14970 (source (origin
8847 (origin 14971 (method url-fetch)
8848 (method url-fetch) 14972 (uri "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz")
8849 (uri "https://registry.npmjs.org/mime-db/-/mime-db-1.45.0.tgz") 14973 (sha256
8850 (sha256 14974 (base32
8851 (base32 14975 "0fwyiyqi3w03w3xwy2jhm8rsa0y9wgkc0j6q3q6mvk9asns0prxq"))))
8852 "0bva1q84z8cjvh1nibqz4155ylyqan4yqx9a99mriz11swngdn23")))) 14976 (build-system node-build-system)
8853 (build-system node-build-system) 14977 (arguments
8854 (arguments 14978 '(#:tests? #f
8855 `(#:tests? 14979 #:phases (modify-phases %standard-phases
8856 #f 14980 (delete 'build)
8857 #:phases 14981 (add-after 'patch-dependencies 'delete-dev-dependencies
8858 (modify-phases 14982 (lambda _
8859 %standard-phases 14983 (delete-dependencies '("bluebird" "co"
8860 (delete 'configure) 14984 "cogent"
8861 (delete 'build)))) 14985 "csv-parse"
8862 (home-page 14986 "eslint"
8863 "https://github.com/jshttp/mime-db#readme") 14987 "eslint-config-standard"
14988 "eslint-plugin-import"
14989 "eslint-plugin-markdown"
14990 "eslint-plugin-node"
14991 "eslint-plugin-promise"
14992 "eslint-plugin-standard"
14993 "gnode"
14994 "media-typer"
14995 "mocha"
14996 "nyc"
14997 "raw-body"
14998 "stream-to-array")))))))
14999 (home-page "https://github.com/jshttp/mime-db#readme")
8864 (synopsis "Media Type Database") 15000 (synopsis "Media Type Database")
8865 (description "Media Type Database") 15001 (description "Media Type Database")
8866 (license license:expat))) 15002 (license license:expat)))
8867 15003
15004(define-public node-mime-types-2.1.35
15005 (package
15006 (name "node-mime-types")
15007 (version "2.1.35")
15008 (source (origin
15009 (method url-fetch)
15010 (uri
15011 "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz")
15012 (sha256
15013 (base32
15014 "1hyi043kcqyfz82w19s357klvj54f0s94d40rymbms86i74lyws9"))))
15015 (build-system node-build-system)
15016 (arguments
15017 '(#:tests? #f
15018 #:phases (modify-phases %standard-phases
15019 (delete 'build)
15020 (add-after 'patch-dependencies 'delete-dev-dependencies
15021 (lambda _
15022 (delete-dependencies '("eslint" "eslint-config-standard"
15023 "eslint-plugin-import"
15024 "eslint-plugin-markdown"
15025 "eslint-plugin-node"
15026 "eslint-plugin-promise"
15027 "eslint-plugin-standard"
15028 "mocha"
15029 "nyc")))))))
15030 (inputs `(("node-mime-db" ,node-mime-db-1.52.0)))
15031 (home-page "https://github.com/jshttp/mime-types#readme")
15032 (synopsis "The ultimate javascript content-type utility.")
15033 (description "The ultimate javascript content-type utility.")
15034 (license license:expat)))
15035
8868(define-public node-oauth-sign-0.9.0 15036(define-public node-oauth-sign-0.9.0
8869 (package 15037 (package
8870 (name "node-oauth-sign") 15038 (name "node-oauth-sign")
8871 (version "0.9.0") 15039 (version "0.9.0")
8872 (source 15040 (source (origin
8873 (origin 15041 (method url-fetch)
8874 (method url-fetch) 15042 (uri
8875 (uri "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz") 15043 "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz")
8876 (sha256 15044 (sha256
8877 (base32 15045 (base32
8878 "1g6rl2pv86pxcx4mv25qqv0w265mc5ardp3vxd2hqg80c4bsy5h0")))) 15046 "1g6rl2pv86pxcx4mv25qqv0w265mc5ardp3vxd2hqg80c4bsy5h0"))))
8879 (build-system node-build-system) 15047 (build-system node-build-system)
8880 (arguments 15048 (arguments
8881 `(#:tests? 15049 '(#:tests? #f
8882 #f 15050 #:phases (modify-phases %standard-phases
8883 #:phases 15051 (delete 'build))))
8884 (modify-phases 15052 (home-page "https://github.com/mikeal/oauth-sign#readme")
8885 %standard-phases
8886 (delete 'configure)
8887 (delete 'build))))
8888 (home-page
8889 "https://github.com/mikeal/oauth-sign#readme")
8890 (synopsis 15053 (synopsis
8891 "OAuth 1 signing. Formerly a vendor lib in mikeal/request, now a standalone module.") 15054 "OAuth 1 signing. Formerly a vendor lib in mikeal/request, now a standalone module.")
8892 (description 15055 (description
8893 "OAuth 1 signing. Formerly a vendor lib in mikeal/request, now a standalone module.") 15056 "OAuth 1 signing. Formerly a vendor lib in mikeal/request, now a standalone module.")
8894 (license license:asl2.0))) 15057 (license license:asl2.0)))
8895 15058
8896(define-public node-performance-now-2.1.0 15059(define-public node-performance-now-2.1.0
8897 (package 15060 (package
8898 (name "node-performance-now") 15061 (name "node-performance-now")
8899 (version "2.1.0") 15062 (version "2.1.0")
8900 (source 15063 (source (origin
8901 (origin 15064 (method url-fetch)
8902 (method url-fetch) 15065 (uri
8903 (uri "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz") 15066 "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz")
8904 (sha256 15067 (sha256
8905 (base32 15068 (base32
8906 "0ich517fgk1nhmcjs2mfv4dp70ppqvj3xgmv3syl25zixzfrk3q6")))) 15069 "0ich517fgk1nhmcjs2mfv4dp70ppqvj3xgmv3syl25zixzfrk3q6"))))
8907 (build-system node-build-system) 15070 (build-system node-build-system)
8908 (arguments 15071 (arguments
8909 `(#:tests? 15072 '(#:tests? #f
8910 #f 15073 #:phases (modify-phases %standard-phases
8911 #:phases 15074 (delete 'build)
8912 (modify-phases 15075 (add-after 'patch-dependencies 'delete-dev-dependencies
8913 %standard-phases 15076 (lambda _
8914 (delete 'configure) 15077 (delete-dependencies '("bluebird" "call-delayed"
8915 (delete 'build)))) 15078 "chai"
8916 (home-page 15079 "chai-increasing"
8917 "https://github.com/braveg1rl/performance-now") 15080 "coffee-script"
8918 (synopsis 15081 "mocha"
8919 "Implements performance.now (based on process.hrtime).") 15082 "pre-commit")))))))
8920 (description 15083 (home-page "https://github.com/braveg1rl/performance-now")
8921 "Implements performance.now (based on process.hrtime).") 15084 (synopsis "Implements performance.now (based on process.hrtime).")
8922 (license license:expat))) 15085 (description "Implements performance.now (based on process.hrtime).")
8923 15086 (license license:expat)))
8924(define-public node-qs-6.5.2 15087
15088(define-public node-qs-6.5.3
8925 (package 15089 (package
8926 (name "node-qs") 15090 (name "node-qs")
8927 (version "6.5.2") 15091 (version "6.5.3")
8928 (source 15092 (source (origin
8929 (origin 15093 (method url-fetch)
8930 (method url-fetch) 15094 (uri "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz")
8931 (uri "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz") 15095 (sha256
8932 (sha256 15096 (base32
8933 (base32 15097 "09kz5lli2a4nl62i415wplzjgrnw82zpbm1a6crg15ar3g6d9cql"))))
8934 "1w0n5rg0w76b97ds80svkhmcqzcn76c3g5z81sblvii89ww4k4sk")))) 15098 (build-system node-build-system)
8935 (build-system node-build-system) 15099 (arguments
8936 (arguments 15100 '(#:tests? #f
8937 `(#:tests? 15101 #:phases (modify-phases %standard-phases
8938 #f 15102 (delete 'build)
8939 #:phases 15103 (add-after 'patch-dependencies 'delete-dev-dependencies
8940 (modify-phases 15104 (lambda _
8941 %standard-phases 15105 (delete-dependencies '("@ljharb/eslint-config" "aud"
8942 (delete 'configure) 15106 "browserify"
8943 (delete 'build)))) 15107 "eclint"
15108 "eslint"
15109 "evalmd"
15110 "iconv-lite"
15111 "in-publish"
15112 "mkdirp"
15113 "nyc"
15114 "qs-iconv"
15115 "safe-publish-latest"
15116 "safer-buffer"
15117 "tape")))))))
8944 (home-page "https://github.com/ljharb/qs") 15118 (home-page "https://github.com/ljharb/qs")
8945 (synopsis 15119 (synopsis
8946 "A querystring parser that supports nesting and arrays, with a depth limit") 15120 "A querystring parser that supports nesting and arrays, with a depth limit")
8947 (description 15121 (description
8948 "A querystring parser that supports nesting and arrays, with a depth limit") 15122 "A querystring parser that supports nesting and arrays, with a depth limit")
8949 (license license:bsd-3))) 15123 (license license:bsd-3)))
8950 15124
8951(define-public node-safe-buffer-5.2.1 15125(define-public node-psl-1.9.0
8952 (package
8953 (name "node-safe-buffer")
8954 (version "5.2.1")
8955 (source
8956 (origin
8957 (method url-fetch)
8958 (uri "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz")
8959 (sha256
8960 (base32
8961 "1s5kvjpwqsc682zcy71h9c6pxla21sysfwj270x6jjkca421h62x"))))
8962 (build-system node-build-system)
8963 (arguments
8964 `(#:tests?
8965 #f
8966 #:phases
8967 (modify-phases
8968 %standard-phases
8969 (delete 'configure)
8970 (delete 'build))))
8971 (home-page
8972 "https://github.com/feross/safe-buffer")
8973 (synopsis "Safer Node.js Buffer API")
8974 (description "Safer Node.js Buffer API")
8975 (license license:expat)))
8976
8977(define-public node-psl-1.8.0
8978 (package 15126 (package
8979 (name "node-psl") 15127 (name "node-psl")
8980 (version "1.8.0") 15128 (version "1.9.0")
8981 (source 15129 (source (origin
8982 (origin 15130 (method url-fetch)
8983 (method url-fetch) 15131 (uri "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz")
8984 (uri "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz") 15132 (sha256
8985 (sha256 15133 (base32
8986 (base32 15134 "1qbng513j3yn8pjkbq4j5mr2ywz5gx4wwd3pzgyk3rwzkp77q0nc"))))
8987 "03jj0mly8g6hrjaj8h77q0w02z3awgvy6ld051ph2k38fji3zdgb")))) 15135 (build-system node-build-system)
8988 (build-system node-build-system) 15136 (arguments
8989 (arguments 15137 '(#:tests? #f
8990 `(#:tests? 15138 #:phases (modify-phases %standard-phases
8991 #f 15139 (delete 'build)
8992 #:phases 15140 (add-after 'patch-dependencies 'delete-dev-dependencies
8993 (modify-phases 15141 (lambda _
8994 %standard-phases 15142 (delete-dependencies '("browserify"
8995 (delete 'configure) 15143 "browserslist-browserstack"
8996 (delete 'build)))) 15144 "browserstack-local"
8997 (home-page 15145 "chai"
8998 "https://github.com/lupomontero/psl#readme") 15146 "commit-and-pr"
15147 "eslint"
15148 "JSONStream"
15149 "mocha"
15150 "porch"
15151 "request"
15152 "selenium-webdriver"
15153 "serve-handler"
15154 "uglify-js"
15155 "watchify")))))))
15156 (home-page "https://github.com/lupomontero/psl#readme")
15157 (synopsis "Domain name parser based on the Public Suffix List")
15158 (description "Domain name parser based on the Public Suffix List")
15159 (license license:expat)))
15160
15161(define-public node-punycode-2.3.0
15162 (package
15163 (name "node-punycode")
15164 (version "2.3.0")
15165 (source (origin
15166 (method url-fetch)
15167 (uri "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz")
15168 (sha256
15169 (base32
15170 "0v449nngp3gdvic0x0i2p83mwwsr357mb6c84nrdf3gvhr78insg"))))
15171 (build-system node-build-system)
15172 (arguments
15173 '(#:tests? #f
15174 #:phases (modify-phases %standard-phases
15175 (delete 'build)
15176 (add-after 'patch-dependencies 'delete-dev-dependencies
15177 (lambda _
15178 (delete-dependencies '("codecov" "istanbul" "mocha")))))))
15179 (home-page "https://mths.be/punycode")
8999 (synopsis 15180 (synopsis
9000 "Domain name parser based on the Public Suffix List") 15181 "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.")
9001 (description 15182 (description
9002 "Domain name parser based on the Public Suffix List") 15183 "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.")
9003 (license license:expat))) 15184 (license license:expat)))
9004 15185
9005(define-public node-tough-cookie-2.5.0 15186(define-public node-tough-cookie-2.5.0
9006 (package 15187 (package
9007 (name "node-tough-cookie") 15188 (name "node-tough-cookie")
9008 (version "2.5.0") 15189 (version "2.5.0")
9009 (source 15190 (source (origin
9010 (origin 15191 (method url-fetch)
9011 (method url-fetch) 15192 (uri
9012 (uri "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz") 15193 "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz")
9013 (sha256 15194 (sha256
9014 (base32 15195 (base32
9015 "0knsdm6l5mn88rh78hajzr2rrydal6wf97l2pbpqjq8ws4w8gazh")))) 15196 "0knsdm6l5mn88rh78hajzr2rrydal6wf97l2pbpqjq8ws4w8gazh"))))
9016 (build-system node-build-system) 15197 (build-system node-build-system)
9017 (arguments 15198 (arguments
9018 `(#:tests? 15199 '(#:tests? #f
9019 #f 15200 #:phases (modify-phases %standard-phases
9020 #:phases 15201 (delete 'build)
9021 (modify-phases 15202 (add-after 'patch-dependencies 'delete-dev-dependencies
9022 %standard-phases 15203 (lambda _
9023 (delete 'configure) 15204 (delete-dependencies '("async" "genversion" "nyc"
9024 (delete 'build)))) 15205 "string.prototype.repeat" "vows")))))))
9025 (inputs 15206 (inputs `(("node-punycode" ,node-punycode-2.3.0)
9026 `(("node-punycode" ,node-punycode-2.1.1) 15207 ("node-psl" ,node-psl-1.9.0)))
9027 ("node-psl" ,node-psl-1.8.0))) 15208 (home-page "https://github.com/salesforce/tough-cookie")
9028 (home-page 15209 (synopsis "RFC6265 Cookies and Cookie Jar for node.js")
9029 "https://github.com/salesforce/tough-cookie") 15210 (description "RFC6265 Cookies and Cookie Jar for node.js")
9030 (synopsis
9031 "RFC6265 Cookies and Cookie Jar for node.js")
9032 (description
9033 "RFC6265 Cookies and Cookie Jar for node.js")
9034 (license license:bsd-3))) 15211 (license license:bsd-3)))
9035 15212
9036(define-public node-tunnel-agent-0.6.0 15213(define-public node-tunnel-agent-0.6.0
9037 (package 15214 (package
9038 (name "node-tunnel-agent") 15215 (name "node-tunnel-agent")
9039 (version "0.6.0") 15216 (version "0.6.0")
9040 (source 15217 (source (origin
9041 (origin 15218 (method url-fetch)
9042 (method url-fetch) 15219 (uri
9043 (uri "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz") 15220 "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz")
9044 (sha256 15221 (sha256
9045 (base32 15222 (base32
9046 "04jhbjld99zavh1rvik2bayrgxwj2zx69xsbcm0gmlnna15c1qyk")))) 15223 "04jhbjld99zavh1rvik2bayrgxwj2zx69xsbcm0gmlnna15c1qyk"))))
9047 (build-system node-build-system) 15224 (build-system node-build-system)
9048 (arguments 15225 (arguments
9049 `(#:tests? 15226 '(#:tests? #f
9050 #f 15227 #:phases (modify-phases %standard-phases
9051 #:phases 15228 (delete 'build))))
9052 (modify-phases 15229 (inputs `(("node-safe-buffer" ,node-safe-buffer-5.2.1)))
9053 %standard-phases 15230 (home-page "https://github.com/mikeal/tunnel-agent#readme")
9054 (delete 'configure)
9055 (delete 'build))))
9056 (inputs
9057 `(("node-safe-buffer" ,node-safe-buffer-5.2.1)))
9058 (home-page
9059 "https://github.com/mikeal/tunnel-agent#readme")
9060 (synopsis 15231 (synopsis
9061 "HTTP proxy tunneling agent. Formerly part of mikeal/request, now a standalone module.") 15232 "HTTP proxy tunneling agent. Formerly part of mikeal/request, now a standalone module.")
9062 (description 15233 (description
9063 "HTTP proxy tunneling agent. Formerly part of mikeal/request, now a standalone module.") 15234 "HTTP proxy tunneling agent. Formerly part of mikeal/request, now a standalone module.")
9064 (license license:asl2.0))) 15235 (license license:asl2.0)))
9065 15236
9066(define-public node-uuid-3.4.0 15237(define-public node-uuid-3.4.0
9067 (package 15238 (package
9068 (name "node-uuid") 15239 (name "node-uuid")
9069 (version "3.4.0") 15240 (version "3.4.0")
9070 (source 15241 (source (origin
9071 (origin 15242 (method url-fetch)
9072 (method url-fetch) 15243 (uri "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz")
9073 (uri "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz") 15244 (sha256
9074 (sha256 15245 (base32
9075 (base32 15246 "1pgldpxvxyy2a9h437v0mflqxyc4w91b37iya2pcfd5wdlqcjxxs"))))
9076 "1pgldpxvxyy2a9h437v0mflqxyc4w91b37iya2pcfd5wdlqcjxxs")))) 15247 (build-system node-build-system)
9077 (build-system node-build-system) 15248 (arguments
9078 (arguments 15249 '(#:tests? #f
9079 `(#:tests? 15250 #:modules
9080 #f 15251 ((guix build node-build-system)
9081 #:phases 15252 (srfi srfi-1)
9082 (modify-phases 15253 (ice-9 match)
9083 %standard-phases 15254 (guix build utils))
9084 (delete 'configure) 15255 #:phases (modify-phases %standard-phases
9085 (delete 'build)))) 15256 (delete 'build)
9086 (home-page 15257 (add-before 'configure 'avoid-prepare-scripts
9087 "https://github.com/uuidjs/uuid#readme") 15258 (lambda _
15259 ;; We need to remove the prepare script from "package.json", as
15260 ;; it would try to use the build environment and would block the
15261 ;; automatic building by other packages making use of node-acorn.
15262 ;; TODO: Add utility function
15263 (with-atomic-json-file-replacement "package.json"
15264 (match-lambda
15265 (('@ . pkg-meta-alist)
15266 (cons '@ (map (match-lambda
15267 (("scripts" @ . scripts-alist)
15268 `("scripts" @ ,@(filter (match-lambda
15269 (("prepare" . _)
15270 #f)
15271 (_
15272 #t))
15273 scripts-alist)))
15274 (other other))
15275 pkg-meta-alist)))))))
15276 (add-after 'patch-dependencies 'delete-dev-dependencies
15277 (lambda _
15278 (delete-dependencies '("@commitlint/cli"
15279 "@commitlint/config-conventional"
15280 "eslint"
15281 "husky"
15282 "mocha"
15283 "runmd"
15284 "standard-version")))))))
15285 (home-page "https://github.com/uuidjs/uuid#readme")
9088 (synopsis "RFC4122 (v1, v4, and v5) UUIDs") 15286 (synopsis "RFC4122 (v1, v4, and v5) UUIDs")
9089 (description "RFC4122 (v1, v4, and v5) UUIDs") 15287 (description "RFC4122 (v1, v4, and v5) UUIDs")
9090 (license license:expat))) 15288 (license license:expat)))
@@ -9093,49 +15291,59 @@
9093 (package 15291 (package
9094 (name "node-request") 15292 (name "node-request")
9095 (version "2.88.2") 15293 (version "2.88.2")
9096 (source 15294 (source (origin
9097 (origin 15295 (method url-fetch)
9098 (method url-fetch) 15296 (uri "https://registry.npmjs.org/request/-/request-2.88.2.tgz")
9099 (uri "https://registry.npmjs.org/request/-/request-2.88.2.tgz") 15297 (sha256
9100 (sha256 15298 (base32
9101 (base32 15299 "0hj2f9qqn3hpzpvhsnbwhzjyn5f8aicjz5wn00q0mfc4824awvg8"))))
9102 "0hj2f9qqn3hpzpvhsnbwhzjyn5f8aicjz5wn00q0mfc4824awvg8")))) 15300 (build-system node-build-system)
9103 (build-system node-build-system) 15301 (arguments
9104 (arguments 15302 '(#:tests? #f
9105 `(#:tests? 15303 #:phases (modify-phases %standard-phases
9106 #f 15304 (delete 'build)
9107 #:phases 15305 (add-after 'patch-dependencies 'delete-dev-dependencies
9108 (modify-phases 15306 (lambda _
9109 %standard-phases 15307 (delete-dependencies '("bluebird" "browserify"
9110 (delete 'configure) 15308 "browserify-istanbul"
9111 (delete 'build)))) 15309 "buffer-equal"
9112 (inputs 15310 "codecov"
9113 `(("node-uuid" ,node-uuid-3.4.0) 15311 "coveralls"
9114 ("node-tunnel-agent" ,node-tunnel-agent-0.6.0) 15312 "function-bind"
9115 ("node-tough-cookie" ,node-tough-cookie-2.5.0) 15313 "karma"
9116 ("node-safe-buffer" ,node-safe-buffer-5.2.1) 15314 "karma-browserify"
9117 ("node-qs" ,node-qs-6.5.2) 15315 "karma-cli"
9118 ("node-performance-now" 15316 "karma-coverage"
9119 ,node-performance-now-2.1.0) 15317 "karma-phantomjs-launcher"
9120 ("node-oauth-sign" ,node-oauth-sign-0.9.0) 15318 "karma-tap"
9121 ("node-mime-types" ,node-mime-types-2.1.28) 15319 "nyc"
9122 ("node-json-stringify-safe" 15320 "phantomjs-prebuilt"
9123 ,node-json-stringify-safe-5.0.1) 15321 "rimraf"
9124 ("node-isstream" ,node-isstream-0.1.2) 15322 "server-destroy"
9125 ("node-is-typedarray" ,node-is-typedarray-1.0.0) 15323 "standard"
9126 ("node-http-signature" 15324 "tape"
9127 ,node-http-signature-1.2.0) 15325 "taper")))))))
9128 ("node-har-validator" ,node-har-validator-5.1.5) 15326 (inputs `(("node-uuid" ,node-uuid-3.4.0)
9129 ("node-form-data" ,node-form-data-2.3.3) 15327 ("node-tunnel-agent" ,node-tunnel-agent-0.6.0)
9130 ("node-forever-agent" ,node-forever-agent-0.6.1) 15328 ("node-tough-cookie" ,node-tough-cookie-2.5.0)
9131 ("node-extend" ,node-extend-3.0.2) 15329 ("node-safe-buffer" ,node-safe-buffer-5.2.1)
9132 ("node-combined-stream" 15330 ("node-qs" ,node-qs-6.5.3)
9133 ,node-combined-stream-1.0.8) 15331 ("node-performance-now" ,node-performance-now-2.1.0)
9134 ("node-caseless" ,node-caseless-0.12.0) 15332 ("node-oauth-sign" ,node-oauth-sign-0.9.0)
9135 ("node-aws4" ,node-aws4-1.11.0) 15333 ("node-mime-types" ,node-mime-types-2.1.35)
9136 ("node-aws-sign2" ,node-aws-sign2-0.7.0))) 15334 ("node-json-stringify-safe" ,node-json-stringify-safe-5.0.1)
9137 (home-page 15335 ("node-isstream" ,node-isstream-0.1.2)
9138 "https://github.com/request/request#readme") 15336 ("node-is-typedarray" ,node-is-typedarray-1.0.0)
15337 ("node-http-signature" ,node-http-signature-1.2.0)
15338 ("node-har-validator" ,node-har-validator-5.1.5)
15339 ("node-form-data" ,node-form-data-2.3.3)
15340 ("node-forever-agent" ,node-forever-agent-0.6.1)
15341 ("node-extend" ,node-extend-3.0.2)
15342 ("node-combined-stream" ,node-combined-stream-1.0.8)
15343 ("node-caseless" ,node-caseless-0.12.0)
15344 ("node-aws4" ,node-aws4-1.12.0)
15345 ("node-aws-sign2" ,node-aws-sign2-0.7.0)))
15346 (home-page "https://github.com/request/request#readme")
9139 (synopsis "Simplified HTTP request client.") 15347 (synopsis "Simplified HTTP request client.")
9140 (description "Simplified HTTP request client.") 15348 (description "Simplified HTTP request client.")
9141 (license license:asl2.0))) 15349 (license license:asl2.0)))
@@ -9144,236 +15352,72 @@
9144 (package 15352 (package
9145 (name "node-shorthash") 15353 (name "node-shorthash")
9146 (version "0.0.2") 15354 (version "0.0.2")
9147 (source 15355 (source (origin
9148 (origin 15356 (method url-fetch)
9149 (method url-fetch) 15357 (uri
9150 (uri "https://registry.npmjs.org/shorthash/-/shorthash-0.0.2.tgz") 15358 "https://registry.npmjs.org/shorthash/-/shorthash-0.0.2.tgz")
9151 (sha256 15359 (sha256
9152 (base32 15360 (base32
9153 "1lb884bdh1m6b7vyb3afm70vacip84i9ql4gdcl5f1wiqd5fpnfz")))) 15361 "1lb884bdh1m6b7vyb3afm70vacip84i9ql4gdcl5f1wiqd5fpnfz"))))
9154 (build-system node-build-system) 15362 (build-system node-build-system)
9155 (arguments 15363 (arguments
9156 `(#:tests? 15364 '(#:tests? #f
9157 #f 15365 #:phases (modify-phases %standard-phases
9158 #:phases 15366 (delete 'build))))
9159 (modify-phases 15367 (home-page "https://www.npmjs.com/package/node-shorthash")
9160 %standard-phases 15368 (synopsis "Node.js module to get a short unique hash of a string")
9161 (delete 'configure) 15369 (description "Node.js module to get a short unique hash of a string")
9162 (delete 'build))))
9163 (home-page #f)
9164 (synopsis
9165 "Node.js module to get a short unique hash of a string")
9166 (description
9167 "Node.js module to get a short unique hash of a string")
9168 (license license:expat)))
9169
9170(define-public node-source-map-0.7.3
9171 (package
9172 (name "node-source-map")
9173 (version "0.7.3")
9174 (source
9175 (origin
9176 (method url-fetch)
9177 (uri "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz")
9178 (sha256
9179 (base32
9180 "0gl32nnsbimw7m9m7m2jc93gmcgp7m021szhwk1k6ivppa3vfsdd"))))
9181 (build-system node-build-system)
9182 (arguments
9183 `(#:tests?
9184 #f
9185 #:phases
9186 (modify-phases
9187 %standard-phases
9188 (delete 'configure)
9189 (delete 'build))))
9190 (home-page
9191 "https://github.com/mozilla/source-map")
9192 (synopsis "Generates and consumes source maps")
9193 (description
9194 "Generates and consumes source maps")
9195 (license license:bsd-3)))
9196
9197(define-public node-process-nextick-args-2.0.1
9198 (package
9199 (name "node-process-nextick-args")
9200 (version "2.0.1")
9201 (source
9202 (origin
9203 (method url-fetch)
9204 (uri "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz")
9205 (sha256
9206 (base32
9207 "16w8m2ycy5s4ykgdfg97qxa67gfvkh6x3vdwfsncafyj4p3zhns2"))))
9208 (build-system node-build-system)
9209 (arguments
9210 `(#:tests?
9211 #f
9212 #:phases
9213 (modify-phases
9214 %standard-phases
9215 (delete 'configure)
9216 (delete 'build))))
9217 (home-page
9218 "https://github.com/calvinmetcalf/process-nextick-args")
9219 (synopsis
9220 "process.nextTick but always with args")
9221 (description
9222 "process.nextTick but always with args")
9223 (license license:expat)))
9224
9225(define-public node-string-decoder-1.1.1
9226 (package
9227 (name "node-string-decoder")
9228 (version "1.1.1")
9229 (source
9230 (origin
9231 (method url-fetch)
9232 (uri "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz")
9233 (sha256
9234 (base32
9235 "0fln2r91b8gj845j7jl76fvsp7nij13fyzvz82985yh88m1n50mg"))))
9236 (build-system node-build-system)
9237 (arguments
9238 `(#:tests?
9239 #f
9240 #:phases
9241 (modify-phases
9242 %standard-phases
9243 (delete 'configure)
9244 (delete 'build))))
9245 (inputs
9246 `(("node-safe-buffer" ,node-safe-buffer-5.1.2)))
9247 (home-page
9248 "https://github.com/nodejs/string_decoder")
9249 (synopsis
9250 "The string_decoder module from Node core")
9251 (description
9252 "The string_decoder module from Node core")
9253 (license license:expat)))
9254
9255(define-public node-util-deprecate-1.0.2
9256 (package
9257 (name "node-util-deprecate")
9258 (version "1.0.2")
9259 (source
9260 (origin
9261 (method url-fetch)
9262 (uri "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz")
9263 (sha256
9264 (base32
9265 "1rd3qbgdrwkmcrf7vqx61sh7icma7jvxcmklqj032f8v7jcdx8br"))))
9266 (build-system node-build-system)
9267 (arguments
9268 `(#:tests?
9269 #f
9270 #:phases
9271 (modify-phases
9272 %standard-phases
9273 (delete 'configure)
9274 (delete 'build))))
9275 (home-page
9276 "https://github.com/TooTallNate/util-deprecate")
9277 (synopsis
9278 "The Node.js `util.deprecate()` function with browser support")
9279 (description
9280 "The Node.js `util.deprecate()` function with browser support")
9281 (license license:expat)))
9282
9283(define-public node-readable-stream-2.3.7
9284 (package
9285 (name "node-readable-stream")
9286 (version "2.3.7")
9287 (source
9288 (origin
9289 (method url-fetch)
9290 (uri "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz")
9291 (sha256
9292 (base32
9293 "1ivp6i6kf0li6ak443prb3h8bjsznymjaaclmmmy5p55gb7px809"))))
9294 (build-system node-build-system)
9295 (arguments
9296 `(#:tests?
9297 #f
9298 #:phases
9299 (modify-phases
9300 %standard-phases
9301 (delete 'configure)
9302 (delete 'build))))
9303 (inputs
9304 `(("node-util-deprecate"
9305 ,node-util-deprecate-1.0.2)
9306 ("node-string-decoder"
9307 ,node-string-decoder-1.1.1)
9308 ("node-safe-buffer" ,node-safe-buffer-5.1.2)
9309 ("node-process-nextick-args"
9310 ,node-process-nextick-args-2.0.1)
9311 ("node-isarray" ,node-isarray-1.0.0)
9312 ("node-inherits" ,node-inherits-2.0.4)
9313 ("node-core-util-is" ,node-core-util-is-1.0.2)))
9314 (home-page
9315 "https://github.com/nodejs/readable-stream#readme")
9316 (synopsis
9317 "Streams3, a user-land copy of the stream library from Node.js")
9318 (description
9319 "Streams3, a user-land copy of the stream library from Node.js")
9320 (license license:expat))) 15370 (license license:expat)))
9321 15371
9322(define-public node-stream-browserify-2.0.2 15372(define-public node-stream-browserify-2.0.2
9323 (package 15373 (package
9324 (name "node-stream-browserify") 15374 (name "node-stream-browserify")
9325 (version "2.0.2") 15375 (version "2.0.2")
9326 (source 15376 (source (origin
9327 (origin 15377 (method url-fetch)
9328 (method url-fetch) 15378 (uri
9329 (uri "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz") 15379 "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz")
9330 (sha256 15380 (sha256
9331 (base32 15381 (base32
9332 "0rqljbnx9mhx3cwm8pfl5vvvm0v8igcfk5r3c2lgg4gnxrb755qv")))) 15382 "0rqljbnx9mhx3cwm8pfl5vvvm0v8igcfk5r3c2lgg4gnxrb755qv"))))
9333 (build-system node-build-system) 15383 (build-system node-build-system)
9334 (arguments 15384 (arguments
9335 `(#:tests? 15385 '(#:tests? #f
9336 #f 15386 #:phases (modify-phases %standard-phases
9337 #:phases 15387 (delete 'build)
9338 (modify-phases 15388 (add-after 'patch-dependencies 'delete-dev-dependencies
9339 %standard-phases 15389 (lambda _
9340 (delete 'configure) 15390 (delete-dependencies '("safe-buffer" "tape" "typedarray")))))))
9341 (delete 'build)))) 15391 (inputs `(("node-readable-stream" ,node-readable-stream-2.3.8)
9342 (inputs 15392 ("node-inherits" ,node-inherits-2.0.4)))
9343 `(("node-readable-stream" 15393 (home-page "https://github.com/browserify/stream-browserify")
9344 ,node-readable-stream-2.3.7) 15394 (synopsis "the stream module from node core for browsers")
9345 ("node-inherits" ,node-inherits-2.0.4))) 15395 (description "the stream module from node core for browsers")
9346 (home-page
9347 "https://github.com/browserify/stream-browserify")
9348 (synopsis
9349 "the stream module from node core for browsers")
9350 (description
9351 "the stream module from node core for browsers")
9352 (license license:expat))) 15396 (license license:expat)))
9353 15397
9354(define-public node-sourcemap-blender-1.0.5 15398(define-public node-sourcemap-blender-1.0.5
9355 (package 15399 (package
9356 (name "node-sourcemap-blender") 15400 (name "node-sourcemap-blender")
9357 (version "1.0.5") 15401 (version "1.0.5")
9358 (source 15402 (source (origin
9359 (origin 15403 (method url-fetch)
9360 (method url-fetch) 15404 (uri
9361 (uri "https://registry.npmjs.org/sourcemap-blender/-/sourcemap-blender-1.0.5.tgz") 15405 "https://registry.npmjs.org/sourcemap-blender/-/sourcemap-blender-1.0.5.tgz")
9362 (sha256 15406 (sha256
9363 (base32 15407 (base32
9364 "1n80zmkdnw5gn8d51x8av4wd0dby18vp2xzjzqg5x29dlw63kpy1")))) 15408 "1n80zmkdnw5gn8d51x8av4wd0dby18vp2xzjzqg5x29dlw63kpy1"))))
9365 (build-system node-build-system) 15409 (build-system node-build-system)
9366 (arguments 15410 (arguments
9367 `(#:tests? 15411 '(#:tests? #f
9368 #f 15412 #:phases (modify-phases %standard-phases
9369 #:phases 15413 (delete 'build)
9370 (modify-phases 15414 (add-after 'patch-dependencies 'delete-dev-dependencies
9371 %standard-phases 15415 (lambda _
9372 (delete 'configure) 15416 (delete-dependencies '("@types/node" "acorn" "escodegen"
9373 (delete 'build)))) 15417 "fuse-box" "fuse-test-runner"
9374 (inputs 15418 "typescript")))))))
9375 `(("node-source-map" ,node-source-map-0.7.3))) 15419 (inputs `(("node-source-map" ,node-source-map-0.7.4)))
9376 (home-page #f) 15420 (home-page "https://www.npmjs.com/package/node-sourcemap-blender")
9377 (synopsis "") 15421 (synopsis "")
9378 (description "") 15422 (description "")
9379 (license license:isc))) 15423 (license license:isc)))
@@ -9382,4686 +15426,317 @@
9382 (package 15426 (package
9383 (name "node-tslib") 15427 (name "node-tslib")
9384 (version "1.14.1") 15428 (version "1.14.1")
9385 (source 15429 (source (origin
9386 (origin 15430 (method url-fetch)
9387 (method url-fetch) 15431 (uri "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz")
9388 (uri "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz") 15432 (sha256
9389 (sha256 15433 (base32
9390 (base32 15434 "1ywidp09jjarr031l03jg042zsfys2y2idwdcvmqhr7g54p32fvk"))))
9391 "1ywidp09jjarr031l03jg042zsfys2y2idwdcvmqhr7g54p32fvk")))) 15435 (build-system node-build-system)
9392 (build-system node-build-system) 15436 (arguments
9393 (arguments 15437 '(#:tests? #f
9394 `(#:tests? 15438 #:phases (modify-phases %standard-phases
9395 #f 15439 (delete 'build))))
9396 #:phases
9397 (modify-phases
9398 %standard-phases
9399 (delete 'configure)
9400 (delete 'build))))
9401 (home-page "https://www.typescriptlang.org/") 15440 (home-page "https://www.typescriptlang.org/")
9402 (synopsis 15441 (synopsis "Runtime library for TypeScript helper functions")
9403 "Runtime library for TypeScript helper functions") 15442 (description "Runtime library for TypeScript helper functions")
9404 (description 15443 (license license:bsd-0)))
9405 "Runtime library for TypeScript helper functions")
9406 (license (license:non-copyleft "unknown"))))
9407 15444
9408(define-public node-merge-1.2.1 15445(define-public node-merge-1.2.1
9409 (package 15446 (package
9410 (name "node-merge") 15447 (name "node-merge")
9411 (version "1.2.1") 15448 (version "1.2.1")
9412 (source 15449 (source (origin
9413 (origin 15450 (method url-fetch)
9414 (method url-fetch) 15451 (uri "https://registry.npmjs.org/merge/-/merge-1.2.1.tgz")
9415 (uri "https://registry.npmjs.org/merge/-/merge-1.2.1.tgz") 15452 (sha256
9416 (sha256 15453 (base32
9417 (base32 15454 "1jkairlra9950qzmfiglyagxahccd9an27i2gjlkp6say0s04m5x"))))
9418 "1jkairlra9950qzmfiglyagxahccd9an27i2gjlkp6say0s04m5x")))) 15455 (build-system node-build-system)
9419 (build-system node-build-system) 15456 (arguments
9420 (arguments 15457 '(#:tests? #f
9421 `(#:tests? 15458 #:phases (modify-phases %standard-phases
9422 #f 15459 (delete 'build))))
9423 #:phases
9424 (modify-phases
9425 %standard-phases
9426 (delete 'configure)
9427 (delete 'build))))
9428 (home-page "https://github.com/yeikos/js.merge") 15460 (home-page "https://github.com/yeikos/js.merge")
9429 (synopsis 15461 (synopsis
9430 "Merge multiple objects into one, optionally creating a new cloned object. Similar to the jQuery.extend but more flexible. Works in Node.js and the browser.") 15462 "Merge multiple objects into one, optionally creating a new cloned object. Similar to the jQuery.extend but more flexible. Works in Node.js and the browser.")
9431 (description 15463 (description
9432 "Merge multiple objects into one, optionally creating a new cloned object. Similar to the jQuery.extend but more flexible. Works in Node.js and the browser.") 15464 "Merge multiple objects into one, optionally creating a new cloned object. Similar to the jQuery.extend but more flexible. Works in Node.js and the browser.")
9433 (license license:expat))) 15465 (license license:expat)))
9434 15466
9435(define-public node-exec-sh-0.2.2 15467(define-public node-exec-sh-0.2.2
9436 (package 15468 (package
9437 (name "node-exec-sh") 15469 (name "node-exec-sh")
9438 (version "0.2.2") 15470 (version "0.2.2")
9439 (source 15471 (source (origin
9440 (origin 15472 (method url-fetch)
9441 (method url-fetch) 15473 (uri "https://registry.npmjs.org/exec-sh/-/exec-sh-0.2.2.tgz")
9442 (uri "https://registry.npmjs.org/exec-sh/-/exec-sh-0.2.2.tgz") 15474 (sha256
9443 (sha256 15475 (base32
9444 (base32 15476 "1493miwgm1g0f76xzgn2bxg1zaqliih2d4lmfpzxwk4xaq6d2aiq"))))
9445 "1493miwgm1g0f76xzgn2bxg1zaqliih2d4lmfpzxwk4xaq6d2aiq")))) 15477 (build-system node-build-system)
9446 (build-system node-build-system) 15478 (arguments
9447 (arguments 15479 '(#:tests? #f
9448 `(#:tests? 15480 #:phases (modify-phases %standard-phases
9449 #f 15481 (delete 'build)
9450 #:phases 15482 (add-after 'patch-dependencies 'delete-dev-dependencies
9451 (modify-phases 15483 (lambda _
9452 %standard-phases 15484 (delete-dependencies '("coveralls" "istanbul"
9453 (delete 'configure) 15485 "jsdoc"
9454 (delete 'build)))) 15486 "jshint"
15487 "mocha"
15488 "sinon"
15489 "standard")))))))
9455 (inputs `(("node-merge" ,node-merge-1.2.1))) 15490 (inputs `(("node-merge" ,node-merge-1.2.1)))
9456 (home-page 15491 (home-page "https://github.com/tsertkov/exec-sh#readme")
9457 "https://github.com/tsertkov/exec-sh#readme") 15492 (synopsis "Execute shell command forwarding all stdio.")
9458 (synopsis 15493 (description "Execute shell command forwarding all stdio.")
9459 "Execute shell command forwarding all stdio.") 15494 (license license:expat)))
9460 (description
9461 "Execute shell command forwarding all stdio.")
9462 (license (license:non-copyleft "unknown"))))
9463 15495
9464(define-public node-watch-1.0.2 15496(define-public node-watch-1.0.2
9465 (package 15497 (package
9466 (name "node-watch") 15498 (name "node-watch")
9467 (version "1.0.2") 15499 (version "1.0.2")
9468 (source 15500 (source (origin
9469 (origin 15501 (method url-fetch)
9470 (method url-fetch) 15502 (uri "https://registry.npmjs.org/watch/-/watch-1.0.2.tgz")
9471 (uri "https://registry.npmjs.org/watch/-/watch-1.0.2.tgz") 15503 (sha256
9472 (sha256 15504 (base32
9473 (base32 15505 "1kzs1vvv0r1bns3bacj2rc8k829rv60hqvd7nvdr30vsgf54irw5"))))
9474 "1kzs1vvv0r1bns3bacj2rc8k829rv60hqvd7nvdr30vsgf54irw5")))) 15506 (build-system node-build-system)
9475 (build-system node-build-system) 15507 (arguments
9476 (arguments 15508 '(#:tests? #f
9477 `(#:tests? 15509 #:phases (modify-phases %standard-phases
9478 #f 15510 (delete 'build))))
9479 #:phases 15511 (inputs `(("node-minimist" ,node-minimist-1.2.8)
9480 (modify-phases 15512 ("node-exec-sh" ,node-exec-sh-0.2.2)))
9481 %standard-phases
9482 (delete 'configure)
9483 (delete 'build))))
9484 (inputs
9485 `(("node-minimist" ,node-minimist-1.2.5)
9486 ("node-exec-sh" ,node-exec-sh-0.2.2)))
9487 (home-page "https://github.com/mikeal/watch") 15513 (home-page "https://github.com/mikeal/watch")
9488 (synopsis "Utilities for watching file trees.") 15514 (synopsis "Utilities for watching file trees.")
9489 (description 15515 (description "Utilities for watching file trees.")
9490 "Utilities for watching file trees.")
9491 (license license:asl2.0))) 15516 (license license:asl2.0)))
9492 15517
9493(define-public node-options-0.0.6 15518(define-public node-options-0.0.6
9494 (package 15519 (package
9495 (name "node-options") 15520 (name "node-options")
9496 (version "0.0.6") 15521 (version "0.0.6")
9497 (source 15522 (source (origin
9498 (origin 15523 (method url-fetch)
9499 (method url-fetch) 15524 (uri "https://registry.npmjs.org/options/-/options-0.0.6.tgz")
9500 (uri "https://registry.npmjs.org/options/-/options-0.0.6.tgz") 15525 (sha256
9501 (sha256 15526 (base32
9502 (base32 15527 "1wn9bq0lbkn0md7ma7cccjfdw7z9ia8smls8ab0475rpnxqh08dy"))))
9503 "1wn9bq0lbkn0md7ma7cccjfdw7z9ia8smls8ab0475rpnxqh08dy")))) 15528 (build-system node-build-system)
9504 (build-system node-build-system) 15529 (arguments
9505 (arguments 15530 '(#:tests? #f
9506 `(#:tests? 15531 #:phases (modify-phases %standard-phases
9507 #f 15532 (delete 'build)
9508 #:phases 15533 (add-after 'patch-dependencies 'delete-dev-dependencies
9509 (modify-phases 15534 (lambda _
9510 %standard-phases 15535 (delete-dependencies '("mocha")))))))
9511 (delete 'configure) 15536 (home-page "https://github.com/einaros/options.js")
9512 (delete 'build)))) 15537 (synopsis "A very light-weight in-code option parsers for node.js.")
9513 (home-page 15538 (description "A very light-weight in-code option parsers for node.js.")
9514 "https://github.com/einaros/options.js") 15539 (license #f)))
9515 (synopsis
9516 "A very light-weight in-code option parsers for node.js.")
9517 (description
9518 "A very light-weight in-code option parsers for node.js.")
9519 (license (license:non-copyleft "unknown"))))
9520 15540
9521(define-public node-ultron-1.0.2 15541(define-public node-ultron-1.0.2
9522 (package 15542 (package
9523 (name "node-ultron") 15543 (name "node-ultron")
9524 (version "1.0.2") 15544 (version "1.0.2")
9525 (source 15545 (source (origin
9526 (origin 15546 (method url-fetch)
9527 (method url-fetch) 15547 (uri "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz")
9528 (uri "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz") 15548 (sha256
9529 (sha256 15549 (base32
9530 (base32 15550 "056l6xqq23iijac63myrqinwhldixzsvmyi4lkfnawd0w4fagl67"))))
9531 "056l6xqq23iijac63myrqinwhldixzsvmyi4lkfnawd0w4fagl67")))) 15551 (build-system node-build-system)
9532 (build-system node-build-system) 15552 (arguments
9533 (arguments 15553 '(#:tests? #f
9534 `(#:tests? 15554 #:phases (modify-phases %standard-phases
9535 #f 15555 (delete 'build)
9536 #:phases 15556 (add-after 'patch-dependencies 'delete-dev-dependencies
9537 (modify-phases 15557 (lambda _
9538 %standard-phases 15558 (delete-dependencies '("assume" "eventemitter3"
9539 (delete 'configure) 15559 "istanbul" "mocha" "pre-commit")))))))
9540 (delete 'build))))
9541 (home-page "https://github.com/unshiftio/ultron") 15560 (home-page "https://github.com/unshiftio/ultron")
9542 (synopsis 15561 (synopsis
9543 "Ultron is high-intelligence robot. It gathers intel so it can start improving upon his rudimentary design") 15562 "Ultron is high-intelligence robot. It gathers intel so it can start improving upon his rudimentary design")
9544 (description 15563 (description
9545 "Ultron is high-intelligence robot. It gathers intel so it can start improving upon his rudimentary design") 15564 "Ultron is high-intelligence robot. It gathers intel so it can start improving upon his rudimentary design")
9546 (license license:expat))) 15565 (license license:expat)))
9547 15566
9548(define-public node-ws-1.1.5 15567(define-public node-ws-1.1.5
9549 (package 15568 (package
9550 (name "node-ws") 15569 (name "node-ws")
9551 (version "1.1.5") 15570 (version "1.1.5")
9552 (source 15571 (source (origin
9553 (origin 15572 (method url-fetch)
9554 (method url-fetch) 15573 (uri "https://registry.npmjs.org/ws/-/ws-1.1.5.tgz")
9555 (uri "https://registry.npmjs.org/ws/-/ws-1.1.5.tgz") 15574 (sha256
9556 (sha256 15575 (base32
9557 (base32 15576 "1vh6gflkpl9fga4kzcxjdb7zp81x9687bnihs5fyvp7xc6s2zm51"))))
9558 "1vh6gflkpl9fga4kzcxjdb7zp81x9687bnihs5fyvp7xc6s2zm51")))) 15577 (build-system node-build-system)
9559 (build-system node-build-system) 15578 (arguments
9560 (arguments 15579 '(#:tests? #f
9561 `(#:tests? 15580 #:phases (modify-phases %standard-phases
9562 #f 15581 (delete 'build)
9563 #:phases 15582 (add-after 'patch-dependencies 'delete-dev-dependencies
9564 (modify-phases 15583 (lambda _
9565 %standard-phases 15584 (delete-dependencies '("ansi" "benchmark"
9566 (delete 'configure) 15585 "bufferutil"
9567 (delete 'build)))) 15586 "expect.js"
9568 (inputs 15587 "istanbul"
9569 `(("node-ultron" ,node-ultron-1.0.2) 15588 "mocha"
9570 ("node-options" ,node-options-0.0.6))) 15589 "should"
15590 "tinycolor"
15591 "utf-8-validate")))))))
15592 (inputs `(("node-ultron" ,node-ultron-1.0.2)
15593 ("node-options" ,node-options-0.0.6)))
9571 (home-page "https://github.com/websockets/ws") 15594 (home-page "https://github.com/websockets/ws")
9572 (synopsis 15595 (synopsis
9573 "Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js") 15596 "Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js")
9574 (description
9575 "Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js")
9576 (license license:expat)))
9577
9578(define-public node-typescript-4.1.5
9579 (package
9580 (name "node-typescript")
9581 (version "4.1.5")
9582 (source
9583 (origin
9584 (method url-fetch)
9585 (uri "https://registry.npmjs.org/typescript/-/typescript-4.1.5.tgz")
9586 (sha256
9587 (base32
9588 "1d6vwxj0sn020vi8c6x37y0m48diwhy34rmsf33zglnjfkwj34mk"))))
9589 (build-system node-build-system)
9590 (arguments
9591 `(#:tests?
9592 #f
9593 #:phases
9594 (modify-phases
9595 %standard-phases
9596 (delete 'configure)
9597 (delete 'build))))
9598 (home-page "https://www.typescriptlang.org/")
9599 (synopsis
9600 "TypeScript is a language for application scale JavaScript development")
9601 (description
9602 "TypeScript is a language for application scale JavaScript development")
9603 (license license:asl2.0)))
9604
9605(define-public node-fuse-box-3.7.1
9606 (package
9607 (name "node-fuse-box")
9608 (version "3.7.1")
9609 (source
9610 (origin
9611 (method url-fetch)
9612 (uri "https://registry.npmjs.org/fuse-box/-/fuse-box-3.7.1.tgz")
9613 (sha256
9614 (base32
9615 "0rn9i8a9rxbhrzaf8w6fg2s8kjgps45vl58f2q9ih8bvag0ixj7h"))))
9616 (build-system node-build-system)
9617 (arguments
9618 `(#:tests?
9619 #f
9620 #:phases
9621 (modify-phases
9622 %standard-phases
9623 (delete 'configure)
9624 (delete 'build))))
9625 (inputs
9626 `(("node-ws" ,node-ws-1.1.5)
9627 ("node-watch" ,node-watch-1.0.2)
9628 ("node-tslib" ,node-tslib-1.14.1)
9629 ("node-sourcemap-blender"
9630 ,node-sourcemap-blender-1.0.5)
9631 ("node-stream-browserify"
9632 ,node-stream-browserify-2.0.2)
9633 ("node-source-map" ,node-source-map-0.7.3)
9634 ("node-shorthash" ,node-shorthash-0.0.2)
9635 ("node-request" ,node-request-2.88.2)
9636 ("node-regexpu-core" ,node-regexpu-core-4.7.1)
9637 ("node-realm-utils" ,node-realm-utils-1.0.9)
9638 ("node-prettysize" ,node-prettysize-0.0.3)
9639 ("node-pretty-time" ,node-pretty-time-0.2.0)
9640 ("node-postcss" ,node-postcss-6.0.23)
9641 ("node-mustache" ,node-mustache-2.3.2)
9642 ("node-lego-api" ,node-lego-api-1.0.8)
9643 ("node-inquirer" ,node-inquirer-3.3.0)
9644 ("node-ieee754" ,node-ieee754-1.2.1)
9645 ("node-glob" ,node-glob-7.1.6)
9646 ("node-getopts" ,node-getopts-2.2.5)
9647 ("node-fuse-concat-with-sourcemaps"
9648 ,node-fuse-concat-with-sourcemaps-1.0.5)
9649 ("node-fs-extra" ,node-fs-extra-7.0.1)
9650 ("node-fliplog" ,node-fliplog-0.3.13)
9651 ("node-express" ,node-express-4.17.1)
9652 ("node-escodegen" ,node-escodegen-1.14.3)
9653 ("node-clean-css" ,node-clean-css-4.2.3)
9654 ("node-chokidar" ,node-chokidar-1.7.0)
9655 ("node-bowser" ,node-bowser-2.11.0)
9656 ("node-base64-js" ,node-base64-js-1.5.1)
9657 ("node-base64-img" ,node-base64-img-1.0.4)
9658 ("node-app-root-path" ,node-app-root-path-2.2.1)
9659 ("node-ansi" ,node-ansi-0.3.1)
9660 ("node-acorn-jsx" ,node-acorn-jsx-4.1.1)
9661 ("node-acorn" ,node-acorn-5.7.4)))
9662 ;; XXX: why?
9663 (propagated-inputs
9664 `(("node-typescript" ,node-typescript-4.1.5)
9665 ("node-terser" ,node-terser-4.8.0)
9666 ; Using terser instead.
9667 ;("node-uglify-js" ,node-uglify-js-3.12.7)
9668 ;("node-uglify-es" ,node-uglify-es-3.3.10)
9669 ))
9670 (home-page
9671 "https://github.com/fuse-box/fuse-box#readme")
9672 (synopsis
9673 "Fuse-Box a bundler that does it right")
9674 (description
9675 "Fuse-Box a bundler that does it right")
9676 (license license:expat)))
9677
9678;;; prosemirror-dev-tools
9679
9680(define-public node-emotion-unitless-0.6.7
9681 (package
9682 (name "node-emotion-unitless")
9683 (version "0.6.7")
9684 (source
9685 (origin
9686 (method url-fetch)
9687 (uri "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.6.7.tgz")
9688 (sha256
9689 (base32
9690 "07jprfn958gmsnphyblvn81lmk3g9r0jqp612km87n0397kb56lw"))))
9691 (build-system node-build-system)
9692 (arguments
9693 `(#:tests?
9694 #f
9695 #:phases
9696 (modify-phases
9697 %standard-phases
9698 (delete 'configure)
9699 (delete 'build))))
9700 (home-page #f)
9701 (synopsis
9702 "An object of css properties that don't accept values with units")
9703 (description
9704 "An object of css properties that don't accept values with units")
9705 (license license:expat)))
9706
9707(define-public node-csstype-2.6.14
9708 (package
9709 (name "node-csstype")
9710 (version "2.6.14")
9711 (source
9712 (origin
9713 (method url-fetch)
9714 (uri "https://registry.npmjs.org/csstype/-/csstype-2.6.14.tgz")
9715 (sha256
9716 (base32
9717 "1a4bf82zl4lbs696vh59k1jmwqylajbjxc1ln5jkg094fph5mwy6"))))
9718 (build-system node-build-system)
9719 (arguments
9720 `(#:tests?
9721 #f
9722 #:phases
9723 (modify-phases
9724 %standard-phases
9725 (delete 'configure)
9726 (delete 'build))))
9727 (home-page
9728 "https://github.com/frenic/csstype#readme")
9729 (synopsis
9730 "Strict TypeScript and Flow types for style based on MDN data")
9731 (description
9732 "Strict TypeScript and Flow types for style based on MDN data")
9733 (license license:expat)))
9734
9735(define-public node-stylis-3.5.4
9736 (package
9737 (name "node-stylis")
9738 (version "3.5.4")
9739 (source
9740 (origin
9741 (method url-fetch)
9742 (uri "https://registry.npmjs.org/stylis/-/stylis-3.5.4.tgz")
9743 (sha256
9744 (base32
9745 "0l79wch35jcrkrd2069qgmnrhrly06asrps540lda2zmgqkqwdwf"))))
9746 (build-system node-build-system)
9747 (arguments
9748 `(#:tests?
9749 #f
9750 #:phases
9751 (modify-phases
9752 %standard-phases
9753 (delete 'configure)
9754 (delete 'build))))
9755 (home-page
9756 "https://github.com/thysultan/stylis.js")
9757 (synopsis "light - weight css preprocessor")
9758 (description "light - weight css preprocessor")
9759 (license license:expat)))
9760
9761(define-public node-stylis-rule-sheet-0.0.10
9762 (package
9763 (name "node-stylis-rule-sheet")
9764 (version "0.0.10")
9765 (source
9766 (origin
9767 (method url-fetch)
9768 (uri "https://registry.npmjs.org/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz")
9769 (sha256
9770 (base32
9771 "09ipsi2bzzh7xl9pg2j7gh1dqbly93yf65ifix9adr918kw6f3dx"))))
9772 (build-system node-build-system)
9773 (arguments
9774 `(#:tests?
9775 #f
9776 #:phases
9777 (modify-phases
9778 %standard-phases
9779 ;; stylis is just a peerDependency.
9780 (add-after 'patch-dependencies 'delete-dependencies
9781 (lambda args
9782 (delete-dependencies
9783 `("stylis")))))))
9784 (home-page
9785 "https://github.com/thysultan/stylis.js")
9786 (synopsis
9787 "stylis plugin to extract individual rules to use with insertRule API")
9788 (description
9789 "stylis plugin to extract individual rules to use with insertRule API")
9790 (license license:expat)))
9791
9792(define-public node-create-emotion-9.2.12
9793 (package
9794 (name "node-create-emotion")
9795 (version "9.2.12")
9796 (source
9797 (origin
9798 (method url-fetch)
9799 (uri "https://registry.npmjs.org/create-emotion/-/create-emotion-9.2.12.tgz")
9800 (sha256
9801 (base32
9802 "0a4bsws1wv8kisjcbvv1j6zg0r0sgrb92r7gjs7h9h7yk46fdf2w"))))
9803 (build-system node-build-system)
9804 (arguments
9805 `(#:tests?
9806 #f
9807 #:phases
9808 (modify-phases
9809 %standard-phases
9810 (delete 'configure)
9811 (delete 'build))))
9812 (inputs
9813 `(("node-stylis-rule-sheet"
9814 ,node-stylis-rule-sheet-0.0.10)
9815 ("node-stylis" ,node-stylis-3.5.4)
9816 ("node-csstype" ,node-csstype-2.6.14)
9817 ("node-emotion-unitless"
9818 ,node-emotion-unitless-0.6.7)
9819 ("node-emotion-stylis"
9820 ,node-emotion-stylis-0.7.1)
9821 ("node-emotion-memoize"
9822 ,node-emotion-memoize-0.6.6)
9823 ("node-emotion-hash" ,node-emotion-hash-0.6.6)))
9824 (home-page "https://emotion.sh")
9825 (synopsis "The Next Generation of CSS-in-JS.")
9826 (description "The Next Generation of CSS-in-JS.")
9827 (license license:expat)))
9828
9829(define-public node-emotion-9.2.12
9830 (package
9831 (name "node-emotion")
9832 (version "9.2.12")
9833 (source
9834 (origin
9835 (method url-fetch)
9836 (uri "https://registry.npmjs.org/emotion/-/emotion-9.2.12.tgz")
9837 (sha256
9838 (base32
9839 "0ps3zzpnaid2mg1bwcw9dpr2vxamnmgrgal1ia3jl2g841h6adf5"))))
9840 (build-system node-build-system)
9841 (arguments
9842 `(#:tests?
9843 #f
9844 #:phases
9845 (modify-phases
9846 %standard-phases
9847 (delete 'configure)
9848 (delete 'build))))
9849 (inputs
9850 `(("node-create-emotion"
9851 ,node-create-emotion-9.2.12)
9852 ("node-babel-plugin-emotion"
9853 ,node-babel-plugin-emotion-9.2.11)))
9854 (home-page "https://emotion.sh")
9855 (synopsis "The Next Generation of CSS-in-JS.")
9856 (description "The Next Generation of CSS-in-JS.")
9857 (license license:expat)))
9858
9859(define-public node-es6-object-assign-1.1.0
9860 (package
9861 (name "node-es6-object-assign")
9862 (version "1.1.0")
9863 (source
9864 (origin
9865 (method url-fetch)
9866 (uri "https://registry.npmjs.org/es6-object-assign/-/es6-object-assign-1.1.0.tgz")
9867 (sha256
9868 (base32
9869 "0qqnv6adfh52zd49jay2kiav4pjwn8v9b8g6khhpybp6sxq6m4kv"))))
9870 (build-system node-build-system)
9871 (arguments
9872 `(#:tests?
9873 #f
9874 #:phases
9875 (modify-phases
9876 %standard-phases
9877 (delete 'configure)
9878 (delete 'build))))
9879 (home-page
9880 "https://github.com/rubennorte/es6-object-assign")
9881 (synopsis
9882 "ECMAScript 2015 (ES6) Object.assign polyfill and ponyfill")
9883 (description
9884 "ECMAScript 2015 (ES6) Object.assign polyfill and ponyfill")
9885 (license license:expat)))
9886
9887(define-public node-buffer-from-1.1.1
9888 (package
9889 (name "node-buffer-from")
9890 (version "1.1.1")
9891 (source
9892 (origin
9893 (method url-fetch)
9894 (uri "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz")
9895 (sha256
9896 (base32
9897 "17drzww1pyrh2m1c46i02090gvwhriq00qqy66yh3bcjwz0mh3hr"))))
9898 (build-system node-build-system)
9899 (arguments
9900 `(#:tests?
9901 #f
9902 #:phases
9903 (modify-phases
9904 %standard-phases
9905 (delete 'configure)
9906 (delete 'build))))
9907 (home-page
9908 "https://github.com/LinusU/buffer-from#readme")
9909 (synopsis
9910 "A [ponyfill](https://ponyfill.com) for `Buffer.from`, uses native implementation if available.")
9911 (description
9912 "A [ponyfill](https://ponyfill.com) for `Buffer.from`, uses native implementation if available.")
9913 (license license:expat)))
9914
9915(define-public node-typedarray-0.0.6
9916 (package
9917 (name "node-typedarray")
9918 (version "0.0.6")
9919 (source
9920 (origin
9921 (method url-fetch)
9922 (uri "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz")
9923 (sha256
9924 (base32
9925 "022101ap05mryhpyw33phwyamk1i139qqpn2rs2lq72qm5slnciz"))))
9926 (build-system node-build-system)
9927 (arguments
9928 `(#:tests?
9929 #f
9930 #:phases
9931 (modify-phases
9932 %standard-phases
9933 (delete 'configure)
9934 (delete 'build))))
9935 (home-page
9936 "https://github.com/substack/typedarray")
9937 (synopsis "TypedArray polyfill for old browsers")
9938 (description
9939 "TypedArray polyfill for old browsers")
9940 (license license:expat)))
9941
9942(define-public node-concat-stream-1.6.2
9943 (package
9944 (name "node-concat-stream")
9945 (version "1.6.2")
9946 (source
9947 (origin
9948 (method url-fetch)
9949 (uri "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz")
9950 (sha256
9951 (base32
9952 "1wa3gka91z4mdwi9yz2lri8lb2b1vhimkr6zckcjdj4bjxcw2iya"))))
9953 (build-system node-build-system)
9954 (arguments
9955 `(#:tests?
9956 #f
9957 #:phases
9958 (modify-phases
9959 %standard-phases
9960 (delete 'configure)
9961 (delete 'build))))
9962 (inputs
9963 `(("node-typedarray" ,node-typedarray-0.0.6)
9964 ("node-readable-stream"
9965 ,node-readable-stream-2.3.7)
9966 ("node-inherits" ,node-inherits-2.0.4)
9967 ("node-buffer-from" ,node-buffer-from-1.1.1)))
9968 (home-page
9969 "https://github.com/maxogden/concat-stream#readme")
9970 (synopsis
9971 "writable stream that concatenates strings or binary data and calls a callback with the result")
9972 (description
9973 "writable stream that concatenates strings or binary data and calls a callback with the result")
9974 (license license:expat)))
9975
9976(define-public node-html-1.0.0
9977 (package
9978 (name "node-html")
9979 (version "1.0.0")
9980 (source
9981 (origin
9982 (method url-fetch)
9983 (uri "https://registry.npmjs.org/html/-/html-1.0.0.tgz")
9984 (sha256
9985 (base32
9986 "1h0zw5lz45aaz17aq27la0pg0lkc6b8l0hvngcgq6vkm67vkij7l"))))
9987 (build-system node-build-system)
9988 (arguments
9989 `(#:tests?
9990 #f
9991 #:phases
9992 (modify-phases
9993 %standard-phases
9994 (delete 'configure)
9995 (delete 'build))))
9996 (inputs
9997 `(("node-concat-stream" ,node-concat-stream-1.6.2)))
9998 (home-page
9999 "https://github.com/maxogden/commonjs-html-prettyprinter")
10000 (synopsis
10001 "HTML pretty printer CLI utility (based on jsbeautifier)")
10002 (description
10003 "HTML pretty printer CLI utility (based on jsbeautifier)")
10004 (license (license:non-copyleft "unknown"))))
10005
10006(define-public node-ie-array-find-polyfill-1.1.0
10007 (package
10008 (name "node-ie-array-find-polyfill")
10009 (version "1.1.0")
10010 (source
10011 (origin
10012 (method url-fetch)
10013 (uri "https://registry.npmjs.org/ie-array-find-polyfill/-/ie-array-find-polyfill-1.1.0.tgz")
10014 (sha256
10015 (base32
10016 "0a6hnxnv5s45fkl1y50lz84c2vm54wp4sdj5nxgsynh6jl72hyrk"))))
10017 (build-system node-build-system)
10018 (arguments
10019 `(#:tests?
10020 #f
10021 #:phases
10022 (modify-phases
10023 %standard-phases
10024 (delete 'configure)
10025 (delete 'build))))
10026 (home-page
10027 "https://github.com/abdalla/ie-array-find-polyfill#readme")
10028 (synopsis
10029 "Polyfill to provide array.find on IE.")
10030 (description
10031 "Polyfill to provide array.find on IE.")
10032 (license license:expat)))
10033
10034(define-public node-diff-match-patch-1.0.5
10035 (package
10036 (name "node-diff-match-patch")
10037 (version "1.0.5")
10038 (source
10039 (origin
10040 (method url-fetch)
10041 (uri "https://registry.npmjs.org/diff-match-patch/-/diff-match-patch-1.0.5.tgz")
10042 (sha256
10043 (base32
10044 "1av5phlznfsvj4yr01hfh83b5fv6izs6810jq7l9q927yr5d8mpa"))))
10045 (build-system node-build-system)
10046 (arguments
10047 `(#:tests?
10048 #f
10049 #:phases
10050 (modify-phases
10051 %standard-phases
10052 (delete 'configure)
10053 (delete 'build))))
10054 (home-page
10055 "https://github.com/JackuB/diff-match-patch#readme")
10056 (synopsis
10057 "npm package for https://github.com/google/diff-match-patch")
10058 (description
10059 "npm package for https://github.com/google/diff-match-patch")
10060 (license license:asl2.0)))
10061
10062(define-public node-jsondiffpatch-0.3.11
10063 (package
10064 (name "node-jsondiffpatch")
10065 (version "0.3.11")
10066 (source
10067 (origin
10068 (method url-fetch)
10069 (uri "https://registry.npmjs.org/jsondiffpatch/-/jsondiffpatch-0.3.11.tgz")
10070 (sha256
10071 (base32
10072 "0zv6a35v83zh2fkw634vsj256xr1qxxk0mh1dy2wq3cq2wm6031p"))))
10073 (build-system node-build-system)
10074 (arguments
10075 `(#:tests?
10076 #f
10077 #:phases
10078 (modify-phases
10079 %standard-phases
10080 (delete 'configure)
10081 (delete 'build))))
10082 (inputs
10083 `(("node-diff-match-patch"
10084 ,node-diff-match-patch-1.0.5)
10085 ("node-chalk" ,node-chalk-2.4.2)))
10086 (home-page
10087 "https://github.com/benjamine/jsondiffpatch")
10088 (synopsis "Diff & Patch for Javascript objects")
10089 (description
10090 "Diff & Patch for Javascript objects")
10091 (license license:expat)))
10092
10093(define-public node-prop-types-15.7.2
10094 (package
10095 (name "node-prop-types")
10096 (version "15.7.2")
10097 (source
10098 (origin
10099 (method url-fetch)
10100 (uri "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz")
10101 (sha256
10102 (base32
10103 "0xc3kcr9nyhavsbdh0w3p2zgdnyrirqvl5y7gxdrcm7wifg4z47p"))))
10104 (build-system node-build-system)
10105 (arguments
10106 `(#:tests?
10107 #f
10108 #:phases
10109 (modify-phases
10110 %standard-phases
10111 (delete 'configure)
10112 (delete 'build))))
10113 (inputs
10114 `(("node-react-is" ,node-react-is-16.13.1)
10115 ("node-object-assign" ,node-object-assign-4.1.1)
10116 ("node-loose-envify" ,node-loose-envify-1.4.0)))
10117 (home-page "https://facebook.github.io/react/")
10118 (synopsis
10119 "Runtime type checking for React props and similar objects.")
10120 (description
10121 "Runtime type checking for React props and similar objects.")
10122 (license license:expat)))
10123
10124(define-public node-prosemirror-model-1.13.3
10125 (package
10126 (name "node-prosemirror-model")
10127 (version "1.13.3")
10128 (source
10129 (origin
10130 (method url-fetch)
10131 (uri "https://registry.npmjs.org/prosemirror-model/-/prosemirror-model-1.13.3.tgz")
10132 (sha256
10133 (base32
10134 "1wpqkv651727s8iy5fa5j1h19msln1rppxnyhqnyn7wz5xbhwwq9"))))
10135 (build-system node-build-system)
10136 (arguments
10137 `(#:tests?
10138 #f
10139 #:phases
10140 (modify-phases
10141 %standard-phases
10142 (delete 'configure)
10143 (delete 'build))))
10144 (inputs
10145 `(("node-orderedmap" ,node-orderedmap-1.1.1)))
10146 (home-page
10147 "https://github.com/prosemirror/prosemirror-model#readme")
10148 (synopsis "ProseMirror's document model")
10149 (description "ProseMirror's document model")
10150 (license license:expat)))
10151
10152(define-public node-orderedmap-1.1.1
10153 (package
10154 (name "node-orderedmap")
10155 (version "1.1.1")
10156 (source
10157 (origin
10158 (method url-fetch)
10159 (uri "https://registry.npmjs.org/orderedmap/-/orderedmap-1.1.1.tgz")
10160 (sha256
10161 (base32
10162 "13kzghmkqva9dfv8m7q920nwqqpab7lhrpvk3aqrcda4f8ri6lx5"))))
10163 (build-system node-build-system)
10164 (arguments
10165 `(#:tests?
10166 #f
10167 #:phases
10168 (modify-phases
10169 %standard-phases
10170 (delete 'configure)
10171 (delete 'build))))
10172 (home-page
10173 "https://github.com/marijnh/orderedmap#readme")
10174 (synopsis
10175 "Persistent ordered mapping from strings")
10176 (description
10177 "Persistent ordered mapping from strings")
10178 (license license:expat)))
10179
10180(define-public node-prosemirror-transform-1.2.11
10181 (package
10182 (name "node-prosemirror-transform")
10183 (version "1.2.11")
10184 (source
10185 (origin
10186 (method url-fetch)
10187 (uri "https://registry.npmjs.org/prosemirror-transform/-/prosemirror-transform-1.2.11.tgz")
10188 (sha256
10189 (base32
10190 "0s077cl281crfyjrlwjl5r3pwpyy4qacfvj31q2z5f7rskvvjr9j"))))
10191 (build-system node-build-system)
10192 (arguments
10193 `(#:tests?
10194 #f
10195 #:phases
10196 (modify-phases
10197 %standard-phases
10198 (delete 'configure)
10199 (delete 'build))))
10200 (inputs
10201 `(("node-prosemirror-model"
10202 ,node-prosemirror-model-1.13.3)))
10203 (home-page
10204 "https://github.com/prosemirror/prosemirror-transform#readme")
10205 (synopsis "ProseMirror document transformations")
10206 (description
10207 "ProseMirror document transformations")
10208 (license license:expat)))
10209
10210(define-public node-prosemirror-state-1.3.4
10211 (package
10212 (name "node-prosemirror-state")
10213 (version "1.3.4")
10214 (source
10215 (origin
10216 (method url-fetch)
10217 (uri "https://registry.npmjs.org/prosemirror-state/-/prosemirror-state-1.3.4.tgz")
10218 (sha256
10219 (base32
10220 "0bxj60x2d71hbv9sjmhxqf16wfp81ipa8zm809cgqcrdylk9dn4h"))))
10221 (build-system node-build-system)
10222 (arguments
10223 `(#:tests?
10224 #f
10225 #:phases
10226 (modify-phases
10227 %standard-phases
10228 (delete 'configure)
10229 (delete 'build))))
10230 (inputs
10231 `(("node-prosemirror-transform"
10232 ,node-prosemirror-transform-1.2.11)
10233 ("node-prosemirror-model"
10234 ,node-prosemirror-model-1.13.3)))
10235 (home-page
10236 "https://github.com/prosemirror/prosemirror-state#readme")
10237 (synopsis "ProseMirror editor state")
10238 (description "ProseMirror editor state")
10239 (license license:expat)))
10240
10241(define-public node-lodash--getnative-3.9.1
10242 (package
10243 (name "node-lodash--getnative")
10244 (version "3.9.1")
10245 (source
10246 (origin
10247 (method url-fetch)
10248 (uri "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz")
10249 (sha256
10250 (base32
10251 "0q3rny7pjcaxp74p7y95nhq4w1gxz72d32nrcjddlb2h7w8l1wzp"))))
10252 (build-system node-build-system)
10253 (arguments
10254 `(#:tests?
10255 #f
10256 #:phases
10257 (modify-phases
10258 %standard-phases
10259 (delete 'configure)
10260 (delete 'build))))
10261 (home-page "https://lodash.com/")
10262 (synopsis
10263 "The modern build of lodashâ\x80\x99s internal `getNative` as a module.")
10264 (description
10265 "The modern build of lodashâ\x80\x99s internal `getNative` as a module.")
10266 (license license:expat)))
10267
10268(define-public node-lodash-debounce-3.1.1
10269 (package
10270 (name "node-lodash-debounce")
10271 (version "3.1.1")
10272 (source
10273 (origin
10274 (method url-fetch)
10275 (uri "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-3.1.1.tgz")
10276 (sha256
10277 (base32
10278 "0rd56z9jzp7yack2g7jb0kcsfdfd27c8da5ghkbbyfs2f3xdl9ki"))))
10279 (build-system node-build-system)
10280 (arguments
10281 `(#:tests?
10282 #f
10283 #:phases
10284 (modify-phases
10285 %standard-phases
10286 (delete 'configure)
10287 (delete 'build))))
10288 (inputs
10289 `(("node-lodash--getnative"
10290 ,node-lodash--getnative-3.9.1)))
10291 (home-page "https://lodash.com/")
10292 (synopsis
10293 "The modern build of lodashâ\x80\x99s `_.debounce` as a module.")
10294 (description
10295 "The modern build of lodashâ\x80\x99s `_.debounce` as a module.")
10296 (license license:expat)))
10297
10298(define-public node-react-dock-0.2.4
10299 (package
10300 (name "node-react-dock")
10301 (version "0.2.4")
10302 (source
10303 (origin
10304 (method url-fetch)
10305 (uri "https://registry.npmjs.org/react-dock/-/react-dock-0.2.4.tgz")
10306 (sha256
10307 (base32
10308 "0s8q2j9iy046700rsy2xa7z58pz9v2a6baxr1jwjfrfizq5ba3w6"))))
10309 (build-system node-build-system)
10310 (arguments
10311 `(#:tests?
10312 #f
10313 #:phases
10314 (modify-phases
10315 %standard-phases
10316 (delete 'configure)
10317 (delete 'build))))
10318 (inputs
10319 `(("node-prop-types" ,node-prop-types-15.7.2)
10320 ("node-babel-runtime" ,node-babel-runtime-6.26.0)
10321 ("node-react" ,node-react-17.0.1)
10322 ("node-lodash-debounce"
10323 ,node-lodash-debounce-3.1.1)))
10324 (home-page
10325 "https://github.com/alexkuz/react-dock")
10326 (synopsis "Resizable dockable react component")
10327 (description
10328 "Resizable dockable react component")
10329 (license license:expat)))
10330
10331(define-public node-to-fast-properties-2.0.0
10332 (package
10333 (name "node-to-fast-properties")
10334 (version "2.0.0")
10335 (source
10336 (origin
10337 (method url-fetch)
10338 (uri "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz")
10339 (sha256
10340 (base32
10341 "10q99rgk8nfl8k7q0aqmik4wkbm8zp4z0rpwbm8b0gr4pi4gw4y7"))))
10342 (build-system node-build-system)
10343 (arguments
10344 `(#:tests?
10345 #f
10346 #:phases
10347 (modify-phases
10348 %standard-phases
10349 (delete 'configure)
10350 (delete 'build))))
10351 (home-page
10352 "https://github.com/sindresorhus/to-fast-properties#readme")
10353 (synopsis
10354 "Force V8 to use fast properties for an object")
10355 (description
10356 "Force V8 to use fast properties for an object")
10357 (license license:expat)))
10358
10359(define-public node-babel-types-7.12.13
10360 (package
10361 (name "node-babel-types")
10362 (version "7.12.13")
10363 (source
10364 (origin
10365 (method url-fetch)
10366 (uri "https://registry.npmjs.org/@babel/types/-/types-7.12.13.tgz")
10367 (sha256
10368 (base32
10369 "1maq4h129qpp2h58wz58zd18lrk49j0v45vgx37bmxdfbfpxwhr8"))))
10370 (build-system node-build-system)
10371 (arguments
10372 `(#:tests?
10373 #f
10374 #:phases
10375 (modify-phases
10376 %standard-phases
10377 (delete 'configure)
10378 (delete 'build))))
10379 (inputs
10380 `(("node-to-fast-properties"
10381 ,node-to-fast-properties-2.0.0)
10382 ("node-lodash" ,node-lodash-4.17.20)
10383 ("node-babel-helper-validator-identifier"
10384 ,node-babel-helper-validator-identifier-7.12.11)))
10385 (home-page
10386 "https://babel.dev/docs/en/next/babel-types")
10387 (synopsis
10388 "Babel Types is a Lodash-esque utility library for AST nodes")
10389 (description
10390 "Babel Types is a Lodash-esque utility library for AST nodes")
10391 (license license:expat)))
10392
10393(define-public node-babel-helper-module-imports-7.12.13
10394 (package
10395 (name "node-babel-helper-module-imports")
10396 (version "7.12.13")
10397 (source
10398 (origin
10399 (method url-fetch)
10400 (uri "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.13.tgz")
10401 (sha256
10402 (base32
10403 "1j26hw657l98yxzbb60psd9fwxjysq7dgmnq3f6c9yjiiy9kdf38"))))
10404 (build-system node-build-system)
10405 (arguments
10406 `(#:tests?
10407 #f
10408 #:phases
10409 (modify-phases
10410 %standard-phases
10411 (delete 'configure)
10412 (delete 'build))))
10413 (inputs
10414 `(("node-babel-types" ,node-babel-types-7.12.13)))
10415 (home-page
10416 "https://babel.dev/docs/en/next/babel-helper-module-imports")
10417 (synopsis
10418 "Babel helper functions for inserting module loads")
10419 (description
10420 "Babel helper functions for inserting module loads")
10421 (license license:expat)))
10422
10423(define-public node-emotion-hash-0.6.6
10424 (package
10425 (name "node-emotion-hash")
10426 (version "0.6.6")
10427 (source
10428 (origin
10429 (method url-fetch)
10430 (uri "https://registry.npmjs.org/@emotion/hash/-/hash-0.6.6.tgz")
10431 (sha256
10432 (base32
10433 "1cbb9m6j76xa4nvnk5kg12q18vad9r3kxgl1b4skr9zbsj6f6h5x"))))
10434 (build-system node-build-system)
10435 (arguments
10436 `(#:tests?
10437 #f
10438 #:phases
10439 (modify-phases
10440 %standard-phases
10441 (delete 'configure)
10442 (delete 'build))))
10443 (home-page #f)
10444 (synopsis "A MurmurHash2 implementation")
10445 (description "A MurmurHash2 implementation")
10446 (license license:expat)))
10447
10448(define-public node-emotion-utils-0.8.2
10449 (package
10450 (name "node-emotion-utils")
10451 (version "0.8.2")
10452 (source
10453 (origin
10454 (method url-fetch)
10455 (uri "https://registry.npmjs.org/@emotion/utils/-/utils-0.8.2.tgz")
10456 (sha256
10457 (base32
10458 "1bpc42kvbmpyc68p519ck9bwddd3a6962wrj67awayqwrifg7pgh"))))
10459 (build-system node-build-system)
10460 (arguments
10461 `(#:tests?
10462 #f
10463 #:phases
10464 (modify-phases
10465 %standard-phases
10466 (delete 'configure)
10467 (delete 'build))))
10468 (home-page #f)
10469 (synopsis "internal utils for emotion")
10470 (description "internal utils for emotion")
10471 (license license:expat)))
10472
10473(define-public node-emotion-serialize-0.9.1
10474 (package
10475 (name "node-emotion-serialize")
10476 (version "0.9.1")
10477 (source
10478 (origin
10479 (method url-fetch)
10480 (uri "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.9.1.tgz")
10481 (sha256
10482 (base32
10483 "1x60cb0nkfh93db0k0ci26466nnij0hvsx9zff8s1p6jkm2pzdls"))))
10484 (build-system node-build-system)
10485 (arguments
10486 `(#:tests?
10487 #f
10488 #:phases
10489 (modify-phases
10490 %standard-phases
10491 (delete 'configure)
10492 (delete 'build))))
10493 (inputs
10494 `(("node-emotion-utils" ,node-emotion-utils-0.8.2)
10495 ("node-emotion-unitless"
10496 ,node-emotion-unitless-0.6.7)
10497 ("node-emotion-memoize"
10498 ,node-emotion-memoize-0.6.6)
10499 ("node-emotion-hash" ,node-emotion-hash-0.6.6)))
10500 (home-page #f)
10501 (synopsis "serialization utils for emotion")
10502 (description "serialization utils for emotion")
10503 (license license:expat)))
10504
10505(define-public node-convert-source-map-1.7.0
10506 (package
10507 (name "node-convert-source-map")
10508 (version "1.7.0")
10509 (source
10510 (origin
10511 (method url-fetch)
10512 (uri "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz")
10513 (sha256
10514 (base32
10515 "1n834pca0vbvx9vhh26sb18mignqhhkhzc9i5ib22bcaflw1cs9c"))))
10516 (build-system node-build-system)
10517 (arguments
10518 `(#:tests?
10519 #f
10520 #:phases
10521 (modify-phases
10522 %standard-phases
10523 (delete 'configure)
10524 (delete 'build))))
10525 (inputs
10526 `(("node-safe-buffer" ,node-safe-buffer-5.1.2)))
10527 (home-page
10528 "https://github.com/thlorenz/convert-source-map")
10529 (synopsis
10530 "Converts a source-map from/to different formats and allows adding/changing properties.")
10531 (description
10532 "Converts a source-map from/to different formats and allows adding/changing properties.")
10533 (license license:expat)))
10534
10535(define-public node-emotion-babel-utils-0.6.10
10536 (package
10537 (name "node-emotion-babel-utils")
10538 (version "0.6.10")
10539 (source
10540 (origin
10541 (method url-fetch)
10542 (uri "https://registry.npmjs.org/@emotion/babel-utils/-/babel-utils-0.6.10.tgz")
10543 (sha256
10544 (base32
10545 "02s0nks0krdzxwbn8x1k7isl4vbi9y9pyps6kkisskz3pcxry6wf"))))
10546 (build-system node-build-system)
10547 (arguments
10548 `(#:tests?
10549 #f
10550 #:phases
10551 (modify-phases
10552 %standard-phases
10553 (delete 'configure)
10554 (delete 'build))))
10555 (inputs
10556 `(("node-source-map" ,node-source-map-0.7.3)
10557 ("node-find-root" ,node-find-root-1.1.0)
10558 ("node-convert-source-map"
10559 ,node-convert-source-map-1.7.0)
10560 ("node-emotion-serialize"
10561 ,node-emotion-serialize-0.9.1)
10562 ("node-emotion-memoize"
10563 ,node-emotion-memoize-0.6.6)
10564 ("node-emotion-hash" ,node-emotion-hash-0.6.6)))
10565 (home-page #f)
10566 (synopsis
10567 "Internal Babel utils used in various macros")
10568 (description
10569 "Internal Babel utils used in various macros")
10570 (license license:expat)))
10571
10572(define-public node-emotion-memoize-0.6.6
10573 (package
10574 (name "node-emotion-memoize")
10575 (version "0.6.6")
10576 (source
10577 (origin
10578 (method url-fetch)
10579 (uri "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.6.6.tgz")
10580 (sha256
10581 (base32
10582 "0fgj8kjn7ihiwbq2p5nbcv5a12zpy0x2smxlgfhk5xqj3ln1zgbn"))))
10583 (build-system node-build-system)
10584 (arguments
10585 `(#:tests?
10586 #f
10587 #:phases
10588 (modify-phases
10589 %standard-phases
10590 (delete 'configure)
10591 (delete 'build))))
10592 (home-page #f)
10593 (synopsis "emotion's memoize utility")
10594 (description "emotion's memoize utility")
10595 (license license:expat)))
10596
10597(define-public node-emotion-stylis-0.7.1
10598 (package
10599 (name "node-emotion-stylis")
10600 (version "0.7.1")
10601 (source
10602 (origin
10603 (method url-fetch)
10604 (uri "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.7.1.tgz")
10605 (sha256
10606 (base32
10607 "1g038f0pbq4l6hrddicnxxff4z79khwwfn88bxpzgn0mz96frckn"))))
10608 (build-system node-build-system)
10609 (arguments
10610 `(#:tests?
10611 #f
10612 #:phases
10613 (modify-phases
10614 %standard-phases
10615 (delete 'configure)
10616 (delete 'build))))
10617 (home-page #f)
10618 (synopsis "A custom build of Stylis")
10619 (description "A custom build of Stylis")
10620 (license license:expat)))
10621
10622(define-public node-regenerator-runtime-0.13.7
10623 (package
10624 (name "node-regenerator-runtime")
10625 (version "0.13.7")
10626 (source
10627 (origin
10628 (method url-fetch)
10629 (uri "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz")
10630 (sha256
10631 (base32
10632 "0km1sbvr80yhai5dwlhrsw0h7nyqy0d9n5gycj2gvyiaa3v4rkdm"))))
10633 (build-system node-build-system)
10634 (arguments
10635 `(#:tests?
10636 #f
10637 #:phases
10638 (modify-phases
10639 %standard-phases
10640 (delete 'configure)
10641 (delete 'build))))
10642 (home-page #f)
10643 (synopsis
10644 "Runtime for Regenerator-compiled generator and async functions.")
10645 (description
10646 "Runtime for Regenerator-compiled generator and async functions.")
10647 (license license:expat)))
10648
10649(define-public node-babel-runtime-7.12.13
10650 (package
10651 (name "node-babel-runtime")
10652 (version "7.12.13")
10653 (source
10654 (origin
10655 (method url-fetch)
10656 (uri "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.13.tgz")
10657 (sha256
10658 (base32
10659 "089naiq510vahvgg965cl0xgwsmg3m385rnd6cgh1cljpfli289f"))))
10660 (build-system node-build-system)
10661 (arguments
10662 `(#:tests?
10663 #f
10664 #:phases
10665 (modify-phases
10666 %standard-phases
10667 (delete 'configure)
10668 (delete 'build))))
10669 (inputs
10670 `(("node-regenerator-runtime"
10671 ,node-regenerator-runtime-0.13.7)))
10672 (home-page
10673 "https://babel.dev/docs/en/next/babel-runtime")
10674 (synopsis "babel's modular runtime helpers")
10675 (description "babel's modular runtime helpers")
10676 (license license:expat)))
10677
10678(define-public node-types-parse-json-4.0.0
10679 (package
10680 (name "node-types-parse-json")
10681 (version "4.0.0")
10682 (source
10683 (origin
10684 (method url-fetch)
10685 (uri "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz")
10686 (sha256
10687 (base32
10688 "0cbn421abbsbvwp0zm5ykdhnqwdimn02lfbznjg3s6cw8035k7yf"))))
10689 (build-system node-build-system)
10690 (arguments
10691 `(#:tests?
10692 #f
10693 #:phases
10694 (modify-phases
10695 %standard-phases
10696 (delete 'configure)
10697 (delete 'build))))
10698 (home-page #f)
10699 (synopsis
10700 "TypeScript definitions for parse-json")
10701 (description
10702 "TypeScript definitions for parse-json")
10703 (license license:expat)))
10704
10705(define-public node-callsites-3.1.0
10706 (package
10707 (name "node-callsites")
10708 (version "3.1.0")
10709 (source
10710 (origin
10711 (method url-fetch)
10712 (uri "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz")
10713 (sha256
10714 (base32
10715 "17f8wf2bxv2s4k36ld1x4y2rbkh9a8vsmbhwab470vmz6ayl40hp"))))
10716 (build-system node-build-system)
10717 (arguments
10718 `(#:tests?
10719 #f
10720 #:phases
10721 (modify-phases
10722 %standard-phases
10723 (delete 'configure)
10724 (delete 'build))))
10725 (home-page
10726 "https://github.com/sindresorhus/callsites#readme")
10727 (synopsis
10728 "Get callsites from the V8 stack trace API")
10729 (description
10730 "Get callsites from the V8 stack trace API")
10731 (license license:expat)))
10732
10733(define-public node-parent-module-1.0.1
10734 (package
10735 (name "node-parent-module")
10736 (version "1.0.1")
10737 (source
10738 (origin
10739 (method url-fetch)
10740 (uri "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz")
10741 (sha256
10742 (base32
10743 "01z4k8a3y21gqmpcwyf7gq9v8v4k2y5180f5g7qgswd4gq986zk0"))))
10744 (build-system node-build-system)
10745 (arguments
10746 `(#:tests?
10747 #f
10748 #:phases
10749 (modify-phases
10750 %standard-phases
10751 (delete 'configure)
10752 (delete 'build))))
10753 (inputs
10754 `(("node-callsites" ,node-callsites-3.1.0)))
10755 (home-page
10756 "https://github.com/sindresorhus/parent-module#readme")
10757 (synopsis "Get the path of the parent module")
10758 (description "Get the path of the parent module")
10759 (license license:expat)))
10760
10761(define-public node-resolve-from-4.0.0
10762 (package
10763 (name "node-resolve-from")
10764 (version "4.0.0")
10765 (source
10766 (origin
10767 (method url-fetch)
10768 (uri "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz")
10769 (sha256
10770 (base32
10771 "1p11030pz8qdm9x2d9q0qi2p329447i2bb7a5j7hbsxxqbs2hhi4"))))
10772 (build-system node-build-system)
10773 (arguments
10774 `(#:tests?
10775 #f
10776 #:phases
10777 (modify-phases
10778 %standard-phases
10779 (delete 'configure)
10780 (delete 'build))))
10781 (home-page
10782 "https://github.com/sindresorhus/resolve-from#readme")
10783 (synopsis
10784 "Resolve the path of a module like `require.resolve()` but from a given path")
10785 (description
10786 "Resolve the path of a module like `require.resolve()` but from a given path")
10787 (license license:expat)))
10788
10789(define-public node-import-fresh-3.3.0
10790 (package
10791 (name "node-import-fresh")
10792 (version "3.3.0")
10793 (source
10794 (origin
10795 (method url-fetch)
10796 (uri "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz")
10797 (sha256
10798 (base32
10799 "1chk0qimpnkrd2bn072ywnlhvy69cjyndgbij59m2b9jf4rxp945"))))
10800 (build-system node-build-system)
10801 (arguments
10802 `(#:tests?
10803 #f
10804 #:phases
10805 (modify-phases
10806 %standard-phases
10807 (delete 'configure)
10808 (delete 'build))))
10809 (inputs
10810 `(("node-resolve-from" ,node-resolve-from-4.0.0)
10811 ("node-parent-module" ,node-parent-module-1.0.1)))
10812 (home-page
10813 "https://github.com/sindresorhus/import-fresh#readme")
10814 (synopsis
10815 "Import a module while bypassing the cache")
10816 (description
10817 "Import a module while bypassing the cache")
10818 (license license:expat)))
10819
10820(define-public node-babel-helper-validator-identifier-7.12.11
10821 (package
10822 (name "node-babel-helper-validator-identifier")
10823 (version "7.12.11")
10824 (source
10825 (origin
10826 (method url-fetch)
10827 (uri "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz")
10828 (sha256
10829 (base32
10830 "02pl51v3wf8mkych0gwdfgsdh3icaxswhl89nbwzqw0x05saq2my"))))
10831 (build-system node-build-system)
10832 (arguments
10833 `(#:tests?
10834 #f
10835 #:phases
10836 (modify-phases
10837 %standard-phases
10838 (delete 'configure)
10839 (delete 'build))))
10840 (home-page #f)
10841 (synopsis "Validate identifier/keywords name")
10842 (description "Validate identifier/keywords name")
10843 (license license:expat)))
10844
10845(define-public node-js-tokens-4.0.0
10846 (package
10847 (name "node-js-tokens")
10848 (version "4.0.0")
10849 (source
10850 (origin
10851 (method url-fetch)
10852 (uri "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz")
10853 (sha256
10854 (base32
10855 "0lrw3qvcfmxrwwi7p7ng4r17yw32ki7jpnbj2a65ddddv2icg16q"))))
10856 (build-system node-build-system)
10857 (arguments
10858 `(#:tests?
10859 #f
10860 #:phases
10861 (modify-phases
10862 %standard-phases
10863 (delete 'configure)
10864 (delete 'build))))
10865 (home-page
10866 "https://github.com/lydell/js-tokens#readme")
10867 (synopsis "A regex that tokenizes JavaScript.")
10868 (description
10869 "A regex that tokenizes JavaScript.")
10870 (license license:expat)))
10871
10872(define-public node-babel-highlight-7.12.13
10873 (package
10874 (name "node-babel-highlight")
10875 (version "7.12.13")
10876 (source
10877 (origin
10878 (method url-fetch)
10879 (uri "https://registry.npmjs.org/@babel/highlight/-/highlight-7.12.13.tgz")
10880 (sha256
10881 (base32
10882 "0bc5x81fcyxjxjmbciwf0g8c45l1dr1h36sl497w63wr3qb3lz0b"))))
10883 (build-system node-build-system)
10884 (arguments
10885 `(#:tests?
10886 #f
10887 #:phases
10888 (modify-phases
10889 %standard-phases
10890 (delete 'configure)
10891 (delete 'build))))
10892 (inputs
10893 `(("node-js-tokens" ,node-js-tokens-4.0.0)
10894 ("node-chalk" ,node-chalk-2.4.2)
10895 ("node-babel-helper-validator-identifier"
10896 ,node-babel-helper-validator-identifier-7.12.11)))
10897 (home-page
10898 "https://babel.dev/docs/en/next/babel-highlight")
10899 (synopsis
10900 "Syntax highlight JavaScript strings for output in terminals.")
10901 (description
10902 "Syntax highlight JavaScript strings for output in terminals.")
10903 (license license:expat)))
10904
10905(define-public node-babel-code-frame-7.12.13
10906 (package
10907 (name "node-babel-code-frame")
10908 (version "7.12.13")
10909 (source
10910 (origin
10911 (method url-fetch)
10912 (uri "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz")
10913 (sha256
10914 (base32
10915 "0vr3q3d4i2iik1nf01yxskjpi2l9kaq759brjhbnc8x6r6hypymm"))))
10916 (build-system node-build-system)
10917 (arguments
10918 `(#:tests?
10919 #f
10920 #:phases
10921 (modify-phases
10922 %standard-phases
10923 (delete 'configure)
10924 (delete 'build))))
10925 (inputs
10926 `(("node-babel-highlight"
10927 ,node-babel-highlight-7.12.13)))
10928 (home-page
10929 "https://babel.dev/docs/en/next/babel-code-frame")
10930 (synopsis
10931 "Generate errors that contain a code frame that point to source locations.")
10932 (description
10933 "Generate errors that contain a code frame that point to source locations.")
10934 (license license:expat)))
10935
10936(define-public node-is-arrayish-0.2.1
10937 (package
10938 (name "node-is-arrayish")
10939 (version "0.2.1")
10940 (source
10941 (origin
10942 (method url-fetch)
10943 (uri "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz")
10944 (sha256
10945 (base32
10946 "13734x7w9924g9pch6ywgz741hs5ir612k3578k9fy247vcib3c4"))))
10947 (build-system node-build-system)
10948 (arguments
10949 `(#:tests?
10950 #f
10951 #:phases
10952 (modify-phases
10953 %standard-phases
10954 (delete 'configure)
10955 (delete 'build))))
10956 (home-page
10957 "https://github.com/qix-/node-is-arrayish#readme")
10958 (synopsis
10959 "Determines if an object can be used as an array")
10960 (description
10961 "Determines if an object can be used as an array")
10962 (license license:expat)))
10963
10964(define-public node-error-ex-1.3.2
10965 (package
10966 (name "node-error-ex")
10967 (version "1.3.2")
10968 (source
10969 (origin
10970 (method url-fetch)
10971 (uri "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz")
10972 (sha256
10973 (base32
10974 "12gyrmh6iqpx838bnb5iwcqm2447rnbxx1bvqn76l40fvr1aichs"))))
10975 (build-system node-build-system)
10976 (arguments
10977 `(#:tests?
10978 #f
10979 #:phases
10980 (modify-phases
10981 %standard-phases
10982 (delete 'configure)
10983 (delete 'build))))
10984 (inputs
10985 `(("node-is-arrayish" ,node-is-arrayish-0.2.1)))
10986 (home-page
10987 "https://github.com/qix-/node-error-ex#readme")
10988 (synopsis
10989 "Easy error subclassing and stack customization")
10990 (description
10991 "Easy error subclassing and stack customization")
10992 (license license:expat)))
10993
10994(define-public node-json-parse-even-better-errors-2.3.1
10995 (package
10996 (name "node-json-parse-even-better-errors")
10997 (version "2.3.1")
10998 (source
10999 (origin
11000 (method url-fetch)
11001 (uri "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz")
11002 (sha256
11003 (base32
11004 "0s95hppvdm62vq9ax92bl7dpgs28dp97j6xlrka1q25bc797g1ra"))))
11005 (build-system node-build-system)
11006 (arguments
11007 `(#:tests?
11008 #f
11009 #:phases
11010 (modify-phases
11011 %standard-phases
11012 (delete 'configure)
11013 (delete 'build))))
11014 (home-page
11015 "https://github.com/npm/json-parse-even-better-errors#readme")
11016 (synopsis
11017 "JSON.parse with context information on error")
11018 (description
11019 "JSON.parse with context information on error")
11020 (license license:expat)))
11021
11022(define-public node-lines-and-columns-1.1.6
11023 (package
11024 (name "node-lines-and-columns")
11025 (version "1.1.6")
11026 (source
11027 (origin
11028 (method url-fetch)
11029 (uri "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz")
11030 (sha256
11031 (base32
11032 "09p61rikwf78jz4m8n4vad0m4wpbgzaivrrbr74sxcg13v82a83m"))))
11033 (build-system node-build-system)
11034 (arguments
11035 `(#:tests?
11036 #f
11037 #:phases
11038 (modify-phases
11039 %standard-phases
11040 (delete 'configure)
11041 (delete 'build))))
11042 (home-page
11043 "https://github.com/eventualbuddha/lines-and-columns#readme")
11044 (synopsis
11045 "Maps lines and columns to character offsets and back.")
11046 (description
11047 "Maps lines and columns to character offsets and back.")
11048 (license license:expat)))
11049
11050(define-public node-parse-json-5.2.0
11051 (package
11052 (name "node-parse-json")
11053 (version "5.2.0")
11054 (source
11055 (origin
11056 (method url-fetch)
11057 (uri "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz")
11058 (sha256
11059 (base32
11060 "1388gc6zhgygqc68vkmqxafk6r9kxgdqqwbbm96k9hpxw223ddq6"))))
11061 (build-system node-build-system)
11062 (arguments
11063 `(#:tests?
11064 #f
11065 #:phases
11066 (modify-phases
11067 %standard-phases
11068 (delete 'configure)
11069 (delete 'build))))
11070 (inputs
11071 `(("node-lines-and-columns"
11072 ,node-lines-and-columns-1.1.6)
11073 ("node-json-parse-even-better-errors"
11074 ,node-json-parse-even-better-errors-2.3.1)
11075 ("node-error-ex" ,node-error-ex-1.3.2)
11076 ("node-babel-code-frame"
11077 ,node-babel-code-frame-7.12.13)))
11078 (home-page
11079 "https://github.com/sindresorhus/parse-json#readme")
11080 (synopsis "Parse JSON with more helpful errors")
11081 (description
11082 "Parse JSON with more helpful errors")
11083 (license license:expat)))
11084
11085(define-public node-path-type-4.0.0
11086 (package
11087 (name "node-path-type")
11088 (version "4.0.0")
11089 (source
11090 (origin
11091 (method url-fetch)
11092 (uri "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz")
11093 (sha256
11094 (base32
11095 "15wvcgwg053hr2h11ja5swvdz3vvxciqq5aad0ara9qmzgwfh9f0"))))
11096 (build-system node-build-system)
11097 (arguments
11098 `(#:tests?
11099 #f
11100 #:phases
11101 (modify-phases
11102 %standard-phases
11103 (delete 'configure)
11104 (delete 'build))))
11105 (home-page
11106 "https://github.com/sindresorhus/path-type#readme")
11107 (synopsis
11108 "Check if a path is a file, directory, or symlink")
11109 (description
11110 "Check if a path is a file, directory, or symlink")
11111 (license license:expat)))
11112
11113(define-public node-yaml-1.10.0
11114 (package
11115 (name "node-yaml")
11116 (version "1.10.0")
11117 (source
11118 (origin
11119 (method url-fetch)
11120 (uri "https://registry.npmjs.org/yaml/-/yaml-1.10.0.tgz")
11121 (sha256
11122 (base32
11123 "0s5j2nrscc2aqc03q814zhvdlgqzgyw88w7r47hvika3fm0q5vzg"))))
11124 (build-system node-build-system)
11125 (arguments
11126 `(#:tests?
11127 #f
11128 #:phases
11129 (modify-phases
11130 %standard-phases
11131 (delete 'configure)
11132 (delete 'build))))
11133 (home-page "https://eemeli.org/yaml/")
11134 (synopsis
11135 "JavaScript parser and stringifier for YAML")
11136 (description
11137 "JavaScript parser and stringifier for YAML")
11138 (license license:isc)))
11139
11140(define-public node-cosmiconfig-6.0.0
11141 (package
11142 (name "node-cosmiconfig")
11143 (version "6.0.0")
11144 (source
11145 (origin
11146 (method url-fetch)
11147 (uri "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz")
11148 (sha256
11149 (base32
11150 "1qr66zb1wgmx8rxksjcrbpvv8zmpxhrm1wbbykdxm20bmipkg9w1"))))
11151 (build-system node-build-system)
11152 (arguments
11153 `(#:tests?
11154 #f
11155 #:phases
11156 (modify-phases
11157 %standard-phases
11158 (delete 'configure)
11159 (delete 'build))))
11160 (inputs
11161 `(("node-yaml" ,node-yaml-1.10.0)
11162 ("node-path-type" ,node-path-type-4.0.0)
11163 ("node-parse-json" ,node-parse-json-5.2.0)
11164 ("node-import-fresh" ,node-import-fresh-3.3.0)
11165 ("node-types-parse-json"
11166 ,node-types-parse-json-4.0.0)))
11167 (home-page
11168 "https://github.com/davidtheclark/cosmiconfig#readme")
11169 (synopsis
11170 "Find and load configuration from a package.json property, rc file, or CommonJS module")
11171 (description
11172 "Find and load configuration from a package.json property, rc file, or CommonJS module")
11173 (license license:expat)))
11174
11175(define-public node-function-bind-1.1.1
11176 (package
11177 (name "node-function-bind")
11178 (version "1.1.1")
11179 (source
11180 (origin
11181 (method url-fetch)
11182 (uri "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz")
11183 (sha256
11184 (base32
11185 "10p0s9ypggwmazik4azdhywjnnayagnjxk10cjzsrhxlk1y2wm9d"))))
11186 (build-system node-build-system)
11187 (arguments
11188 `(#:tests?
11189 #f
11190 #:phases
11191 (modify-phases
11192 %standard-phases
11193 (delete 'configure)
11194 (delete 'build))))
11195 (home-page
11196 "https://github.com/Raynos/function-bind")
11197 (synopsis
11198 "Implementation of Function.prototype.bind")
11199 (description
11200 "Implementation of Function.prototype.bind")
11201 (license license:expat)))
11202
11203(define-public node-has-1.0.3
11204 (package
11205 (name "node-has")
11206 (version "1.0.3")
11207 (source
11208 (origin
11209 (method url-fetch)
11210 (uri "https://registry.npmjs.org/has/-/has-1.0.3.tgz")
11211 (sha256
11212 (base32
11213 "0wsmn2vcbqb23xpbzxipjd7xcdljid2gwnwl7vn5hkp0zkpgk363"))))
11214 (build-system node-build-system)
11215 (arguments
11216 `(#:tests?
11217 #f
11218 #:phases
11219 (modify-phases
11220 %standard-phases
11221 (delete 'configure)
11222 (delete 'build))))
11223 (inputs
11224 `(("node-function-bind" ,node-function-bind-1.1.1)))
11225 (home-page "https://github.com/tarruda/has")
11226 (synopsis
11227 "Object.prototype.hasOwnProperty.call shortcut")
11228 (description
11229 "Object.prototype.hasOwnProperty.call shortcut")
11230 (license license:expat)))
11231
11232(define-public node-is-core-module-2.2.0
11233 (package
11234 (name "node-is-core-module")
11235 (version "2.2.0")
11236 (source
11237 (origin
11238 (method url-fetch)
11239 (uri "https://registry.npmjs.org/is-core-module/-/is-core-module-2.2.0.tgz")
11240 (sha256
11241 (base32
11242 "1p938n56sd0i861pghd7iw4lfmb9b2hn6hfnmkg9a4fxcslskzc5"))))
11243 (build-system node-build-system)
11244 (arguments
11245 `(#:tests?
11246 #f
11247 #:phases
11248 (modify-phases
11249 %standard-phases
11250 (delete 'configure)
11251 (delete 'build))))
11252 (inputs `(("node-has" ,node-has-1.0.3)))
11253 (home-page
11254 "https://github.com/inspect-js/is-core-module")
11255 (synopsis
11256 "Is this specifier a node.js core module?")
11257 (description
11258 "Is this specifier a node.js core module?")
11259 (license license:expat)))
11260
11261(define-public node-path-parse-1.0.6
11262 (package
11263 (name "node-path-parse")
11264 (version "1.0.6")
11265 (source
11266 (origin
11267 (method url-fetch)
11268 (uri "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz")
11269 (sha256
11270 (base32
11271 "07x1wv7r4yky2hgcxl465a39a48hf5746840g9xkzggl3gb35ad4"))))
11272 (build-system node-build-system)
11273 (arguments
11274 `(#:tests?
11275 #f
11276 #:phases
11277 (modify-phases
11278 %standard-phases
11279 (delete 'configure)
11280 (delete 'build))))
11281 (home-page
11282 "https://github.com/jbgutierrez/path-parse#readme")
11283 (synopsis "Node.js path.parse() ponyfill")
11284 (description "Node.js path.parse() ponyfill")
11285 (license license:expat)))
11286
11287(define-public node-resolve-1.19.0
11288 (package
11289 (name "node-resolve")
11290 (version "1.19.0")
11291 (source
11292 (origin
11293 (method url-fetch)
11294 (uri "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz")
11295 (sha256
11296 (base32
11297 "0rpb2fl9gwc9nkgpkncklq7svxbbszk2w06ds6b50idvr4i9pjcc"))))
11298 (build-system node-build-system)
11299 (arguments
11300 `(#:tests?
11301 #f
11302 #:phases
11303 (modify-phases
11304 %standard-phases
11305 (delete 'configure)
11306 (delete 'build))))
11307 (inputs
11308 `(("node-path-parse" ,node-path-parse-1.0.6)
11309 ("node-is-core-module"
11310 ,node-is-core-module-2.2.0)))
11311 (home-page
11312 "https://github.com/browserify/resolve#readme")
11313 (synopsis
11314 "resolve like require.resolve() on behalf of files asynchronously and synchronously")
11315 (description
11316 "resolve like require.resolve() on behalf of files asynchronously and synchronously")
11317 (license license:expat)))
11318
11319(define-public node-babel-plugin-macros-2.8.0
11320 (package
11321 (name "node-babel-plugin-macros")
11322 (version "2.8.0")
11323 (source
11324 (origin
11325 (method url-fetch)
11326 (uri "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz")
11327 (sha256
11328 (base32
11329 "03ymharkmanc9xclccgh17v7m7i2366jcraqwqzb7gc5bvpmrrb2"))))
11330 (build-system node-build-system)
11331 (arguments
11332 `(#:tests?
11333 #f
11334 #:phases
11335 (modify-phases
11336 %standard-phases
11337 (delete 'configure)
11338 (delete 'build))))
11339 (inputs
11340 `(("node-resolve" ,node-resolve-1.19.0)
11341 ("node-cosmiconfig" ,node-cosmiconfig-6.0.0)
11342 ("node-babel-runtime"
11343 ,node-babel-runtime-7.12.13)))
11344 (home-page
11345 "https://github.com/kentcdodds/babel-plugin-macros#readme")
11346 (synopsis
11347 "Allows you to build compile-time libraries")
11348 (description
11349 "Allows you to build compile-time libraries")
11350 (license license:expat)))
11351
11352(define-public node-babel-plugin-syntax-jsx-6.18.0
11353 (package
11354 (name "node-babel-plugin-syntax-jsx")
11355 (version "6.18.0")
11356 (source
11357 (origin
11358 (method url-fetch)
11359 (uri "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz")
11360 (sha256
11361 (base32
11362 "0nlwixy37wj48m275k0w66cq8cpdnwxa5fnv4hav83nvamqz6a1g"))))
11363 (build-system node-build-system)
11364 (arguments
11365 `(#:tests?
11366 #f
11367 #:phases
11368 (modify-phases
11369 %standard-phases
11370 (delete 'configure)
11371 (delete 'build))))
11372 (home-page #f)
11373 (synopsis "Allow parsing of jsx")
11374 (description "Allow parsing of jsx")
11375 (license license:expat)))
11376
11377(define-public node-find-root-1.1.0
11378 (package
11379 (name "node-find-root")
11380 (version "1.1.0")
11381 (source
11382 (origin
11383 (method url-fetch)
11384 (uri "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz")
11385 (sha256
11386 (base32
11387 "1m0lf8903ffmlzxhy8nss7lpkyjyhf8samyy0himcpjxknpkrrq6"))))
11388 (build-system node-build-system)
11389 (arguments
11390 `(#:tests?
11391 #f
11392 #:phases
11393 (modify-phases
11394 %standard-phases
11395 (delete 'configure)
11396 (delete 'build))))
11397 (home-page
11398 "https://github.com/js-n/find-root#readme")
11399 (synopsis "find the closest package.json")
11400 (description "find the closest package.json")
11401 (license license:expat)))
11402
11403(define-public node-abbrev-1.1.1
11404 (package
11405 (name "node-abbrev")
11406 (version "1.1.1")
11407 (source
11408 (origin
11409 (method url-fetch)
11410 (uri "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz")
11411 (sha256
11412 (base32
11413 "0vdsff38rgn0qylyj6x42n13bnxfqxb9ql34bzs4z9grlli9vh8c"))))
11414 (build-system node-build-system)
11415 (arguments
11416 `(#:tests?
11417 #f
11418 #:phases
11419 (modify-phases
11420 %standard-phases
11421 (delete 'configure)
11422 (delete 'build))))
11423 (home-page
11424 "https://github.com/isaacs/abbrev-js#readme")
11425 (synopsis "Like ruby's abbrev module, but in js")
11426 (description
11427 "Like ruby's abbrev module, but in js")
11428 (license license:isc)))
11429
11430(define-public node-nopt-1.0.10
11431 (package
11432 (name "node-nopt")
11433 (version "1.0.10")
11434 (source
11435 (origin
11436 (method url-fetch)
11437 (uri "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz")
11438 (sha256
11439 (base32
11440 "09s96giczznyly80l061wl0nr35pwnnpadf8x9cw1gzv7fa64ra2"))))
11441 (build-system node-build-system)
11442 (arguments
11443 `(#:tests?
11444 #f
11445 #:phases
11446 (modify-phases
11447 %standard-phases
11448 (delete 'configure)
11449 (delete 'build))))
11450 (inputs `(("node-abbrev" ,node-abbrev-1.1.1)))
11451 (home-page #f)
11452 (synopsis
11453 "Option parsing for Node, supporting types, shorthands, etc. Used by npm.")
11454 (description
11455 "Option parsing for Node, supporting types, shorthands, etc. Used by npm.")
11456 (license (license:non-copyleft "unknown"))))
11457
11458(define-public node-touch-2.0.2
11459 (package
11460 (name "node-touch")
11461 (version "2.0.2")
11462 (source
11463 (origin
11464 (method url-fetch)
11465 (uri "https://registry.npmjs.org/touch/-/touch-2.0.2.tgz")
11466 (sha256
11467 (base32
11468 "1cf0q0cpgqchs6qhpnhzicvpsf1miamz3h8pfg7wxkav0h5qrsws"))))
11469 (build-system node-build-system)
11470 (arguments
11471 `(#:tests?
11472 #f
11473 #:phases
11474 (modify-phases
11475 %standard-phases
11476 (delete 'configure)
11477 (delete 'build))))
11478 (inputs `(("node-nopt" ,node-nopt-1.0.10)))
11479 (home-page
11480 "https://github.com/isaacs/node-touch#readme")
11481 (synopsis "like touch(1) in node")
11482 (description "like touch(1) in node")
11483 (license license:isc)))
11484
11485(define-public node-babel-plugin-emotion-9.2.11
11486 (package
11487 (name "node-babel-plugin-emotion")
11488 (version "9.2.11")
11489 (source
11490 (origin
11491 (method url-fetch)
11492 (uri "https://registry.npmjs.org/babel-plugin-emotion/-/babel-plugin-emotion-9.2.11.tgz")
11493 (sha256
11494 (base32
11495 "160acyl7sxcg285y63cwlji8fqa11bra8wbdlhxcqx42ikpcsj74"))))
11496 (build-system node-build-system)
11497 (arguments
11498 `(#:tests?
11499 #f
11500 #:phases
11501 (modify-phases
11502 %standard-phases
11503 (delete 'configure)
11504 (delete 'build))))
11505 (inputs
11506 `(("node-touch" ,node-touch-2.0.2)
11507 ("node-source-map" ,node-source-map-0.5.7)
11508 ("node-mkdirp" ,node-mkdirp-0.5.5)
11509 ("node-find-root" ,node-find-root-1.1.0)
11510 ("node-convert-source-map"
11511 ,node-convert-source-map-1.7.0)
11512 ("node-babel-plugin-syntax-jsx"
11513 ,node-babel-plugin-syntax-jsx-6.18.0)
11514 ("node-babel-plugin-macros"
11515 ,node-babel-plugin-macros-2.8.0)
11516 ("node-emotion-stylis"
11517 ,node-emotion-stylis-0.7.1)
11518 ("node-emotion-memoize"
11519 ,node-emotion-memoize-0.6.6)
11520 ("node-emotion-hash" ,node-emotion-hash-0.6.6)
11521 ("node-emotion-babel-utils"
11522 ,node-emotion-babel-utils-0.6.10)
11523 ("node-babel-helper-module-imports"
11524 ,node-babel-helper-module-imports-7.12.13)))
11525 (home-page "https://emotion.sh")
11526 (synopsis
11527 "A recommended babel preprocessing plugin for emotion, The Next Generation of CSS-in-JS.")
11528 (description
11529 "A recommended babel preprocessing plugin for emotion, The Next Generation of CSS-in-JS.")
11530 (license license:expat)))
11531
11532(define-public node-emotion-is-prop-valid-0.6.8
11533 (package
11534 (name "node-emotion-is-prop-valid")
11535 (version "0.6.8")
11536 (source
11537 (origin
11538 (method url-fetch)
11539 (uri "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.6.8.tgz")
11540 (sha256
11541 (base32
11542 "1yw9j5jg06wp15qd61d0crm7h8icj5h7bjhaig54f1jdhyxjw239"))))
11543 (build-system node-build-system)
11544 (arguments
11545 `(#:tests?
11546 #f
11547 #:phases
11548 (modify-phases
11549 %standard-phases
11550 (delete 'configure)
11551 (delete 'build))))
11552 (inputs
11553 `(("node-emotion-memoize"
11554 ,node-emotion-memoize-0.6.6)))
11555 (home-page #f)
11556 (synopsis
11557 "A function to check whether a prop is valid for HTML and SVG elements")
11558 (description
11559 "A function to check whether a prop is valid for HTML and SVG elements")
11560 (license license:expat)))
11561
11562(define-public node-create-emotion-styled-9.2.8
11563 (package
11564 (name "node-create-emotion-styled")
11565 (version "9.2.8")
11566 (source
11567 (origin
11568 (method url-fetch)
11569 (uri "https://registry.npmjs.org/create-emotion-styled/-/create-emotion-styled-9.2.8.tgz")
11570 (sha256
11571 (base32
11572 "1yjh96lc5alha7vd9aqxbn1jbqrgygbrgmlyy63jycnm2mx41s0k"))))
11573 (build-system node-build-system)
11574 (arguments
11575 `(#:tests?
11576 #f
11577 #:phases
11578 (modify-phases
11579 %standard-phases
11580 (delete 'configure)
11581 (delete 'build))))
11582 (inputs
11583 `(("node-emotion-is-prop-valid"
11584 ,node-emotion-is-prop-valid-0.6.8)))
11585 (home-page "https://emotion.sh")
11586 (synopsis "The styled API for emotion")
11587 (description "The styled API for emotion")
11588 (license license:expat)))
11589
11590(define-public node-react-emotion-9.2.12
11591 (package
11592 (name "node-react-emotion")
11593 (version "9.2.12")
11594 (source
11595 (origin
11596 (method url-fetch)
11597 (uri "https://registry.npmjs.org/react-emotion/-/react-emotion-9.2.12.tgz")
11598 (sha256
11599 (base32
11600 "0h8ap7ppsq9zmmwvv2gx52m00il52hf28bzgr0wx7qp1gml4pq6k"))))
11601 (build-system node-build-system)
11602 (arguments
11603 `(#:tests?
11604 #f
11605 #:phases
11606 (modify-phases
11607 %standard-phases
11608 (delete 'configure)
11609 (delete 'build))))
11610 (inputs
11611 `(("node-create-emotion-styled"
11612 ,node-create-emotion-styled-9.2.8)
11613 ("node-react" ,node-react-16.14.0)
11614 ("node-babel-plugin-emotion"
11615 ,node-babel-plugin-emotion-9.2.11)))
11616 (home-page "https://emotion.sh")
11617 (synopsis
11618 "The Next Generation of CSS-in-JS, for React projects.")
11619 (description 15597 (description
11620 "The Next Generation of CSS-in-JS, for React projects.") 15598 "Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js")
11621 (license license:expat))) 15599 (license license:expat)))
11622 15600
11623(define-public node-core-js-2.6.12 15601(define-public node-ieee754-1.2.1
11624 (package
11625 (name "node-core-js")
11626 (version "2.6.12")
11627 (source
11628 (origin
11629 (method url-fetch)
11630 (uri "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz")
11631 (sha256
11632 (base32
11633 "0idawjihpabdgpq1w460phfls3wrmgkl3idll6h68cy48k2z6bw7"))))
11634 (build-system node-build-system)
11635 (arguments
11636 `(#:tests?
11637 #f
11638 #:phases
11639 (modify-phases
11640 %standard-phases
11641 (delete 'configure)
11642 (delete 'build))))
11643 (home-page
11644 "https://github.com/zloirock/core-js#readme")
11645 (synopsis "Standard library")
11646 (description "Standard library")
11647 (license license:expat)))
11648
11649(define-public node-regenerator-runtime-0.11.1
11650 (package 15602 (package
11651 (name "node-regenerator-runtime") 15603 (name "node-ieee754")
11652 (version "0.11.1") 15604 (version "1.2.1")
11653 (source 15605 (source (origin
11654 (origin 15606 (method url-fetch)
11655 (method url-fetch) 15607 (uri "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz")
11656 (uri "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz") 15608 (sha256
11657 (sha256 15609 (base32
11658 (base32 15610 "1b4xiyr6fmgl05cjgc8fiyfk2jagf7xq2y5rknw9scvy76dlpwcf"))))
11659 "0frppih4qlrkvl1xgyd9zpgxs3fp0sarpcywwn7v1dmkhidrin6d"))))
11660 (build-system node-build-system) 15611 (build-system node-build-system)
11661 (arguments 15612 (arguments
11662 `(#:tests? 15613 '(#:tests? #f
11663 #f 15614 #:phases (modify-phases %standard-phases
11664 #:phases 15615 (delete 'build)
11665 (modify-phases 15616 (add-after 'patch-dependencies 'delete-dev-dependencies
11666 %standard-phases 15617 (lambda _
11667 (delete 'configure) 15618 (delete-dependencies '("airtap" "standard" "tape")))))))
11668 (delete 'build)))) 15619 (home-page "https://github.com/feross/ieee754#readme")
11669 (home-page #f)
11670 (synopsis 15620 (synopsis
11671 "Runtime for Regenerator-compiled generator and async functions.") 15621 "Read/write IEEE754 floating point numbers from/to a Buffer or array-like object")
11672 (description 15622 (description
11673 "Runtime for Regenerator-compiled generator and async functions.") 15623 "Read/write IEEE754 floating point numbers from/to a Buffer or array-like object")
11674 (license license:expat)))
11675
11676(define-public node-babel-runtime-6.26.0
11677 (package
11678 (name "node-babel-runtime")
11679 (version "6.26.0")
11680 (source
11681 (origin
11682 (method url-fetch)
11683 (uri "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz")
11684 (sha256
11685 (base32
11686 "0swl6f8bw62qydhkq6qq53c8afxai4cqpd4rg7270jvl8s4lilhl"))))
11687 (build-system node-build-system)
11688 (arguments
11689 `(#:tests?
11690 #f
11691 #:phases
11692 (modify-phases
11693 %standard-phases
11694 (delete 'configure)
11695 (delete 'build))))
11696 (inputs
11697 `(("node-regenerator-runtime"
11698 ,node-regenerator-runtime-0.11.1)
11699 ("node-core-js" ,node-core-js-2.6.12)))
11700 (home-page #f)
11701 (synopsis "babel selfContained runtime")
11702 (description "babel selfContained runtime")
11703 (license license:expat)))
11704
11705(define-public node-loose-envify-1.4.0
11706 (package
11707 (name "node-loose-envify")
11708 (version "1.4.0")
11709 (source
11710 (origin
11711 (method url-fetch)
11712 (uri "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz")
11713 (sha256
11714 (base32
11715 "1p5b3ca0b2jkxalyg7h9bss6aspa8plkh0ak1mrlz2jkjc58660j"))))
11716 (build-system node-build-system)
11717 (arguments
11718 `(#:tests?
11719 #f
11720 #:phases
11721 (modify-phases
11722 %standard-phases
11723 (delete 'configure)
11724 (delete 'build))))
11725 (inputs
11726 `(("node-js-tokens" ,node-js-tokens-4.0.0)))
11727 (home-page
11728 "https://github.com/zertosh/loose-envify")
11729 (synopsis
11730 "Fast (and loose) selective `process.env` replacer using js-tokens instead of an AST")
11731 (description
11732 "Fast (and loose) selective `process.env` replacer using js-tokens instead of an AST")
11733 (license license:expat)))
11734
11735(define-public node-object-assign-4.1.1
11736 (package
11737 (name "node-object-assign")
11738 (version "4.1.1")
11739 (source
11740 (origin
11741 (method url-fetch)
11742 (uri "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz")
11743 (sha256
11744 (base32
11745 "1v999sycxcp74j2pikdhyinm2d80p2bsy4nnrrnb59rv4rm74bbq"))))
11746 (build-system node-build-system)
11747 (arguments
11748 `(#:tests?
11749 #f
11750 #:phases
11751 (modify-phases
11752 %standard-phases
11753 (delete 'configure)
11754 (delete 'build))))
11755 (home-page
11756 "https://github.com/sindresorhus/object-assign#readme")
11757 (synopsis "ES2015 `Object.assign()` ponyfill")
11758 (description "ES2015 `Object.assign()` ponyfill")
11759 (license license:expat)))
11760
11761(define-public node-react-is-16.13.1
11762 (package
11763 (name "node-react-is")
11764 (version "16.13.1")
11765 (source
11766 (origin
11767 (method url-fetch)
11768 (uri "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz")
11769 (sha256
11770 (base32
11771 "13zfzbq3z5cmh7fzvbzwm2ivcqg2crv97ww7162kxhfxfgabbnqb"))))
11772 (build-system node-build-system)
11773 (arguments
11774 `(#:tests?
11775 #f
11776 #:phases
11777 (modify-phases
11778 %standard-phases
11779 (delete 'configure)
11780 (delete 'build))))
11781 (home-page "https://reactjs.org/")
11782 (synopsis "Brand checking of React Elements.")
11783 (description "Brand checking of React Elements.")
11784 (license license:expat)))
11785
11786(define-public node-base16-1.0.0
11787 (package
11788 (name "node-base16")
11789 (version "1.0.0")
11790 (source
11791 (origin
11792 (method url-fetch)
11793 (uri "https://registry.npmjs.org/base16/-/base16-1.0.0.tgz")
11794 (sha256
11795 (base32
11796 "07jqwqxly1ia87yki3kr0cv25jslkasmad55i3yxfkd9w16dxx59"))))
11797 (build-system node-build-system)
11798 (arguments
11799 `(#:tests?
11800 #f
11801 #:phases
11802 (modify-phases
11803 %standard-phases
11804 (delete 'configure)
11805 (delete 'build))))
11806 (home-page
11807 "https://github.com/gaearon/base16-js")
11808 (synopsis "Base16 themes as JS objects")
11809 (description "Base16 themes as JS objects")
11810 (license license:expat)))
11811
11812(define-public node-lodash-curry-4.1.1
11813 (package
11814 (name "node-lodash-curry")
11815 (version "4.1.1")
11816 (source
11817 (origin
11818 (method url-fetch)
11819 (uri "https://registry.npmjs.org/lodash.curry/-/lodash.curry-4.1.1.tgz")
11820 (sha256
11821 (base32
11822 "01yih63d4chjld2w5y32n15x6ql6qpglyj7cr7175acpyz6mkpz1"))))
11823 (build-system node-build-system)
11824 (arguments
11825 `(#:tests?
11826 #f
11827 #:phases
11828 (modify-phases
11829 %standard-phases
11830 (delete 'configure)
11831 (delete 'build))))
11832 (home-page "https://lodash.com/")
11833 (synopsis
11834 "The lodash method `_.curry` exported as a module.")
11835 (description
11836 "The lodash method `_.curry` exported as a module.")
11837 (license license:expat)))
11838
11839(define-public node-lodash-flow-3.5.0
11840 (package
11841 (name "node-lodash-flow")
11842 (version "3.5.0")
11843 (source
11844 (origin
11845 (method url-fetch)
11846 (uri "https://registry.npmjs.org/lodash.flow/-/lodash.flow-3.5.0.tgz")
11847 (sha256
11848 (base32
11849 "1p1h7s6zbs2ca7vh7xwa21qlcd5vz65hpbrhr47m39zv6jn9gqir"))))
11850 (build-system node-build-system)
11851 (arguments
11852 `(#:tests?
11853 #f
11854 #:phases
11855 (modify-phases
11856 %standard-phases
11857 (delete 'configure)
11858 (delete 'build))))
11859 (home-page "https://lodash.com/")
11860 (synopsis
11861 "The lodash method `_.flow` exported as a module.")
11862 (description
11863 "The lodash method `_.flow` exported as a module.")
11864 (license license:expat)))
11865
11866(define-public node-pure-color-1.3.0
11867 (package
11868 (name "node-pure-color")
11869 (version "1.3.0")
11870 (source
11871 (origin
11872 (method url-fetch)
11873 (uri "https://registry.npmjs.org/pure-color/-/pure-color-1.3.0.tgz")
11874 (sha256
11875 (base32
11876 "1z6bacqcxn1pgxzlw0sw3abpixzi05dw3xpvj0fpjh0rqq4hgdqm"))))
11877 (build-system node-build-system)
11878 (arguments
11879 `(#:tests?
11880 #f
11881 #:phases
11882 (modify-phases
11883 %standard-phases
11884 (delete 'configure)
11885 (delete 'build))))
11886 (home-page
11887 "https://github.com/WickyNilliams/pure-color#readme")
11888 (synopsis
11889 "Pure functions for color conversion and parsing")
11890 (description
11891 "Pure functions for color conversion and parsing")
11892 (license license:expat)))
11893
11894(define-public node-react-base16-styling-0.5.3
11895 (package
11896 (name "node-react-base16-styling")
11897 (version "0.5.3")
11898 (source
11899 (origin
11900 (method url-fetch)
11901 (uri "https://registry.npmjs.org/react-base16-styling/-/react-base16-styling-0.5.3.tgz")
11902 (sha256
11903 (base32
11904 "1w1xiymxqaa7ybyb4il9dg9nqv4bpaal3wj8ydq830501yf1n6nc"))))
11905 (build-system node-build-system)
11906 (arguments
11907 `(#:tests?
11908 #f
11909 #:phases
11910 (modify-phases
11911 %standard-phases
11912 (delete 'configure)
11913 (delete 'build))))
11914 (inputs
11915 `(("node-pure-color" ,node-pure-color-1.3.0)
11916 ("node-lodash-flow" ,node-lodash-flow-3.5.0)
11917 ("node-lodash-curry" ,node-lodash-curry-4.1.1)
11918 ("node-base16" ,node-base16-1.0.0)))
11919 (home-page
11920 "https://github.com/alexkuz/react-base16-styling#readme")
11921 (synopsis
11922 "React styling with base16 color scheme support")
11923 (description
11924 "React styling with base16 color scheme support")
11925 (license license:expat)))
11926
11927(define-public node-react-json-tree-0.11.2
11928 (package
11929 (name "node-react-json-tree")
11930 (version "0.11.2")
11931 (source
11932 (origin
11933 (method url-fetch)
11934 (uri "https://registry.npmjs.org/react-json-tree/-/react-json-tree-0.11.2.tgz")
11935 (sha256
11936 (base32
11937 "0bnpdp1cj1gbxp0z664jb2j6api6h6g8g4y8bkvrwvnnyynf7hb1"))))
11938 (build-system node-build-system)
11939 (arguments
11940 `(#:tests?
11941 #f
11942 #:phases
11943 (modify-phases
11944 %standard-phases
11945 (delete 'configure)
11946 (delete 'build))))
11947 (inputs
11948 `(("node-react-base16-styling"
11949 ,node-react-base16-styling-0.5.3)
11950 ("node-prop-types" ,node-prop-types-15.7.2)
11951 ("node-babel-runtime" ,node-babel-runtime-6.26.0)))
11952 (home-page
11953 "https://github.com/reduxjs/redux-devtools")
11954 (synopsis
11955 "React JSON Viewer Component, Extracted from redux-devtools")
11956 (description
11957 "React JSON Viewer Component, Extracted from redux-devtools")
11958 (license license:expat)))
11959
11960(define-public node-create-react-context-0.1.6
11961 (package
11962 (name "node-create-react-context")
11963 (version "0.1.6")
11964 (source
11965 (origin
11966 (method url-fetch)
11967 (uri "https://registry.npmjs.org/create-react-context/-/create-react-context-0.1.6.tgz")
11968 (sha256
11969 (base32
11970 "05rgnfqb99xkwh4ckk0lilxdhdl2yvhphhkz0f9j31zhaq9jdmd9"))))
11971 (build-system node-build-system)
11972 (arguments
11973 `(#:tests?
11974 #f
11975 #:phases
11976 (modify-phases
11977 %standard-phases
11978 (delete 'configure)
11979 (delete 'build))))
11980 (home-page
11981 "https://github.com/thejameskyle/create-react-context#readme")
11982 (synopsis
11983 "Polyfill for the proposed React context API")
11984 (description
11985 "Polyfill for the proposed React context API")
11986 (license license:expat)))
11987
11988(define-public node-unstated-2.1.1
11989 (package
11990 (name "node-unstated")
11991 (version "2.1.1")
11992 (source
11993 (origin
11994 (method url-fetch)
11995 (uri "https://registry.npmjs.org/unstated/-/unstated-2.1.1.tgz")
11996 (sha256
11997 (base32
11998 "1yaphbvwdgzvxp5vpsnk59lvfjznd0m8q9hbvsshg9wmpqpjybvy"))))
11999 (build-system node-build-system)
12000 (arguments
12001 `(#:tests?
12002 #f
12003 #:phases
12004 (modify-phases
12005 %standard-phases
12006 (delete 'configure)
12007 (delete 'build))))
12008 (inputs
12009 `(("node-create-react-context"
12010 ,node-create-react-context-0.1.6)))
12011 (home-page
12012 "https://github.com/thejameskyle/unstated#readme")
12013 (synopsis
12014 "State so simple, it goes without saying")
12015 (description
12016 "State so simple, it goes without saying")
12017 (license license:expat)))
12018
12019(define-public node-prosemirror-dev-tools-2.1.1
12020 (package
12021 (name "node-prosemirror-dev-tools")
12022 (version "2.1.1")
12023 (source
12024 (origin
12025 (method url-fetch)
12026 (uri "https://registry.npmjs.org/prosemirror-dev-tools/-/prosemirror-dev-tools-2.1.1.tgz")
12027 (sha256
12028 (base32
12029 "0m1cqzcwrmmgr01fpkkx17vz19wdm40w81dhbwl7nr5480c43rpk"))))
12030 (build-system node-build-system)
12031 (arguments
12032 `(#:tests?
12033 #f
12034 #:phases
12035 (modify-phases
12036 %standard-phases
12037 (delete 'configure)
12038 (delete 'build))))
12039 (inputs
12040 `(("node-unstated" ,node-unstated-2.1.1)
12041 ("node-react-json-tree"
12042 ,node-react-json-tree-0.11.2)
12043 ("node-react-emotion" ,node-react-emotion-9.2.12)
12044 ("node-react-dock" ,node-react-dock-0.2.4)
12045 ("node-prosemirror-state"
12046 ,node-prosemirror-state-1.3.4)
12047 ("node-prosemirror-model"
12048 ,node-prosemirror-model-1.13.3)
12049 ("node-prop-types" ,node-prop-types-15.7.2)
12050 ("node-jsondiffpatch" ,node-jsondiffpatch-0.3.11)
12051 ("node-ie-array-find-polyfill"
12052 ,node-ie-array-find-polyfill-1.1.0)
12053 ("node-html" ,node-html-1.0.0)
12054 ("node-es6-object-assign"
12055 ,node-es6-object-assign-1.1.0)
12056 ("node-emotion" ,node-emotion-9.2.12)))
12057 (home-page
12058 "https://github.com/d4rkr00t/prosemirror-dev-tools#readme")
12059 (synopsis "Dev Tools for ProseMirror")
12060 (description "Dev Tools for ProseMirror")
12061 (license license:expat)))
12062
12063(define-public node-react-17.0.1
12064 (package
12065 (name "node-react")
12066 (version "17.0.1")
12067 (source
12068 (origin
12069 (method url-fetch)
12070 (uri "https://registry.npmjs.org/react/-/react-17.0.1.tgz")
12071 (sha256
12072 (base32
12073 "05amw2p28mayzfp7h5gakn3i4iw2kqv44pxm8397l7fv98nj5ach"))))
12074 (build-system node-build-system)
12075 (arguments
12076 `(#:tests?
12077 #f
12078 #:phases
12079 (modify-phases
12080 %standard-phases
12081 (delete 'configure)
12082 (delete 'build))))
12083 (inputs
12084 `(("node-object-assign" ,node-object-assign-4.1.1)
12085 ("node-loose-envify" ,node-loose-envify-1.4.0)))
12086 (home-page "https://reactjs.org/")
12087 (synopsis
12088 "React is a JavaScript library for building user interfaces.")
12089 (description
12090 "React is a JavaScript library for building user interfaces.")
12091 (license license:expat)))
12092
12093(define-public node-react-16.14.0
12094 (package
12095 (name "node-react")
12096 (version "16.14.0")
12097 (source
12098 (origin
12099 (method url-fetch)
12100 (uri "https://registry.npmjs.org/react/-/react-16.14.0.tgz")
12101 (sha256
12102 (base32
12103 "1qx52jqad4jxavq83x08gypw2jg7cidwm2zpc5gxkjshbqvdqmzy"))))
12104 (build-system node-build-system)
12105 (arguments
12106 `(#:tests?
12107 #f
12108 #:phases
12109 (modify-phases
12110 %standard-phases
12111 (delete 'configure)
12112 (delete 'build))))
12113 (inputs
12114 `(("node-prop-types" ,node-prop-types-15.7.2)
12115 ("node-object-assign" ,node-object-assign-4.1.1)
12116 ("node-loose-envify" ,node-loose-envify-1.4.0)))
12117 (home-page "https://reactjs.org/")
12118 (synopsis
12119 "React is a JavaScript library for building user interfaces.")
12120 (description
12121 "React is a JavaScript library for building user interfaces.")
12122 (license license:expat)))
12123
12124(define-public node-uglify-js-3.12.7
12125 (package
12126 (name "node-uglify-js")
12127 (version "3.12.7")
12128 (source
12129 (origin
12130 (method url-fetch)
12131 (uri "https://registry.npmjs.org/uglify-js/-/uglify-js-3.12.7.tgz")
12132 (sha256
12133 (base32
12134 "1gik2hwzw4p1xd1d0iqvslmgk0bzyrjkplyf351n3vfbi9ka56zh"))))
12135 (build-system node-build-system)
12136 (arguments
12137 `(#:tests?
12138 #f
12139 #:phases
12140 (modify-phases
12141 %standard-phases
12142 (delete 'configure)
12143 (delete 'build))))
12144 (home-page
12145 "https://github.com/mishoo/UglifyJS#readme")
12146 (synopsis
12147 "JavaScript parser, mangler/compressor and beautifier toolkit")
12148 (description
12149 "JavaScript parser, mangler/compressor and beautifier toolkit")
12150 (license (license:non-copyleft "unknown"))))
12151
12152(define-public node-commander-2.14.1
12153 (package
12154 (name "node-commander")
12155 (version "2.14.1")
12156 (source
12157 (origin
12158 (method url-fetch)
12159 (uri "https://registry.npmjs.org/commander/-/commander-2.14.1.tgz")
12160 (sha256
12161 (base32
12162 "1ymikdab62hlh3dcydm4dyry18k306bpplzjp74lxhzipqzz6l98"))))
12163 (build-system node-build-system)
12164 (arguments
12165 `(#:tests?
12166 #f
12167 #:phases
12168 (modify-phases
12169 %standard-phases
12170 (delete 'configure)
12171 (delete 'build))))
12172 (home-page
12173 "https://github.com/tj/commander.js#readme")
12174 (synopsis
12175 "the complete solution for node.js command-line programs")
12176 (description
12177 "the complete solution for node.js command-line programs")
12178 (license license:expat)))
12179
12180(define-public node-uglify-es-3.3.10
12181 (package
12182 (name "node-uglify-es")
12183 (version "3.3.10")
12184 (source
12185 (origin
12186 (method url-fetch)
12187 (uri "https://registry.npmjs.org/uglify-es/-/uglify-es-3.3.10.tgz")
12188 (sha256
12189 (base32
12190 "09isws2iiqzr570gxskdj4s1l987gcl0jivi02f596i7qr4k81rd"))))
12191 (build-system node-build-system)
12192 (arguments
12193 `(#:tests?
12194 #f
12195 #:phases
12196 (modify-phases
12197 %standard-phases
12198 (delete 'configure)
12199 (delete 'build))))
12200 (inputs
12201 `(("node-source-map" ,node-source-map-0.6.1)
12202 ("node-commander" ,node-commander-2.14.1)))
12203 (home-page
12204 "https://github.com/mishoo/UglifyJS2/tree/harmony")
12205 (synopsis
12206 "JavaScript parser, mangler/compressor and beautifier toolkit for ES6+")
12207 (description
12208 "JavaScript parser, mangler/compressor and beautifier toolkit for ES6+")
12209 (license (license:non-copyleft "unknown"))))
12210
12211(define-public node-commander-2.20.3
12212 (package
12213 (name "node-commander")
12214 (version "2.20.3")
12215 (source
12216 (origin
12217 (method url-fetch)
12218 (uri "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz")
12219 (sha256
12220 (base32
12221 "0m9bcmcwgn2zj6hdqydnyx6d1c5y014ysazyqd6qva8pw0yr00iw"))))
12222 (build-system node-build-system)
12223 (arguments
12224 `(#:tests?
12225 #f
12226 #:phases
12227 (modify-phases
12228 %standard-phases
12229 (delete 'configure)
12230 (delete 'build))))
12231 (home-page
12232 "https://github.com/tj/commander.js#readme")
12233 (synopsis
12234 "the complete solution for node.js command-line programs")
12235 (description
12236 "the complete solution for node.js command-line programs")
12237 (license license:expat)))
12238
12239(define-public node-source-map-support-0.5.19
12240 (package
12241 (name "node-source-map-support")
12242 (version "0.5.19")
12243 (source
12244 (origin
12245 (method url-fetch)
12246 (uri "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz")
12247 (sha256
12248 (base32
12249 "116k5r9cfgjs70j7xwf49n5gzh173sjmcmpam1823szma0fac54l"))))
12250 (build-system node-build-system)
12251 (arguments
12252 `(#:tests?
12253 #f
12254 #:phases
12255 (modify-phases
12256 %standard-phases
12257 (delete 'configure)
12258 (delete 'build))))
12259 (inputs
12260 `(("node-source-map" ,node-source-map-0.6.1)
12261 ("node-buffer-from" ,node-buffer-from-1.1.1)))
12262 (home-page
12263 "https://github.com/evanw/node-source-map-support#readme")
12264 (synopsis
12265 "Fixes stack traces for files with source maps")
12266 (description
12267 "Fixes stack traces for files with source maps")
12268 (license license:expat)))
12269
12270(define-public node-terser-4.8.0
12271 (package
12272 (name "node-terser")
12273 (version "4.8.0")
12274 (source
12275 (origin
12276 (method url-fetch)
12277 (uri "https://registry.npmjs.org/terser/-/terser-4.8.0.tgz")
12278 (sha256
12279 (base32
12280 "0wf5labb7fv684ajg2mf2rbj2h1va7f7cz0ks91gll6i7nc0fbgs"))))
12281 (build-system node-build-system)
12282 (arguments
12283 `(#:tests?
12284 #f
12285 #:phases
12286 (modify-phases
12287 %standard-phases
12288 (delete 'configure)
12289 (delete 'build))))
12290 (inputs
12291 `(("node-source-map-support"
12292 ,node-source-map-support-0.5.19)
12293 ("node-source-map" ,node-source-map-0.6.1)
12294 ("node-commander" ,node-commander-2.20.3)))
12295 (home-page "https://terser.org")
12296 (synopsis
12297 "JavaScript parser, mangler/compressor and beautifier toolkit for ES6+")
12298 (description
12299 "JavaScript parser, mangler/compressor and beautifier toolkit for ES6+")
12300 (license (license:non-copyleft "unknown"))))
12301
12302(define-public node-biblatex-csl-converter-1.9.5
12303 (package
12304 (name "node-biblatex-csl-converter")
12305 (version "1.9.5")
12306 (source
12307 (origin
12308 (method url-fetch)
12309 (uri "https://registry.npmjs.org/biblatex-csl-converter/-/biblatex-csl-converter-1.9.5.tgz")
12310 (sha256
12311 (base32
12312 "1i2kwvpylc4l3azw4cjjv9nd92bvji9s5zj37mb5n11dq8x9zcxk"))))
12313 (build-system node-build-system)
12314 (arguments
12315 `(#:tests?
12316 #f
12317 #:phases
12318 (modify-phases
12319 %standard-phases
12320 (delete 'configure)
12321 (delete 'build))))
12322 (home-page
12323 "https://github.com/fiduswriter/biblatex-csl-converter#readme")
12324 (synopsis
12325 "a set of converters: biblatex => json, json => biblatex, json => CSL")
12326 (description
12327 "a set of converters: biblatex => json, json => biblatex, json => CSL")
12328 (license license:lgpl3)))
12329
12330
12331(define-public node-delegate-3.2.0
12332 (package
12333 (name "node-delegate")
12334 (version "3.2.0")
12335 (source
12336 (origin
12337 (method url-fetch)
12338 (uri "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz")
12339 (sha256
12340 (base32
12341 "1ys85812sy02lmz6r4gc5987hr5bnsiagiil8ncggaiaxk76j0vy"))))
12342 (build-system node-build-system)
12343 (arguments
12344 `(#:tests?
12345 #f
12346 #:phases
12347 (modify-phases
12348 %standard-phases
12349 (delete 'configure)
12350 (delete 'build))))
12351 (home-page
12352 "https://github.com/zenorocha/delegate#readme")
12353 (synopsis "Lightweight event delegation")
12354 (description "Lightweight event delegation")
12355 (license license:expat)))
12356
12357(define-public node-good-listener-1.2.2
12358 (package
12359 (name "node-good-listener")
12360 (version "1.2.2")
12361 (source
12362 (origin
12363 (method url-fetch)
12364 (uri "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz")
12365 (sha256
12366 (base32
12367 "0xbzaxs3xvmh1sf3qbvd0slp82inlb0gz5fx60vkj94gn31l8s4x"))))
12368 (build-system node-build-system)
12369 (arguments
12370 `(#:tests?
12371 #f
12372 #:phases
12373 (modify-phases
12374 %standard-phases
12375 (delete 'configure)
12376 (delete 'build))))
12377 (inputs
12378 `(("node-delegate" ,node-delegate-3.2.0)))
12379 (home-page
12380 "https://github.com/zenorocha/good-listener#readme")
12381 (synopsis
12382 "A more versatile way of adding & removing event listeners")
12383 (description
12384 "A more versatile way of adding & removing event listeners")
12385 (license license:expat)))
12386
12387(define-public node-select-1.1.2
12388 (package
12389 (name "node-select")
12390 (version "1.1.2")
12391 (source
12392 (origin
12393 (method url-fetch)
12394 (uri "https://registry.npmjs.org/select/-/select-1.1.2.tgz")
12395 (sha256
12396 (base32
12397 "159mk5g9gjv7qvxwk4yp3h0y3s2wawvvh0ms66fr2z79zdzgi6v6"))))
12398 (build-system node-build-system)
12399 (arguments
12400 `(#:tests?
12401 #f
12402 #:phases
12403 (modify-phases
12404 %standard-phases
12405 (delete 'configure)
12406 (delete 'build))))
12407 (home-page
12408 "https://github.com/zenorocha/select#readme")
12409 (synopsis
12410 "Programmatically select the text of a HTML element")
12411 (description
12412 "Programmatically select the text of a HTML element")
12413 (license license:expat)))
12414
12415(define-public node-tiny-emitter-2.1.0
12416 (package
12417 (name "node-tiny-emitter")
12418 (version "2.1.0")
12419 (source
12420 (origin
12421 (method url-fetch)
12422 (uri "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz")
12423 (sha256
12424 (base32
12425 "0fki07f4gfncqj8h3zv5rz0cnza0yc0bk6v7bkc6ih0y1jiix32k"))))
12426 (build-system node-build-system)
12427 (arguments
12428 `(#:tests?
12429 #f
12430 #:phases
12431 (modify-phases
12432 %standard-phases
12433 (delete 'configure)
12434 (delete 'build))))
12435 (home-page
12436 "https://github.com/scottcorgan/tiny-emitter#readme")
12437 (synopsis
12438 "A tiny (less than 1k) event emitter library")
12439 (description
12440 "A tiny (less than 1k) event emitter library")
12441 (license license:expat)))
12442
12443(define-public node-clipboard-2.0.6
12444 (package
12445 (name "node-clipboard")
12446 (version "2.0.6")
12447 (source
12448 (origin
12449 (method url-fetch)
12450 (uri "https://registry.npmjs.org/clipboard/-/clipboard-2.0.6.tgz")
12451 (sha256
12452 (base32
12453 "069i7xi31an2x5d6afnm24h9smp1i64wb23hxby1ffv4121m3d0j"))))
12454 (build-system node-build-system)
12455 (arguments
12456 `(#:tests?
12457 #f
12458 #:phases
12459 (modify-phases
12460 %standard-phases
12461 (delete 'configure)
12462 (delete 'build))))
12463 (inputs
12464 `(("node-tiny-emitter" ,node-tiny-emitter-2.1.0)
12465 ("node-select" ,node-select-1.1.2)
12466 ("node-good-listener" ,node-good-listener-1.2.2)))
12467 (home-page
12468 "https://github.com/zenorocha/clipboard.js#readme")
12469 (synopsis
12470 "Modern copy to clipboard. No Flash. Just 2kb")
12471 (description
12472 "Modern copy to clipboard. No Flash. Just 2kb")
12473 (license license:expat)))
12474
12475(define-public node-fuse-js-6.4.6
12476 (package
12477 (name "node-fuse-js")
12478 (version "6.4.6")
12479 (source
12480 (origin
12481 (method url-fetch)
12482 (uri "https://registry.npmjs.org/fuse.js/-/fuse.js-6.4.6.tgz")
12483 (sha256
12484 (base32
12485 "07c5waxc08m017xh87rw5jvsgmsv2qpw99g8z3ffk6bylivjd7c6"))))
12486 (build-system node-build-system)
12487 (arguments
12488 `(#:tests?
12489 #f
12490 #:phases
12491 (modify-phases
12492 %standard-phases
12493 (delete 'configure)
12494 (delete 'build))))
12495 (home-page "http://fusejs.io")
12496 (synopsis "Lightweight fuzzy-search")
12497 (description "Lightweight fuzzy-search")
12498 (license license:asl2.0)))
12499
12500(define-public node-sprintf-js-1.0.3
12501 (package
12502 (name "node-sprintf-js")
12503 (version "1.0.3")
12504 (source
12505 (origin
12506 (method url-fetch)
12507 (uri "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz")
12508 (sha256
12509 (base32
12510 "10qsmbfw9hv4hahsvq79py6v0dddhckwynji2vsr1p18qfy2dyrs"))))
12511 (build-system node-build-system)
12512 (arguments
12513 `(#:tests?
12514 #f
12515 #:phases
12516 (modify-phases
12517 %standard-phases
12518 (delete 'configure)
12519 (delete 'build))))
12520 (home-page
12521 "https://github.com/alexei/sprintf.js#readme")
12522 (synopsis "JavaScript sprintf implementation")
12523 (description "JavaScript sprintf implementation")
12524 (license license:bsd-3))) 15624 (license license:bsd-3)))
12525 15625
12526(define-public node-argparse-1.0.10 15626(define-public node-fuse-box-3.7.1
12527 (package
12528 (name "node-argparse")
12529 (version "1.0.10")
12530 (source
12531 (origin
12532 (method url-fetch)
12533 (uri "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz")
12534 (sha256
12535 (base32
12536 "03dc2n1i08nwyyl1l8pq0a5fckcw9rpdqlw3zh8pw6w1syf19akz"))))
12537 (build-system node-build-system)
12538 (arguments
12539 `(#:tests?
12540 #f
12541 #:phases
12542 (modify-phases
12543 %standard-phases
12544 (delete 'configure)
12545 (delete 'build))))
12546 (inputs
12547 `(("node-sprintf-js" ,node-sprintf-js-1.0.3)))
12548 (home-page
12549 "https://github.com/nodeca/argparse#readme")
12550 (synopsis
12551 "Very powerful CLI arguments parser. Native port of argparse - python's options parsing library")
12552 (description
12553 "Very powerful CLI arguments parser. Native port of argparse - python's options parsing library")
12554 (license license:expat)))
12555
12556(define-public node-js-yaml-3.14.1
12557 (package
12558 (name "node-js-yaml")
12559 (version "3.14.1")
12560 (source
12561 (origin
12562 (method url-fetch)
12563 (uri "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz")
12564 (sha256
12565 (base32
12566 "1jmy5pbvh80pc772pa4jhqnl6ax4p3w7npnqqk8z1md575cmynlk"))))
12567 (build-system node-build-system)
12568 (arguments
12569 `(#:tests?
12570 #f
12571 #:phases
12572 (modify-phases
12573 %standard-phases
12574 (delete 'configure)
12575 (delete 'build))))
12576 (inputs
12577 `(("node-esprima" ,node-esprima-4.0.1)
12578 ("node-argparse" ,node-argparse-1.0.10)))
12579 (home-page "https://github.com/nodeca/js-yaml")
12580 (synopsis "YAML 1.2 parser and serializer")
12581 (description "YAML 1.2 parser and serializer")
12582 (license license:expat)))
12583
12584(define-public node-lodash-debounce-4.0.8
12585 (package
12586 (name "node-lodash-debounce")
12587 (version "4.0.8")
12588 (source
12589 (origin
12590 (method url-fetch)
12591 (uri "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz")
12592 (sha256
12593 (base32
12594 "180bk3h6nm2kvnn4f6phvcr0qyg5kj30ixrgflng352ndx63h655"))))
12595 (build-system node-build-system)
12596 (arguments
12597 `(#:tests?
12598 #f
12599 #:phases
12600 (modify-phases
12601 %standard-phases
12602 (delete 'configure)
12603 (delete 'build))))
12604 (home-page "https://lodash.com/")
12605 (synopsis
12606 "The lodash method `_.debounce` exported as a module.")
12607 (description
12608 "The lodash method `_.debounce` exported as a module.")
12609 (license license:expat)))
12610
12611(define-public node-lodash-uniqby-4.7.0
12612 (package
12613 (name "node-lodash-uniqby")
12614 (version "4.7.0")
12615 (source
12616 (origin
12617 (method url-fetch)
12618 (uri "https://registry.npmjs.org/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz")
12619 (sha256
12620 (base32
12621 "1zwa038vr31hfyalgv49xrszhwdkfjq0rqi5fx5cpsjxry5pspa8"))))
12622 (build-system node-build-system)
12623 (arguments
12624 `(#:tests?
12625 #f
12626 #:phases
12627 (modify-phases
12628 %standard-phases
12629 (delete 'configure)
12630 (delete 'build))))
12631 (home-page "https://lodash.com/")
12632 (synopsis
12633 "The lodash method `_.uniqBy` exported as a module.")
12634 (description
12635 "The lodash method `_.uniqBy` exported as a module.")
12636 (license license:expat)))
12637
12638(define-public node-prosemirror-changeset-2.1.2
12639 (package
12640 (name "node-prosemirror-changeset")
12641 (version "2.1.2")
12642 (source
12643 (origin
12644 (method url-fetch)
12645 (uri "https://registry.npmjs.org/prosemirror-changeset/-/prosemirror-changeset-2.1.2.tgz")
12646 (sha256
12647 (base32
12648 "1lg04nxg3yawz24c2q9iijgkgyd3rf1dkxqak70b3ma9srlr8dvj"))))
12649 (build-system node-build-system)
12650 (arguments
12651 `(#:tests?
12652 #f
12653 #:phases
12654 (modify-phases
12655 %standard-phases
12656 (delete 'configure)
12657 (delete 'build))))
12658 (inputs
12659 `(("node-prosemirror-transform"
12660 ,node-prosemirror-transform-1.2.11)))
12661 (home-page
12662 "https://github.com/prosemirror/prosemirror-changeset#readme")
12663 (synopsis
12664 "Distills a series of editing steps into deleted and added ranges")
12665 (description
12666 "Distills a series of editing steps into deleted and added ranges")
12667 (license license:expat)))
12668
12669(define-public node-prosemirror-commands-1.1.6
12670 (package
12671 (name "node-prosemirror-commands")
12672 (version "1.1.6")
12673 (source
12674 (origin
12675 (method url-fetch)
12676 (uri "https://registry.npmjs.org/prosemirror-commands/-/prosemirror-commands-1.1.6.tgz")
12677 (sha256
12678 (base32
12679 "04i58ddl54700bbjizszy98nk8cw1yk02nshv2k1651m05h2jv53"))))
12680 (build-system node-build-system)
12681 (arguments
12682 `(#:tests?
12683 #f
12684 #:phases
12685 (modify-phases
12686 %standard-phases
12687 (delete 'configure)
12688 (delete 'build))))
12689 (inputs
12690 `(("node-prosemirror-state"
12691 ,node-prosemirror-state-1.3.4)
12692 ("node-prosemirror-transform"
12693 ,node-prosemirror-transform-1.2.11)
12694 ("node-prosemirror-model"
12695 ,node-prosemirror-model-1.13.3)))
12696 (home-page
12697 "https://github.com/prosemirror/prosemirror-commands#readme")
12698 (synopsis "Editing commands for ProseMirror")
12699 (description "Editing commands for ProseMirror")
12700 (license license:expat)))
12701
12702(define-public node-resolve-1.20.0
12703 (package
12704 (name "node-resolve")
12705 (version "1.20.0")
12706 (source
12707 (origin
12708 (method url-fetch)
12709 (uri "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz")
12710 (sha256
12711 (base32
12712 "12x15vnr7yf5l0mr5ga28w0rsszm036832mmdp706drn8imgnhfl"))))
12713 (build-system node-build-system)
12714 (arguments
12715 `(#:tests?
12716 #f
12717 #:phases
12718 (modify-phases
12719 %standard-phases
12720 (delete 'configure)
12721 (delete 'build))))
12722 (inputs
12723 `(("node-path-parse" ,node-path-parse-1.0.6)
12724 ("node-is-core-module"
12725 ,node-is-core-module-2.2.0)))
12726 (home-page
12727 "https://github.com/browserify/resolve#readme")
12728 (synopsis
12729 "resolve like require.resolve() on behalf of files asynchronously and synchronously")
12730 (description
12731 "resolve like require.resolve() on behalf of files asynchronously and synchronously")
12732 (license license:expat)))
12733
12734(define-public node-prosemirror-view-1.17.6
12735 (package
12736 (name "node-prosemirror-view")
12737 (version "1.17.6")
12738 (source
12739 (origin
12740 (method url-fetch)
12741 (uri "https://registry.npmjs.org/prosemirror-view/-/prosemirror-view-1.17.6.tgz")
12742 (sha256
12743 (base32
12744 "0f0w90kkf4lpbkcynhbasrhvs5jiaazww6hgsala25gbjqsv1l5g"))))
12745 (build-system node-build-system)
12746 (arguments
12747 `(#:tests?
12748 #f
12749 #:phases
12750 (modify-phases
12751 %standard-phases
12752 (delete 'configure)
12753 (delete 'build))))
12754 (inputs
12755 `(("node-prosemirror-transform"
12756 ,node-prosemirror-transform-1.2.11)
12757 ("node-prosemirror-state"
12758 ,node-prosemirror-state-1.3.4)
12759 ("node-prosemirror-model"
12760 ,node-prosemirror-model-1.13.3)))
12761 (home-page
12762 "https://github.com/prosemirror/prosemirror-view#readme")
12763 (synopsis "ProseMirror's view component")
12764 (description "ProseMirror's view component")
12765 (license license:expat)))
12766
12767(define-public node-prosemirror-dropcursor-1.3.3
12768 (package
12769 (name "node-prosemirror-dropcursor")
12770 (version "1.3.3")
12771 (source
12772 (origin
12773 (method url-fetch)
12774 (uri "https://registry.npmjs.org/prosemirror-dropcursor/-/prosemirror-dropcursor-1.3.3.tgz")
12775 (sha256
12776 (base32
12777 "107waxr367s5rbg8v8lw115d718g9sq03i7vbm97rakpcl7pn54g"))))
12778 (build-system node-build-system)
12779 (arguments
12780 `(#:tests?
12781 #f
12782 #:phases
12783 (modify-phases
12784 %standard-phases
12785 (delete 'configure)
12786 (delete 'build))))
12787 (inputs
12788 `(("node-prosemirror-transform"
12789 ,node-prosemirror-transform-1.2.11)
12790 ("node-prosemirror-view"
12791 ,node-prosemirror-view-1.17.6)
12792 ("node-prosemirror-state"
12793 ,node-prosemirror-state-1.3.4)))
12794 (home-page
12795 "https://github.com/prosemirror/prosemirror-dropcursor#readme")
12796 (synopsis "Drop cursor plugin for ProseMirror")
12797 (description
12798 "Drop cursor plugin for ProseMirror")
12799 (license license:expat)))
12800
12801(define-public node-w3c-keyname-2.2.4
12802 (package
12803 (name "node-w3c-keyname")
12804 (version "2.2.4")
12805 (source
12806 (origin
12807 (method url-fetch)
12808 (uri "https://registry.npmjs.org/w3c-keyname/-/w3c-keyname-2.2.4.tgz")
12809 (sha256
12810 (base32
12811 "0chpkvgdsg3ff32hmz8xg0brd7k9x9sh4kzymqgjhjvawy3pknd0"))))
12812 (build-system node-build-system)
12813 (arguments
12814 `(#:tests?
12815 #f
12816 #:phases
12817 (modify-phases
12818 %standard-phases
12819 (delete 'configure)
12820 (delete 'build))))
12821 (home-page
12822 "https://github.com/marijnh/w3c-keyname#readme")
12823 (synopsis
12824 "Get a KeyboardEvent.key-style string from an event")
12825 (description
12826 "Get a KeyboardEvent.key-style string from an event")
12827 (license license:expat)))
12828
12829(define-public node-prosemirror-keymap-1.1.4
12830 (package
12831 (name "node-prosemirror-keymap")
12832 (version "1.1.4")
12833 (source
12834 (origin
12835 (method url-fetch)
12836 (uri "https://registry.npmjs.org/prosemirror-keymap/-/prosemirror-keymap-1.1.4.tgz")
12837 (sha256
12838 (base32
12839 "02ba33vpz03f7xp9khvgszy014rh8fvz3158c9bck6ridgk8xj35"))))
12840 (build-system node-build-system)
12841 (arguments
12842 `(#:tests?
12843 #f
12844 #:phases
12845 (modify-phases
12846 %standard-phases
12847 (delete 'configure)
12848 (delete 'build))))
12849 (inputs
12850 `(("node-prosemirror-state"
12851 ,node-prosemirror-state-1.3.4)
12852 ("node-w3c-keyname" ,node-w3c-keyname-2.2.4)))
12853 (home-page
12854 "https://github.com/prosemirror/prosemirror-keymap#readme")
12855 (synopsis "Keymap plugin for ProseMirror")
12856 (description "Keymap plugin for ProseMirror")
12857 (license license:expat)))
12858
12859(define-public node-prosemirror-gapcursor-1.1.5
12860 (package
12861 (name "node-prosemirror-gapcursor")
12862 (version "1.1.5")
12863 (source
12864 (origin
12865 (method url-fetch)
12866 (uri "https://registry.npmjs.org/prosemirror-gapcursor/-/prosemirror-gapcursor-1.1.5.tgz")
12867 (sha256
12868 (base32
12869 "0j6191i07sji1m5l5m9f6n1rxcxrp8n1wfx26l49l0gvjbc6l93i"))))
12870 (build-system node-build-system)
12871 (arguments
12872 `(#:tests?
12873 #f
12874 #:phases
12875 (modify-phases
12876 %standard-phases
12877 (delete 'configure)
12878 (delete 'build))))
12879 (inputs
12880 `(("node-prosemirror-view"
12881 ,node-prosemirror-view-1.17.6)
12882 ("node-prosemirror-state"
12883 ,node-prosemirror-state-1.3.4)
12884 ("node-prosemirror-model"
12885 ,node-prosemirror-model-1.13.3)
12886 ("node-prosemirror-keymap"
12887 ,node-prosemirror-keymap-1.1.4)))
12888 (home-page
12889 "https://github.com/prosemirror/prosemirror-gapcursor#readme")
12890 (synopsis
12891 "ProseMirror plugin for cursors at normally impossible-to-reach positions")
12892 (description
12893 "ProseMirror plugin for cursors at normally impossible-to-reach positions")
12894 (license license:expat)))
12895
12896(define-public node-prosemirror-inputrules-1.1.3
12897 (package
12898 (name "node-prosemirror-inputrules")
12899 (version "1.1.3")
12900 (source
12901 (origin
12902 (method url-fetch)
12903 (uri "https://registry.npmjs.org/prosemirror-inputrules/-/prosemirror-inputrules-1.1.3.tgz")
12904 (sha256
12905 (base32
12906 "1g2048iddcsrfy0bpgnpclzvirrn17raz32cqrrny1a5s3a6fnph"))))
12907 (build-system node-build-system)
12908 (arguments
12909 `(#:tests?
12910 #f
12911 #:phases
12912 (modify-phases
12913 %standard-phases
12914 (delete 'configure)
12915 (delete 'build))))
12916 (inputs
12917 `(("node-prosemirror-transform"
12918 ,node-prosemirror-transform-1.2.11)
12919 ("node-prosemirror-state"
12920 ,node-prosemirror-state-1.3.4)))
12921 (home-page
12922 "https://github.com/prosemirror/prosemirror-inputrules#readme")
12923 (synopsis
12924 "Automatic transforms on text input for ProseMirror")
12925 (description
12926 "Automatic transforms on text input for ProseMirror")
12927 (license license:expat)))
12928
12929(define-public node-prosemirror-schema-list-1.1.4
12930 (package
12931 (name "node-prosemirror-schema-list")
12932 (version "1.1.4")
12933 (source
12934 (origin
12935 (method url-fetch)
12936 (uri "https://registry.npmjs.org/prosemirror-schema-list/-/prosemirror-schema-list-1.1.4.tgz")
12937 (sha256
12938 (base32
12939 "1svk7c7xn20jw178mx5ln9wk0vlcsv4y7fzw57sk7633y9c876cq"))))
12940 (build-system node-build-system)
12941 (arguments
12942 `(#:tests?
12943 #f
12944 #:phases
12945 (modify-phases
12946 %standard-phases
12947 (delete 'configure)
12948 (delete 'build))))
12949 (inputs
12950 `(("node-prosemirror-transform"
12951 ,node-prosemirror-transform-1.2.11)
12952 ("node-prosemirror-model"
12953 ,node-prosemirror-model-1.13.3)))
12954 (home-page
12955 "https://github.com/prosemirror/prosemirror-schema-list#readme")
12956 (synopsis
12957 "List-related schema elements and commands for ProseMirror")
12958 (description
12959 "List-related schema elements and commands for ProseMirror")
12960 (license license:expat)))
12961
12962(define-public node-prosemirror-tables-1.1.1
12963 (package
12964 (name "node-prosemirror-tables")
12965 (version "1.1.1")
12966 (source
12967 (origin
12968 (method url-fetch)
12969 (uri "https://registry.npmjs.org/prosemirror-tables/-/prosemirror-tables-1.1.1.tgz")
12970 (sha256
12971 (base32
12972 "0a04lvwsp3hiy2zc36d08wykf41a988rqdwz28zjmpzq0zzz1xjy"))))
12973 (build-system node-build-system)
12974 (arguments
12975 `(#:tests?
12976 #f
12977 #:phases
12978 (modify-phases
12979 %standard-phases
12980 (delete 'configure)
12981 (delete 'build))))
12982 (inputs
12983 `(("node-prosemirror-view"
12984 ,node-prosemirror-view-1.17.6)
12985 ("node-prosemirror-transform"
12986 ,node-prosemirror-transform-1.2.11)
12987 ("node-prosemirror-state"
12988 ,node-prosemirror-state-1.3.4)
12989 ("node-prosemirror-model"
12990 ,node-prosemirror-model-1.13.3)
12991 ("node-prosemirror-keymap"
12992 ,node-prosemirror-keymap-1.1.4)))
12993 (home-page
12994 "https://github.com/prosemirror/prosemirror-tables#readme")
12995 (synopsis
12996 "ProseMirror's rowspan/colspan tables component")
12997 (description
12998 "ProseMirror's rowspan/colspan tables component")
12999 (license license:expat)))
13000
13001(define-public node-prosemirror-utils-0.9.6
13002 (package
13003 (name "node-prosemirror-utils")
13004 (version "0.9.6")
13005 (source
13006 (origin
13007 (method url-fetch)
13008 (uri "https://registry.npmjs.org/prosemirror-utils/-/prosemirror-utils-0.9.6.tgz")
13009 (sha256
13010 (base32
13011 "095p3n1ak3j3lvmdymyp92sw4w3arkig4n55cnbdf5ara017cnj2"))))
13012 (build-system node-build-system)
13013 (arguments
13014 `(#:tests?
13015 #f
13016 #:phases
13017 (modify-phases
13018 %standard-phases
13019 (delete 'configure)
13020 (delete 'build))))
13021 (home-page
13022 "https://github.com/atlassian/prosemirror-utils#readme")
13023 (synopsis "Utils library for ProseMirror")
13024 (description "Utils library for ProseMirror")
13025 (license license:asl2.0)))
13026
13027(define-public node-scheduler-0.19.1
13028 (package
13029 (name "node-scheduler")
13030 (version "0.19.1")
13031 (source
13032 (origin
13033 (method url-fetch)
13034 (uri "https://registry.npmjs.org/scheduler/-/scheduler-0.19.1.tgz")
13035 (sha256
13036 (base32
13037 "1s9igfdyabpnmcn9pk7f5p5wlvhprnrib07d2fa0qppiq0j5jxly"))))
13038 (build-system node-build-system)
13039 (arguments
13040 `(#:tests?
13041 #f
13042 #:phases
13043 (modify-phases
13044 %standard-phases
13045 (delete 'configure)
13046 (delete 'build))))
13047 (inputs
13048 `(("node-object-assign" ,node-object-assign-4.1.1)
13049 ("node-loose-envify" ,node-loose-envify-1.4.0)))
13050 (home-page "https://reactjs.org/")
13051 (synopsis
13052 "Cooperative scheduler for the browser environment.")
13053 (description
13054 "Cooperative scheduler for the browser environment.")
13055 (license license:expat)))
13056
13057(define-public node-react-dom-16.14.0
13058 (package
13059 (name "node-react-dom")
13060 (version "16.14.0")
13061 (source
13062 (origin
13063 (method url-fetch)
13064 (uri "https://registry.npmjs.org/react-dom/-/react-dom-16.14.0.tgz")
13065 (sha256
13066 (base32
13067 "0dikgr72j7qc9gz60kvlqgmddwf2lnyzr47f1bayhk8gy638bl31"))))
13068 (build-system node-build-system)
13069 (arguments
13070 `(#:tests?
13071 #f
13072 #:phases
13073 (modify-phases
13074 %standard-phases
13075 (delete 'configure)
13076 (delete 'build))))
13077 (inputs
13078 `(("node-scheduler" ,node-scheduler-0.19.1)
13079 ("node-prop-types" ,node-prop-types-15.7.2)
13080 ("node-react" ,node-react-16.14.0)
13081 ("node-object-assign" ,node-object-assign-4.1.1)
13082 ("node-loose-envify" ,node-loose-envify-1.4.0)))
13083 (home-page "https://reactjs.org/")
13084 (synopsis
13085 "React package for working with the DOM.")
13086 (description
13087 "React package for working with the DOM.")
13088 (license license:expat)))
13089
13090(define-public node-memoize-one-5.1.1
13091 (package
13092 (name "node-memoize-one")
13093 (version "5.1.1")
13094 (source
13095 (origin
13096 (method url-fetch)
13097 (uri "https://registry.npmjs.org/memoize-one/-/memoize-one-5.1.1.tgz")
13098 (sha256
13099 (base32
13100 "165gncfcwwfl2k0nkhjavsjrg3bhynrjdl55mnxpm6ax3j7q9lwx"))))
13101 (build-system node-build-system)
13102 (arguments
13103 `(#:tests?
13104 #f
13105 #:phases
13106 (modify-phases
13107 %standard-phases
13108 (delete 'configure)
13109 (delete 'build))))
13110 (home-page
13111 "https://github.com/alexreardon/memoize-one#readme")
13112 (synopsis
13113 "A memoization library which only remembers the latest invocation")
13114 (description
13115 "A memoization library which only remembers the latest invocation")
13116 (license license:expat)))
13117
13118(define-public node-react-window-1.8.6
13119 (package
13120 (name "node-react-window")
13121 (version "1.8.6")
13122 (source
13123 (origin
13124 (method url-fetch)
13125 (uri "https://registry.npmjs.org/react-window/-/react-window-1.8.6.tgz")
13126 (sha256
13127 (base32
13128 "1vq8wlf1d34hmn8jag6b41a01vwzbyw41ipylc7vj028f2zi93fq"))))
13129 (build-system node-build-system)
13130 (arguments
13131 `(#:tests?
13132 #f
13133 #:phases
13134 (modify-phases
13135 %standard-phases
13136 (delete 'configure)
13137 (delete 'build))))
13138 (inputs
13139 `(("node-memoize-one" ,node-memoize-one-5.1.1)
13140 ("node-babel-runtime"
13141 ,node-babel-runtime-7.12.13)))
13142 (home-page "http://react-window.now.sh/")
13143 (synopsis
13144 "React components for efficiently rendering large, scrollable lists and tabular data")
13145 (description
13146 "React components for efficiently rendering large, scrollable lists and tabular data")
13147 (license license:expat)))
13148
13149(define-public node-textlint-ast-node-types-4.4.1
13150 (package
13151 (name "node-textlint-ast-node-types")
13152 (version "4.4.1")
13153 (source
13154 (origin
13155 (method url-fetch)
13156 (uri "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-4.4.1.tgz")
13157 (sha256
13158 (base32
13159 "1lqp1mpvia98n581f9qgkm1khbw2w445famivj2p0y72dxpqmw27"))))
13160 (build-system node-build-system)
13161 (arguments
13162 `(#:tests?
13163 #f
13164 #:phases
13165 (modify-phases
13166 %standard-phases
13167 (delete 'configure)
13168 (delete 'build))))
13169 (home-page
13170 "https://github.com/textlint/textlint#readme")
13171 (synopsis "textlint AST node type definition.")
13172 (description
13173 "textlint AST node type definition.")
13174 (license license:expat)))
13175
13176(define-public node-string-decoder-1.3.0
13177 (package
13178 (name "node-string-decoder")
13179 (version "1.3.0")
13180 (source
13181 (origin
13182 (method url-fetch)
13183 (uri "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz")
13184 (sha256
13185 (base32
13186 "1bdkjw2kn1h4lrmqqfdwajsg9yivn92swwc3aciy8i83jh06j0vx"))))
13187 (build-system node-build-system)
13188 (arguments
13189 `(#:tests?
13190 #f
13191 #:phases
13192 (modify-phases
13193 %standard-phases
13194 (delete 'configure)
13195 (delete 'build))))
13196 (inputs
13197 `(("node-safe-buffer" ,node-safe-buffer-5.2.1)))
13198 (home-page
13199 "https://github.com/nodejs/string_decoder")
13200 (synopsis
13201 "The string_decoder module from Node core")
13202 (description
13203 "The string_decoder module from Node core")
13204 (license license:expat)))
13205
13206(define-public node-readable-stream-3.6.0
13207 (package
13208 (name "node-readable-stream")
13209 (version "3.6.0")
13210 (source
13211 (origin
13212 (method url-fetch)
13213 (uri "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz")
13214 (sha256
13215 (base32
13216 "1fy6kya4g3zwjdc0xfg7gdzg9ynqnqzv9ay301ay174vvp9202ak"))))
13217 (build-system node-build-system)
13218 (arguments
13219 `(#:tests?
13220 #f
13221 #:phases
13222 (modify-phases
13223 %standard-phases
13224 (delete 'configure)
13225 (delete 'build))))
13226 (inputs
13227 `(("node-util-deprecate"
13228 ,node-util-deprecate-1.0.2)
13229 ("node-string-decoder"
13230 ,node-string-decoder-1.3.0)
13231 ("node-inherits" ,node-inherits-2.0.4)))
13232 (home-page
13233 "https://github.com/nodejs/readable-stream#readme")
13234 (synopsis
13235 "Streams3, a user-land copy of the stream library from Node.js")
13236 (description
13237 "Streams3, a user-land copy of the stream library from Node.js")
13238 (license license:expat)))
13239
13240(define-public node-is-callable-1.2.3
13241 (package
13242 (name "node-is-callable")
13243 (version "1.2.3")
13244 (source
13245 (origin
13246 (method url-fetch)
13247 (uri "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz")
13248 (sha256
13249 (base32
13250 "1zflvsdz1gmdr4ay1nis64sh3w6x7mmgp3xjrk1cangp3y7r88yb"))))
13251 (build-system node-build-system)
13252 (arguments
13253 `(#:tests?
13254 #f
13255 #:phases
13256 (modify-phases
13257 %standard-phases
13258 (delete 'configure)
13259 (delete 'build))))
13260 (home-page
13261 "https://github.com/ljharb/is-callable#readme")
13262 (synopsis
13263 "Is this JS value callable? Works with Functions and GeneratorFunctions, despite ES6 @@toStringTag.")
13264 (description
13265 "Is this JS value callable? Works with Functions and GeneratorFunctions, despite ES6 @@toStringTag.")
13266 (license license:expat)))
13267
13268(define-public node-is-date-object-1.0.2
13269 (package
13270 (name "node-is-date-object")
13271 (version "1.0.2")
13272 (source
13273 (origin
13274 (method url-fetch)
13275 (uri "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz")
13276 (sha256
13277 (base32
13278 "10l3lp8mnafhxxfm3p1h0srcixlpx4qg6zf7wigr6qa1x5ghynrh"))))
13279 (build-system node-build-system)
13280 (arguments
13281 `(#:tests?
13282 #f
13283 #:phases
13284 (modify-phases
13285 %standard-phases
13286 (delete 'configure)
13287 (delete 'build))))
13288 (home-page
13289 "https://github.com/ljharb/is-date-object#readme")
13290 (synopsis
13291 "Is this value a JS Date object? This module works cross-realm/iframe, and despite ES6 @@toStringTag.")
13292 (description
13293 "Is this value a JS Date object? This module works cross-realm/iframe, and despite ES6 @@toStringTag.")
13294 (license license:expat)))
13295
13296(define-public node-is-symbol-1.0.3
13297 (package
13298 (name "node-is-symbol")
13299 (version "1.0.3")
13300 (source
13301 (origin
13302 (method url-fetch)
13303 (uri "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz")
13304 (sha256
13305 (base32
13306 "0kgsxf6f52fxp6ms6r04cx4wqf51yxmj0vg8azhyqp8akhj25b88"))))
13307 (build-system node-build-system)
13308 (arguments
13309 `(#:tests?
13310 #f
13311 #:phases
13312 (modify-phases
13313 %standard-phases
13314 (delete 'configure)
13315 (delete 'build))))
13316 (inputs
13317 `(("node-has-symbols" ,node-has-symbols-1.0.1)))
13318 (home-page
13319 "https://github.com/inspect-js/is-symbol#readme")
13320 (synopsis
13321 "Determine if a value is an ES6 Symbol or not.")
13322 (description
13323 "Determine if a value is an ES6 Symbol or not.")
13324 (license license:expat)))
13325
13326(define-public node-es-to-primitive-1.2.1
13327 (package
13328 (name "node-es-to-primitive")
13329 (version "1.2.1")
13330 (source
13331 (origin
13332 (method url-fetch)
13333 (uri "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz")
13334 (sha256
13335 (base32
13336 "1slbd6g1g0l9wb86h49ysflwzxzzj3cv9a7flpzrzrkp3lkmh1gk"))))
13337 (build-system node-build-system)
13338 (arguments
13339 `(#:tests?
13340 #f
13341 #:phases
13342 (modify-phases
13343 %standard-phases
13344 (delete 'configure)
13345 (delete 'build))))
13346 (inputs
13347 `(("node-is-symbol" ,node-is-symbol-1.0.3)
13348 ("node-is-date-object"
13349 ,node-is-date-object-1.0.2)
13350 ("node-is-callable" ,node-is-callable-1.2.3)))
13351 (home-page
13352 "https://github.com/ljharb/es-to-primitive#readme")
13353 (synopsis
13354 "ECMAScript â\x80\x9cToPrimitiveâ\x80\x9d algorithm. Provides ES5 and ES2015 versions.")
13355 (description
13356 "ECMAScript â\x80\x9cToPrimitiveâ\x80\x9d algorithm. Provides ES5 and ES2015 versions.")
13357 (license license:expat)))
13358
13359(define-public node-is-negative-zero-2.0.1
13360 (package
13361 (name "node-is-negative-zero")
13362 (version "2.0.1")
13363 (source
13364 (origin
13365 (method url-fetch)
13366 (uri "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz")
13367 (sha256
13368 (base32
13369 "0cvc3rljj6ri87g5jkd91hffafpri9h3jygy9z9zc22wsm2p7pfn"))))
13370 (build-system node-build-system)
13371 (arguments
13372 `(#:tests?
13373 #f
13374 #:phases
13375 (modify-phases
13376 %standard-phases
13377 (delete 'configure)
13378 (delete 'build))))
13379 (home-page
13380 "https://github.com/inspect-js/is-negative-zero")
13381 (synopsis
13382 "Is this value negative zero? === will lie to you")
13383 (description
13384 "Is this value negative zero? === will lie to you")
13385 (license license:expat)))
13386
13387(define-public node-call-bind-1.0.2
13388 (package
13389 (name "node-call-bind")
13390 (version "1.0.2")
13391 (source
13392 (origin
13393 (method url-fetch)
13394 (uri "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz")
13395 (sha256
13396 (base32
13397 "06il2ki0bprw4s0a12bwnzwjc8gwwcw6f0cda0jyvj46sj56z5f3"))))
13398 (build-system node-build-system)
13399 (arguments
13400 `(#:tests?
13401 #f
13402 #:phases
13403 (modify-phases
13404 %standard-phases
13405 (delete 'configure)
13406 (delete 'build))))
13407 (inputs
13408 `(("node-get-intrinsic" ,node-get-intrinsic-1.1.1)
13409 ("node-function-bind" ,node-function-bind-1.1.1)))
13410 (home-page
13411 "https://github.com/ljharb/call-bind#readme")
13412 (synopsis "Robustly `.call.bind()` a function")
13413 (description
13414 "Robustly `.call.bind()` a function")
13415 (license license:expat)))
13416
13417(define-public node-is-regex-1.1.2
13418 (package
13419 (name "node-is-regex")
13420 (version "1.1.2")
13421 (source
13422 (origin
13423 (method url-fetch)
13424 (uri "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz")
13425 (sha256
13426 (base32
13427 "17d3mdlk9sqqmdnr0kqyvczj82fz2aaiqivmjrdcswsca1b9sps4"))))
13428 (build-system node-build-system)
13429 (arguments
13430 `(#:tests?
13431 #f
13432 #:phases
13433 (modify-phases
13434 %standard-phases
13435 (delete 'configure)
13436 (delete 'build))))
13437 (inputs
13438 `(("node-has-symbols" ,node-has-symbols-1.0.1)
13439 ("node-call-bind" ,node-call-bind-1.0.2)))
13440 (home-page
13441 "https://github.com/inspect-js/is-regex")
13442 (synopsis
13443 "Is this value a JS regex? Works cross-realm/iframe, and despite ES6 @@toStringTag")
13444 (description
13445 "Is this value a JS regex? Works cross-realm/iframe, and despite ES6 @@toStringTag")
13446 (license license:expat)))
13447
13448(define-public node-object-inspect-1.9.0
13449 (package
13450 (name "node-object-inspect")
13451 (version "1.9.0")
13452 (source
13453 (origin
13454 (method url-fetch)
13455 (uri "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz")
13456 (sha256
13457 (base32
13458 "1pmfjkyl718029nxqzsld08kccmw61km61x1w0f0i718s3dmmhxc"))))
13459 (build-system node-build-system)
13460 (arguments
13461 `(#:tests?
13462 #f
13463 #:phases
13464 (modify-phases
13465 %standard-phases
13466 (delete 'configure)
13467 (delete 'build))))
13468 (home-page
13469 "https://github.com/inspect-js/object-inspect")
13470 (synopsis
13471 "string representations of objects in node and the browser")
13472 (description
13473 "string representations of objects in node and the browser")
13474 (license license:expat)))
13475
13476(define-public node-object-keys-1.1.1
13477 (package
13478 (name "node-object-keys")
13479 (version "1.1.1")
13480 (source
13481 (origin
13482 (method url-fetch)
13483 (uri "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz")
13484 (sha256
13485 (base32
13486 "04pjwxszvk8alk6z5lzk02ba3q56i2g70cs02f57qxhraq2xjy4n"))))
13487 (build-system node-build-system)
13488 (arguments
13489 `(#:tests?
13490 #f
13491 #:phases
13492 (modify-phases
13493 %standard-phases
13494 (delete 'configure)
13495 (delete 'build))))
13496 (home-page
13497 "https://github.com/ljharb/object-keys#readme")
13498 (synopsis
13499 "An Object.keys replacement, in case Object.keys is not available. From https://github.com/es-shims/es5-shim")
13500 (description
13501 "An Object.keys replacement, in case Object.keys is not available. From https://github.com/es-shims/es5-shim")
13502 (license license:expat)))
13503
13504(define-public node-object-assign-4.1.2
13505 (package
13506 (name "node-object-assign")
13507 (version "4.1.2")
13508 (source
13509 (origin
13510 (method url-fetch)
13511 (uri "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz")
13512 (sha256
13513 (base32
13514 "0kr1m0zxblgar7ks4l5bkkfjib5s1bdfdg7gd0mx7nc8559fgmmc"))))
13515 (build-system node-build-system)
13516 (arguments
13517 `(#:tests?
13518 #f
13519 #:phases
13520 (modify-phases
13521 %standard-phases
13522 (delete 'configure)
13523 (delete 'build))))
13524 (inputs
13525 `(("node-object-keys" ,node-object-keys-1.1.1)
13526 ("node-has-symbols" ,node-has-symbols-1.0.1)
13527 ("node-define-properties"
13528 ,node-define-properties-1.1.3)
13529 ("node-call-bind" ,node-call-bind-1.0.2)))
13530 (home-page
13531 "https://github.com/ljharb/object.assign#readme")
13532 (synopsis
13533 "ES6 spec-compliant Object.assign shim. From https://github.com/es-shims/es6-shim")
13534 (description
13535 "ES6 spec-compliant Object.assign shim. From https://github.com/es-shims/es6-shim")
13536 (license license:expat)))
13537
13538(define-public node-string-prototype-trimend-1.0.3
13539 (package
13540 (name "node-string-prototype-trimend")
13541 (version "1.0.3")
13542 (source
13543 (origin
13544 (method url-fetch)
13545 (uri "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz")
13546 (sha256
13547 (base32
13548 "0jiz47xf5j5w4z5q2rkp9vp2w5ayi6wx3idlnkllsn0vrzqpqb5x"))))
13549 (build-system node-build-system)
13550 (arguments
13551 `(#:tests?
13552 #f
13553 #:phases
13554 (modify-phases
13555 %standard-phases
13556 (delete 'configure)
13557 (delete 'build))))
13558 (inputs
13559 `(("node-define-properties"
13560 ,node-define-properties-1.1.3)
13561 ("node-call-bind" ,node-call-bind-1.0.2)))
13562 (home-page
13563 "https://github.com/es-shims/String.prototype.trimEnd#readme")
13564 (synopsis
13565 "ES2019 spec-compliant String.prototype.trimEnd shim.")
13566 (description
13567 "ES2019 spec-compliant String.prototype.trimEnd shim.")
13568 (license license:expat)))
13569
13570(define-public node-has-symbols-1.0.1
13571 (package
13572 (name "node-has-symbols")
13573 (version "1.0.1")
13574 (source
13575 (origin
13576 (method url-fetch)
13577 (uri "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz")
13578 (sha256
13579 (base32
13580 "12fnwdir2mbi7bij7q86mvqdx3fxrlrmll6j7x0spg0j9angh2ix"))))
13581 (build-system node-build-system)
13582 (arguments
13583 `(#:tests?
13584 #f
13585 #:phases
13586 (modify-phases
13587 %standard-phases
13588 (delete 'configure)
13589 (delete 'build))))
13590 (home-page
13591 "https://github.com/ljharb/has-symbols#readme")
13592 (synopsis
13593 "Determine if the JS environment has Symbol support. Supports spec, or shams.")
13594 (description
13595 "Determine if the JS environment has Symbol support. Supports spec, or shams.")
13596 (license license:expat)))
13597
13598(define-public node-get-intrinsic-1.1.1
13599 (package
13600 (name "node-get-intrinsic")
13601 (version "1.1.1")
13602 (source
13603 (origin
13604 (method url-fetch)
13605 (uri "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz")
13606 (sha256
13607 (base32
13608 "06vvw0pyv22bv1ryb5hjwhrfxjsi2rj220z46cw2qv2smy7rc6ss"))))
13609 (build-system node-build-system)
13610 (arguments
13611 `(#:tests?
13612 #f
13613 #:phases
13614 (modify-phases
13615 %standard-phases
13616 (delete 'configure)
13617 (delete 'build))))
13618 (inputs
13619 `(("node-has-symbols" ,node-has-symbols-1.0.1)
13620 ("node-has" ,node-has-1.0.3)
13621 ("node-function-bind" ,node-function-bind-1.1.1)))
13622 (home-page
13623 "https://github.com/ljharb/get-intrinsic#readme")
13624 (synopsis
13625 "Get and robustly cache all JS language-level intrinsics at first require time")
13626 (description
13627 "Get and robustly cache all JS language-level intrinsics at first require time")
13628 (license license:expat)))
13629
13630(define-public node-define-properties-1.1.3
13631 (package
13632 (name "node-define-properties")
13633 (version "1.1.3")
13634 (source
13635 (origin
13636 (method url-fetch)
13637 (uri "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz")
13638 (sha256
13639 (base32
13640 "19bhbbwl9m4jaj34gcvyw65bsx675y721fliqy9az5dv2pdz892m"))))
13641 (build-system node-build-system)
13642 (arguments
13643 `(#:tests?
13644 #f
13645 #:phases
13646 (modify-phases
13647 %standard-phases
13648 (delete 'configure)
13649 (delete 'build))))
13650 (inputs
13651 `(("node-object-keys" ,node-object-keys-1.1.1)))
13652 (home-page
13653 "https://github.com/ljharb/define-properties#readme")
13654 (synopsis
13655 "Define multiple non-enumerable properties at once. Uses `Object.defineProperty` when available; falls back to standard assignment in older engines.")
13656 (description
13657 "Define multiple non-enumerable properties at once. Uses `Object.defineProperty` when available; falls back to standard assignment in older engines.")
13658 (license license:expat)))
13659
13660(define-public node-string-prototype-trimstart-1.0.3
13661 (package
13662 (name "node-string-prototype-trimstart")
13663 (version "1.0.3")
13664 (source
13665 (origin
13666 (method url-fetch)
13667 (uri "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz")
13668 (sha256
13669 (base32
13670 "1802sm77yd6j8cr8w9166amr6w78wlajmlsdya832pyci51xaxsv"))))
13671 (build-system node-build-system)
13672 (arguments
13673 `(#:tests?
13674 #f
13675 #:phases
13676 (modify-phases
13677 %standard-phases
13678 (delete 'configure)
13679 (delete 'build))))
13680 (inputs
13681 `(("node-define-properties"
13682 ,node-define-properties-1.1.3)
13683 ("node-call-bind" ,node-call-bind-1.0.2)))
13684 (home-page
13685 "https://github.com/es-shims/String.prototype.trimStart#readme")
13686 (synopsis
13687 "ES2019 spec-compliant String.prototype.trimStart shim.")
13688 (description
13689 "ES2019 spec-compliant String.prototype.trimStart shim.")
13690 (license license:expat)))
13691
13692(define-public node-es-abstract-1.18.0-next.2
13693 (package
13694 (name "node-es-abstract")
13695 (version "1.18.0-next.2")
13696 (source
13697 (origin
13698 (method url-fetch)
13699 (uri "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.2.tgz")
13700 (sha256
13701 (base32
13702 "0psvxzh46x5q3g49ksyjllh23anxd4lkj9h06f0m8fvkg5l7nl9g"))))
13703 (build-system node-build-system)
13704 (arguments
13705 `(#:tests?
13706 #f
13707 #:phases
13708 (modify-phases
13709 %standard-phases
13710 (delete 'configure)
13711 (delete 'build))))
13712 (inputs
13713 `(("node-string-prototype-trimstart"
13714 ,node-string-prototype-trimstart-1.0.3)
13715 ("node-string-prototype-trimend"
13716 ,node-string-prototype-trimend-1.0.3)
13717 ("node-object-assign" ,node-object-assign-4.1.2)
13718 ("node-object-keys" ,node-object-keys-1.1.1)
13719 ("node-object-inspect"
13720 ,node-object-inspect-1.9.0)
13721 ("node-is-regex" ,node-is-regex-1.1.2)
13722 ("node-is-negative-zero"
13723 ,node-is-negative-zero-2.0.1)
13724 ("node-is-callable" ,node-is-callable-1.2.3)
13725 ("node-has-symbols" ,node-has-symbols-1.0.1)
13726 ("node-has" ,node-has-1.0.3)
13727 ("node-get-intrinsic" ,node-get-intrinsic-1.1.1)
13728 ("node-function-bind" ,node-function-bind-1.1.1)
13729 ("node-es-to-primitive"
13730 ,node-es-to-primitive-1.2.1)
13731 ("node-call-bind" ,node-call-bind-1.0.2)))
13732 (home-page
13733 "https://github.com/ljharb/es-abstract#readme")
13734 (synopsis "ECMAScript spec abstract operations.")
13735 (description
13736 "ECMAScript spec abstract operations.")
13737 (license license:expat)))
13738
13739(define-public node-object-values-1.1.2
13740 (package
13741 (name "node-object-values")
13742 (version "1.1.2")
13743 (source
13744 (origin
13745 (method url-fetch)
13746 (uri "https://registry.npmjs.org/object.values/-/object.values-1.1.2.tgz")
13747 (sha256
13748 (base32
13749 "03dg98vbch6j6jbnnj883141s6hxmp4q4s731q39zfpnlkp26rf0"))))
13750 (build-system node-build-system)
13751 (arguments
13752 `(#:tests?
13753 #f
13754 #:phases
13755 (modify-phases
13756 %standard-phases
13757 (delete 'configure)
13758 (delete 'build))))
13759 (inputs
13760 `(("node-has" ,node-has-1.0.3)
13761 ("node-es-abstract"
13762 ,node-es-abstract-1.18.0-next.2)
13763 ("node-define-properties"
13764 ,node-define-properties-1.1.3)
13765 ("node-call-bind" ,node-call-bind-1.0.2)))
13766 (home-page
13767 "https://github.com/es-shims/Object.values#readme")
13768 (synopsis
13769 "ES2017 spec-compliant Object.values shim.")
13770 (description
13771 "ES2017 spec-compliant Object.values shim.")
13772 (license license:expat)))
13773
13774(define-public node-boundary-1.0.1
13775 (package
13776 (name "node-boundary")
13777 (version "1.0.1")
13778 (source
13779 (origin
13780 (method url-fetch)
13781 (uri "https://registry.npmjs.org/boundary/-/boundary-1.0.1.tgz")
13782 (sha256
13783 (base32
13784 "0wv8vbfv73yywd7s4slzhbfc7bvxm5kqbw96yf3df5sv5l9yfmmc"))))
13785 (build-system node-build-system)
13786 (arguments
13787 `(#:tests?
13788 #f
13789 #:phases
13790 (modify-phases
13791 %standard-phases
13792 (delete 'configure)
13793 (delete 'build))))
13794 (home-page
13795 "https://github.com/Constellation/boundary")
13796 (synopsis
13797 "Provides boundary functions, (upper-bound and lower-bound).")
13798 (description
13799 "Provides boundary functions, (upper-bound and lower-bound).")
13800 (license (license:non-copyleft "unknown"))))
13801
13802(define-public node-structured-source-3.0.2
13803 (package
13804 (name "node-structured-source")
13805 (version "3.0.2")
13806 (source
13807 (origin
13808 (method url-fetch)
13809 (uri "https://registry.npmjs.org/structured-source/-/structured-source-3.0.2.tgz")
13810 (sha256
13811 (base32
13812 "1m6kmhbdccff9gcg355cbclbi2nhhqmh1ahacwa1wgfzawg3vplr"))))
13813 (build-system node-build-system)
13814 (arguments
13815 `(#:tests?
13816 #f
13817 #:phases
13818 (modify-phases
13819 %standard-phases
13820 (delete 'configure)
13821 (delete 'build))))
13822 (inputs
13823 `(("node-boundary" ,node-boundary-1.0.1)))
13824 (home-page
13825 "https://github.com/Constellation/structured-source")
13826 (synopsis
13827 "Provides StructuredSource and functionality for converting range and loc vice versa.")
13828 (description
13829 "Provides StructuredSource and functionality for converting range and loc vice versa.")
13830 (license (license:non-copyleft "unknown"))))
13831
13832(define-public node-concat-stream-2.0.0
13833 (package
13834 (name "node-concat-stream")
13835 (version "2.0.0")
13836 (source
13837 (origin
13838 (method url-fetch)
13839 (uri "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz")
13840 (sha256
13841 (base32
13842 "030m3v08q6mfh4vsdv5jc4w5c4q09il5lgw6mhaij8p0gix9jm6c"))))
13843 (build-system node-build-system)
13844 (arguments
13845 `(#:tests?
13846 #f
13847 #:phases
13848 (modify-phases
13849 %standard-phases
13850 (delete 'configure)
13851 (delete 'build))))
13852 (inputs
13853 `(("node-typedarray" ,node-typedarray-0.0.6)
13854 ("node-readable-stream"
13855 ,node-readable-stream-3.6.0)
13856 ("node-inherits" ,node-inherits-2.0.4)
13857 ("node-buffer-from" ,node-buffer-from-1.1.1)))
13858 (home-page
13859 "https://github.com/maxogden/concat-stream#readme")
13860 (synopsis
13861 "writable stream that concatenates strings or binary data and calls a callback with the result")
13862 (description
13863 "writable stream that concatenates strings or binary data and calls a callback with the result")
13864 (license license:expat)))
13865
13866(define-public node-sentence-splitter-3.2.0
13867 (package
13868 (name "node-sentence-splitter")
13869 (version "3.2.0")
13870 (source
13871 (origin
13872 (method url-fetch)
13873 (uri "https://registry.npmjs.org/sentence-splitter/-/sentence-splitter-3.2.0.tgz")
13874 (sha256
13875 (base32
13876 "01m627pb2pxq67j66pfm5715mpvhx1g03c6b8hfj7ij7dip2cp3b"))))
13877 (build-system node-build-system)
13878 (arguments
13879 `(#:tests?
13880 #f
13881 #:phases
13882 (modify-phases
13883 %standard-phases
13884 (delete 'configure)
13885 (delete 'build))))
13886 (inputs
13887 `(("node-structured-source"
13888 ,node-structured-source-3.0.2)
13889 ("node-object-values" ,node-object-values-1.1.2)
13890 ("node-concat-stream" ,node-concat-stream-2.0.0)
13891 ("node-textlint-ast-node-types"
13892 ,node-textlint-ast-node-types-4.4.1)))
13893 (home-page
13894 "https://github.com/azu/sentence-splitter")
13895 (synopsis
13896 "split {japanese, english} text into sentences.")
13897 (description
13898 "split {japanese, english} text into sentences.")
13899 (license license:expat)))
13900
13901(define-public node-thenby-1.3.4
13902 (package
13903 (name "node-thenby")
13904 (version "1.3.4")
13905 (source
13906 (origin
13907 (method url-fetch)
13908 (uri "https://registry.npmjs.org/thenby/-/thenby-1.3.4.tgz")
13909 (sha256
13910 (base32
13911 "0n4gw01z6snr70gcssazh0ll0g21wmplykdfvd5n8vinnnsp616p"))))
13912 (build-system node-build-system)
13913 (arguments
13914 `(#:tests?
13915 #f
13916 #:phases
13917 (modify-phases
13918 %standard-phases
13919 (delete 'configure)
13920 (delete 'build))))
13921 (home-page "https://github.com/Teun/thenBy.js")
13922 (synopsis
13923 "Micro library for sorting arrays using the firstBy().thenBy().thenBy() syntax")
13924 (description
13925 "Micro library for sorting arrays using the firstBy().thenBy().thenBy() syntax")
13926 (license license:asl2.0)))
13927
13928(define-public node-tlite-0.1.9
13929 (package
13930 (name "node-tlite")
13931 (version "0.1.9")
13932 (source
13933 (origin
13934 (method url-fetch)
13935 (uri "https://registry.npmjs.org/tlite/-/tlite-0.1.9.tgz")
13936 (sha256
13937 (base32
13938 "1n84qafxyf1ph6d74mc2c51pncj9rz8h7ijknqbnfsjxs77svzl3"))))
13939 (build-system node-build-system)
13940 (arguments
13941 `(#:tests?
13942 #f
13943 #:phases
13944 (modify-phases
13945 %standard-phases
13946 (delete 'configure)
13947 (delete 'build))))
13948 (home-page
13949 "https://github.com/chrisdavies/tlite")
13950 (synopsis "Tiny tooltip utility")
13951 (description "Tiny tooltip utility")
13952 (license license:expat)))
13953
13954(define-public node-typescript-3.8.3
13955 (package
13956 (name "node-typescript")
13957 (version "3.8.3")
13958 (source
13959 (origin
13960 (method url-fetch)
13961 (uri "https://registry.npmjs.org/typescript/-/typescript-3.8.3.tgz")
13962 (sha256
13963 (base32
13964 "11vv2h8lsja6vf9kvpm45ayswsw08zvydgk4hq97nrqaqlqhwf6p"))))
13965 (build-system node-build-system)
13966 (arguments
13967 `(#:tests?
13968 #f
13969 #:phases
13970 (modify-phases
13971 %standard-phases
13972 (delete 'configure)
13973 (delete 'build))))
13974 (home-page "https://www.typescriptlang.org/")
13975 (synopsis
13976 "TypeScript is a language for application scale JavaScript development")
13977 (description
13978 "TypeScript is a language for application scale JavaScript development")
13979 (license license:asl2.0)))
13980
13981(define-public node-zenscroll-4.0.2
13982 (package
13983 (name "node-zenscroll")
13984 (version "4.0.2")
13985 (source
13986 (origin
13987 (method url-fetch)
13988 (uri "https://registry.npmjs.org/zenscroll/-/zenscroll-4.0.2.tgz")
13989 (sha256
13990 (base32
13991 "14626z9wqrc0b2vm7f6q0irdb4zxqxs0rbg3l626kqhfzx7dy8kr"))))
13992 (build-system node-build-system)
13993 (arguments
13994 `(#:tests?
13995 #f
13996 #:phases
13997 (modify-phases
13998 %standard-phases
13999 (delete 'configure)
14000 (delete 'build))))
14001 (home-page
14002 "https://zengabor.github.io/zenscroll/")
14003 (synopsis
14004 "A module to smooth-scroll web pages and scrollable elements (like DIVs)")
14005 (description
14006 "A module to smooth-scroll web pages and scrollable elements (like DIVs)")
14007 (license license:unlicense)))
14008
14009(define-public node-prosemirror-history-1.1.3
14010 (package
14011 (name "node-prosemirror-history")
14012 (version "1.1.3")
14013 (source
14014 (origin
14015 (method url-fetch)
14016 (uri "https://registry.npmjs.org/prosemirror-history/-/prosemirror-history-1.1.3.tgz")
14017 (sha256
14018 (base32
14019 "15911imzm3gx6xq7fc1pzxd1ylghb4b7blpm19ryaayv2msmarzi"))))
14020 (build-system node-build-system)
14021 (arguments
14022 `(#:tests?
14023 #f
14024 #:phases
14025 (modify-phases
14026 %standard-phases
14027 (delete 'configure)
14028 (delete 'build))))
14029 (inputs
14030 `(("node-rope-sequence" ,node-rope-sequence-1.3.2)
14031 ("node-prosemirror-transform"
14032 ,node-prosemirror-transform-1.2.11)
14033 ("node-prosemirror-state"
14034 ,node-prosemirror-state-1.3.4)))
14035 (home-page
14036 "https://github.com/prosemirror/prosemirror-history#readme")
14037 (synopsis "Undo history for ProseMirror")
14038 (description "Undo history for ProseMirror")
14039 (license license:expat)))
14040
14041(define-public node-rope-sequence-1.3.2
14042 (package 15627 (package
14043 (name "node-rope-sequence") 15628 (name "node-fuse-box")
14044 (version "1.3.2") 15629 (version "3.7.1")
14045 (source 15630 (source (origin
14046 (origin 15631 (method url-fetch)
14047 (method url-fetch) 15632 (uri "https://registry.npmjs.org/fuse-box/-/fuse-box-3.7.1.tgz")
14048 (uri "https://registry.npmjs.org/rope-sequence/-/rope-sequence-1.3.2.tgz") 15633 (sha256
14049 (sha256 15634 (base32
14050 (base32 15635 "0rn9i8a9rxbhrzaf8w6fg2s8kjgps45vl58f2q9ih8bvag0ixj7h"))))
14051 "108il3s68x9jb8c6pv2767gkjw27b0rnzliz9610dzgclsrcms4d")))) 15636 (build-system node-build-system)
14052 (build-system node-build-system) 15637 (arguments
14053 (arguments 15638 '(#:tests? #f
14054 `(#:tests? 15639 #:phases (modify-phases %standard-phases
14055 #f 15640 (delete 'build)
14056 #:phases 15641 (add-after 'patch-dependencies 'delete-dev-dependencies
14057 (modify-phases 15642 (lambda _
14058 %standard-phases 15643 (delete-dependencies '("@babel/core" "@babel/preset-env"
14059 (delete 'configure) 15644 "@types/node"
14060 (delete 'build)))) 15645 "@types/styled-components"
14061 (home-page 15646 "babel-core"
14062 "https://github.com/marijnh/rope-sequence#readme") 15647 "babel-generator"
14063 (synopsis "Rope-based persistent sequence type") 15648 "babel-plugin-transform-es2015-modules-commonjs"
14064 (description 15649 "babel-preset-latest"
14065 "Rope-based persistent sequence type") 15650 "babylon"
15651 "buble"
15652 "cheerio"
15653 "coffee-script"
15654 "commitizen"
15655 "consolidate"
15656 "conventional-changelog-cli"
15657 "cross-env"
15658 "cz-conventional-changelog"
15659 "fuse-box"
15660 "fuse-box-test-using-old-version"
15661 "fuse-box-testcase1"
15662 "fuse-box-testcase3"
15663 "fuse-test-runner"
15664 "gulp"
15665 "gulp-bump"
15666 "gulp-clean"
15667 "gulp-concat"
15668 "gulp-header"
15669 "gulp-rename"
15670 "gulp-replace"
15671 "gulp-sourcemaps"
15672 "gulp-typescript"
15673 "gulp-uglify"
15674 "gulp-wrap"
15675 "homedir"
15676 "husky"
15677 "jsdom"
15678 "less"
15679 "marked"
15680 "node-sass"
15681 "npm-run-all"
15682 "postcss-selector-parser"
15683 "prettier"
15684 "pug"
15685 "react"
15686 "react-dom"
15687 "reflect-metadata"
15688 "run-sequence"
15689 "should"
15690 "styled-components"
15691 "stylus"
15692 "terser"
15693 "typescript"
15694 "typescript-plugin-styled-components"
15695 "uglify-es"
15696 "uglify-js"
15697 "validate-commit-msg"
15698 "vue"
15699 "vue-class-component"
15700 "vue-hot-reload-api"
15701 "vue-server-renderer"
15702 "vue-template-compiler"
15703 "vue-template-es2015-compiler"
15704 "wires-reactive")))))))
15705 (inputs `(("node-ws" ,node-ws-1.1.5)
15706 ("node-watch" ,node-watch-1.0.2)
15707 ("node-tslib" ,node-tslib-1.14.1)
15708 ("node-sourcemap-blender" ,node-sourcemap-blender-1.0.5)
15709 ("node-stream-browserify" ,node-stream-browserify-2.0.2)
15710 ("node-source-map" ,node-source-map-0.7.4)
15711 ("node-shorthash" ,node-shorthash-0.0.2)
15712 ("node-request" ,node-request-2.88.2)
15713 ("node-regexpu-core" ,node-regexpu-core-4.8.0)
15714 ("node-realm-utils" ,node-realm-utils-1.0.9)
15715 ("node-prettysize" ,node-prettysize-0.0.3)
15716 ("node-pretty-time" ,node-pretty-time-0.2.0)
15717 ("node-postcss" ,node-postcss-6.0.23)
15718 ("node-mustache" ,node-mustache-2.3.2)
15719 ("node-lego-api" ,node-lego-api-1.0.8)
15720 ("node-inquirer" ,node-inquirer-3.3.0)
15721 ("node-ieee754" ,node-ieee754-1.2.1)
15722 ("node-glob" ,node-glob-7.2.3)
15723 ("node-getopts" ,node-getopts-2.3.0)
15724 ("node-fuse-concat-with-sourcemaps" ,node-fuse-concat-with-sourcemaps-1.0.5)
15725 ("node-fs-extra" ,node-fs-extra-7.0.1)
15726 ("node-fliplog" ,node-fliplog-0.3.13)
15727 ("node-express" ,node-express-4.18.2)
15728 ("node-escodegen" ,node-escodegen-1.14.3)
15729 ("node-clean-css" ,node-clean-css-4.2.4)
15730 ("node-chokidar" ,node-chokidar-1.7.0)
15731 ("node-bowser" ,node-bowser-2.11.0)
15732 ("node-base64-js" ,node-base64-js-1.5.1)
15733 ("node-base64-img" ,node-base64-img-1.0.4)
15734 ("node-app-root-path" ,node-app-root-path-2.2.1)
15735 ("node-ansi" ,node-ansi-0.3.1)
15736 ("node-acorn-jsx" ,node-acorn-jsx-4.1.1)
15737 ("node-acorn" ,node-acorn-5.7.4)))
15738 (home-page "https://github.com/fuse-box/fuse-box#readme")
15739 (synopsis "Fuse-Box a bundler that does it right")
15740 (description "Fuse-Box a bundler that does it right")
14066 (license license:expat))) 15741 (license license:expat)))
14067 15742
diff --git a/guix-science/packages/rstudio.scm b/guix-science/packages/rstudio.scm
index 59c0658..5734dd1 100644
--- a/guix-science/packages/rstudio.scm
+++ b/guix-science/packages/rstudio.scm
@@ -27,12 +27,14 @@
27 #:use-module ((guix licenses) #:prefix license:) 27 #:use-module ((guix licenses) #:prefix license:)
28 #:use-module (guix packages) 28 #:use-module (guix packages)
29 #:use-module (guix download) 29 #:use-module (guix download)
30 #:use-module (guix gexp)
30 #:use-module (guix git-download) 31 #:use-module (guix git-download)
31 #:use-module (guix utils) 32 #:use-module (guix utils)
32 #:use-module (guix build-system cmake) 33 #:use-module (guix build-system cmake)
33 #:use-module (guix build-system gnu) 34 #:use-module (guix build-system gnu)
34 #:use-module (guix build-system copy) 35 #:use-module (guix build-system copy)
35 #:use-module (guix build-system ant) 36 #:use-module (guix build-system ant)
37 #:use-module (guix build-system node)
36 #:use-module (gnu packages) 38 #:use-module (gnu packages)
37 #:use-module (gnu packages base) 39 #:use-module (gnu packages base)
38 #:use-module (gnu packages boost) 40 #:use-module (gnu packages boost)
@@ -76,45 +78,144 @@ for assistive technology like screen readers.")
76 (home-page "https://www.mathjax.org/") 78 (home-page "https://www.mathjax.org/")
77 (license license:asl2.0))) 79 (license license:asl2.0)))
78 80
81;; Keep this in sync with the rstudio-server package
82(define %rstudio-version "2022.12.0+353")
83(define %rstudio-origin
84 (origin
85 (method git-fetch)
86 (uri (git-reference
87 (url "https://github.com/guix-science/rstudio.git")
88 (commit (string-append "guix-science-v" %rstudio-version))))
89 (file-name (git-file-name "rstudio" %rstudio-version))
90 (sha256
91 (base32
92 "1wcxprvsnvxp7dcs1wifb37n9g0y585ny7pj8ynxp28689485mf5"))
93 (modules '((guix build utils)))
94 (snippet
95 '(for-each delete-file-recursively
96 ;; de-blob: windows tools
97 '("dependencies/windows/tools"
98 ;; auto-generated files
99 "src/cpp/session/include/session/SessionOptions.gen.hpp"
100 "src/cpp/server/include/server/ServerOptions.gen.hpp")))))
101
102(define-public js-panmirror
103 (package
104 (name "js-panmirror")
105 (version %rstudio-version)
106 (source %rstudio-origin)
107 (build-system node-build-system)
108 (arguments
109 (list
110 #:node node
111 #:phases
112 #~(modify-phases %standard-phases
113 (add-after 'unpack 'chdir
114 (lambda _ (chdir "src/gwt/panmirror/src/editor/")))
115 (add-after 'chdir 'patch-paths
116 (lambda* (#:key inputs #:allow-other-keys)
117 (substitute* "fuse.js"
118 ;; Disable sourceMaps, because fuse-box backtraces if enabled.
119 (("sourceMaps:.*") "")
120 ;; XXX: do not uglify because fuse-box does not have uglify-es
121 (("uglify: \\{ es6: true \\},") "uglify: false,")
122 ;; This path is only used to copy prosemirror
123 (("/opt/rstudio-tools/panmirror/node_modules")
124 (string-append (search-input-directory inputs "/lib/node_modules/prosemirror-dev-tools") "/../"))
125 ;; Replace with current NODE_PATH, since there seems to be no
126 ;; other way to make fuse-box respect that path.
127 ;; (setenv "PROJECT_NODE_MODULES" (getenv "NODE_PATH"))
128 ;; does not work, since that path does not support :-delimited strings
129 (("\"\\./node_modules\"")
130 (string-append "\"" (string-join (string-split (getenv "NODE_PATH") #\:) "\", \"") "\"")))))
131 (delete 'configure)
132 (replace 'build
133 (lambda _
134 ;; Otherwise fuse-box will try to write to /gnu/store/…/.fusebox.
135 (setenv "FUSEBOX_TEMP_FOLDER" "/tmp/")
136 (invoke "node" "fuse" "ide-dev")))
137 (replace 'install
138 (lambda _
139 (with-directory-excursion "../../../www/js"
140 (let ((out (string-append #$output "/share/javascript/panmirror")))
141 (mkdir-p out)
142 (install-file "panmirror/prosemirror-dev-tools.min.js" out)
143 (invoke "esbuild" "panmirror/panmirror.js"
144 "--minify"
145 (string-append "--outfile=" out "/panmirror.js"))))))
146 (delete 'avoid-node-gyp-rebuild))))
147 (native-inputs
148 (list esbuild
149 node-fuse-box-3.7.1
150 ;; Copied to output
151 node-prosemirror-dev-tools-2.1.1))
152 (inputs
153 (list node-biblatex-csl-converter-2.1.0
154 node-clipboard-2.0.11
155 node-diff-match-patch-1.0.5
156 node-fuse-js-6.6.2
157 node-js-yaml-4.1.0
158 node-lodash-debounce-4.0.8
159 node-lodash-orderby-4.6.0
160 node-lodash-uniqby-4.7.0
161 node-orderedmap-1.1.8
162 ;; We cannot build node-jieba, which node-pinyin depends on. Instead, patch it out.
163 ;;node-pinyin-2.11.2
164 node-prosemirror-changeset-2.2.1
165 node-prosemirror-commands-1.5.2
166 node-prosemirror-dev-tools-2.1.1
167 node-prosemirror-dropcursor-1.8.1
168 node-prosemirror-gapcursor-1.3.2
169 node-prosemirror-history-1.3.2
170 node-prosemirror-inputrules-1.2.1
171 node-prosemirror-keymap-1.2.2
172 node-prosemirror-model-1.19.2
173 node-prosemirror-schema-list-1.3.0
174 node-prosemirror-state-1.4.3
175 node-prosemirror-tables-1.3.2
176 node-prosemirror-transform-1.7.3
177 node-prosemirror-utils-0.9.6
178 node-prosemirror-view-1.31.4
179 node-react-17.0.2
180 node-react-dom-17.0.2
181 node-react-window-1.8.9
182 node-sentence-splitter-3.2.3
183 node-thenby-1.3.4
184 node-tlite-0.1.9
185 node-transliteration-2.3.5
186 node-typescript-3.8.3
187 node-zenscroll-4.0.2))
188 (home-page "https://rstudio.com/products/rstudio/#rstudio-server")
189 (synopsis "Integrated development environment (IDE) for R")
190 (description "RStudio is an integrated development environment (IDE) for the R
191programming language. Some of its features include: Customizable workbench
192with all of the tools required to work with R in one place (console, source,
193plots, workspace, help, history, etc.); syntax highlighting editor with code
194completion; execute code directly from the source editor (line, selection, or
195file); full support for authoring Sweave and TeX documents. RStudio can also
196be run as a server, enabling multiple users to access the RStudio IDE using a
197web browser.")
198 (license license:agpl3)))
199
79(define-public rstudio-server 200(define-public rstudio-server
80 (package 201 (package
81 (name "rstudio-server") 202 (name "rstudio-server")
82 (version "2021.09.3+396") 203 (version %rstudio-version)
83 (source (origin 204 (source %rstudio-origin)
84 (method git-fetch)
85 (uri (git-reference
86 (url "https://github.com/rstudio/rstudio.git")
87 (commit (string-append "v" version))))
88 (file-name (git-file-name name version))
89 (sha256
90 (base32
91 "1kn00pd26cl4avykrgrxjq05v45sah0d3i45s1c1hzhhs5a1wgad"))
92 (patches
93 (search-patches "rstudio-server-2021.09.0+351-unbundle.patch"
94 "rstudio-server-1.4.1103-soci-searchpath.patch"))
95 (modules '((guix build utils)))
96 (snippet
97 '(begin
98 (for-each delete-file-recursively
99 ;; de-blob: windows tools
100 '("dependencies/windows/tools"
101 ;; auto-generated files
102 "src/cpp/session/include/session/SessionOptions.gen.hpp"
103 "src/cpp/server/include/server/ServerOptions.gen.hpp"))
104 #t))))
105 (build-system cmake-build-system) 205 (build-system cmake-build-system)
106 (arguments 206 (arguments
107 `(#:out-of-source? #f ; required by 'make-writable 207 `(#:out-of-source? #f ; required by 'make-writable
108 #:configure-flags 208 #:configure-flags
109 (list 209 (list
110 "-DRSTUDIO_TARGET=Server" 210 "-DRSTUDIO_TARGET=Server"
111 "-DCMAKE_BUILD_TYPE=Release" 211 "-DCMAKE_BUILD_TYPE=Release"
112 "-DRSTUDIO_USE_SYSTEM_YAML_CPP=1" 212 "-DRSTUDIO_USE_SYSTEM_YAML_CPP=1"
113 "-DRSTUDIO_USE_SYSTEM_BOOST=1" 213 "-DRSTUDIO_USE_SYSTEM_BOOST=1"
114 "-DRSTUDIO_USE_SYSTEM_SOCI=1" 214 "-DRSTUDIO_USE_SYSTEM_SOCI=1"
115 ;; auto-detection seems to be broken with boost 1.72 215 "-DQUARTO_ENABLED=0"
116 "-DRSTUDIO_BOOST_SIGNALS_VERSION=2") 216 ;; auto-detection seems to be broken with boost 1.72
117 #:tests? #f ; no tests exist 217 "-DRSTUDIO_BOOST_SIGNALS_VERSION=2")
218 #:tests? #f ; no tests exist
118 #:modules ((guix build cmake-build-system) 219 #:modules ((guix build cmake-build-system)
119 (guix build utils) 220 (guix build utils)
120 (ice-9 match)) 221 (ice-9 match))
@@ -124,8 +225,7 @@ for assistive technology like screen readers.")
124 (lambda* (#:key inputs native-inputs #:allow-other-keys) 225 (lambda* (#:key inputs native-inputs #:allow-other-keys)
125 (let ((dict-dir "dependencies/dictionaries")) 226 (let ((dict-dir "dependencies/dictionaries"))
126 (mkdir dict-dir) 227 (mkdir dict-dir)
127 (invoke "unzip" "-qd" dict-dir (assoc-ref inputs "dict-source-tarball"))) 228 (invoke "unzip" "-qd" dict-dir (assoc-ref inputs "dict-source-tarball")))))
128 #t))
129 ;; change the default paths for mathjax and pandoc and a hardcoded call to `which` 229 ;; change the default paths for mathjax and pandoc and a hardcoded call to `which`
130 (add-after 'unpack 'patch-paths 230 (add-after 'unpack 'patch-paths
131 (lambda* (#:key inputs #:allow-other-keys) 231 (lambda* (#:key inputs #:allow-other-keys)
@@ -156,25 +256,7 @@ for assistive technology like screen readers.")
156 (("\"ssh-add") (string-append "\"" (assoc-ref inputs "openssh") "/bin/ssh-add")) 256 (("\"ssh-add") (string-append "\"" (assoc-ref inputs "openssh") "/bin/ssh-add"))
157 (("\"ssh-agent") (string-append "\"" (assoc-ref inputs "openssh") "/bin/ssh-agent"))) 257 (("\"ssh-agent") (string-append "\"" (assoc-ref inputs "openssh") "/bin/ssh-agent")))
158 (substitute* "src/cpp/session/modules/SessionSVN.cpp" 258 (substitute* "src/cpp/session/modules/SessionSVN.cpp"
159 (("\"patch\"") (string-append "\"" (assoc-ref inputs "patch") "/bin/patch\""))) 259 (("\"patch\"") (string-append "\"" (assoc-ref inputs "patch") "/bin/patch\"")))))
160 (substitute* "src/gwt/build.xml"
161 ;; Fix path to node binary
162 (("\"[^\"]+/bin/node\"")
163 (string-append "\"" (assoc-ref inputs "node") "/bin/node\""))
164 ;; For some reason this interferes with Guix’s NODE_PATH, so
165 ;; remove it.
166 (("<env key=\"NODE_PATH\" path=\"[^\"]+\"/>") ""))
167 (substitute* "src/gwt/panmirror/src/editor/fuse.js"
168 ;; This path is only used to copy prosemirror
169 (("/opt/rstudio-tools/panmirror/node_modules")
170 (string-append (assoc-ref inputs "node-prosemirror-dev-tools") "/lib/node_modules"))
171 ;; Replace with current NODE_PATH, since there seems to be no
172 ;; other way to make fuse-box respect that path.
173 ;; (setenv "PROJECT_NODE_MODULES" (getenv "NODE_PATH"))
174 ;; does not work, since that path does not support :-delimited strings
175 (("\"\\./node_modules\"")
176 (string-append "\"" (string-join (string-split (getenv "NODE_PATH") #\:) "\", \"") "\"")))
177 #t))
178 (add-after 'unpack 'set-environment-variables 260 (add-after 'unpack 'set-environment-variables
179 (lambda* (#:key inputs #:allow-other-keys) 261 (lambda* (#:key inputs #:allow-other-keys)
180 (setenv "JAVA_HOME" (assoc-ref inputs "jdk")) 262 (setenv "JAVA_HOME" (assoc-ref inputs "jdk"))
@@ -185,10 +267,7 @@ for assistive technology like screen readers.")
185 (setenv "RSTUDIO_VERSION_MINOR" minor) 267 (setenv "RSTUDIO_VERSION_MINOR" minor)
186 (setenv "RSTUDIO_VERSION_PATCH" patch) 268 (setenv "RSTUDIO_VERSION_PATCH" patch)
187 (setenv "RSTUDIO_VERSION_SUFFIX" (string-append "+" suffix)))) 269 (setenv "RSTUDIO_VERSION_SUFFIX" (string-append "+" suffix))))
188 (setenv "PACKAGE_OS" "GNU Guix") 270 (setenv "PACKAGE_OS" "GNU Guix")))
189 ;; Otherwise fuse-box will try to write to /gnu/store/…/.fusebox.
190 (setenv "FUSEBOX_TEMP_FOLDER" "/tmp/")
191 #t))
192 ;; Must be run after patch-source-shebangs, which changes 271 ;; Must be run after patch-source-shebangs, which changes
193 ;; report-option.sh’s interpreter line. 272 ;; report-option.sh’s interpreter line.
194 (add-before 'configure 'generate-server-options 273 (add-before 'configure 'generate-server-options
@@ -196,24 +275,25 @@ for assistive technology like screen readers.")
196 ;; Generate *.gen.hpp files deleted by source snippet. 275 ;; Generate *.gen.hpp files deleted by source snippet.
197 (with-directory-excursion "src/cpp" 276 (with-directory-excursion "src/cpp"
198 (invoke "./generate-options.R")))) 277 (invoke "./generate-options.R"))))
199 (add-before 'install 'make-writable 278 (add-after 'unpack 'prepare-panmirror
200 (lambda _ 279 (lambda* (#:key inputs #:allow-other-keys)
201 ;; This file is copied with permission bits from the store during 280 (copy-recursively (string-append (assoc-ref inputs "js-panmirror")
202 ;; 'build and overwriting fails during 'install if not 281 "/share/javascript/panmirror")
203 ;; writable. 282 "src/gwt/www/js/")
204 (make-file-writable "src/gwt/www/js/panmirror/prosemirror-dev-tools.min.js") 283 (for-each make-file-writable
205 #t))))) 284 (find-files "src/gwt/www/js/panmirror"))
285 ;; Don't build panmirror. We already got it.
286 (substitute* "src/gwt/build.xml"
287 (("target name=\"panmirror\"" m)
288 (string-append m " if=\"false\""))))))))
206 (native-inputs 289 (native-inputs
207 `(("unzip" ,unzip) 290 `(("unzip" ,unzip)
208 ("catch2" ,catch2) 291 ("catch2" ,catch2)
209 ;; gwt-components are built using ant 292 ;; gwt-components are built using ant
210 ("ant" ,ant) 293 ("ant" ,ant)
211 ("jdk" ,openjdk11 "jdk") 294 ("jdk" ,openjdk11 "jdk")
212 ;; For building panmirror. XXX: Maybe put panmirror into its own package?
213 ("node" ,node)
214 ("node-fuse-box" ,node-fuse-box-3.7.1)
215 ;; Copied to output 295 ;; Copied to output
216 ("node-prosemirror-dev-tools" ,node-prosemirror-dev-tools-2.1.1) 296 ("js-panmirror" ,js-panmirror)
217 ;; For src/cpp/generate-options.R 297 ;; For src/cpp/generate-options.R
218 ("r-jsonlite" ,r-jsonlite) 298 ("r-jsonlite" ,r-jsonlite)
219 ("r-stringi" ,r-stringi) 299 ("r-stringi" ,r-stringi)
@@ -232,7 +312,7 @@ for assistive technology like screen readers.")
232 ("pandoc" ,pandoc) 312 ("pandoc" ,pandoc)
233 ("which" ,which) 313 ("which" ,which)
234 ("mathjax" ,mathjax) ; XXX: not sure this is the correct version, but 314 ("mathjax" ,mathjax) ; XXX: not sure this is the correct version, but
235 ; any 2.7 patch release should work, right? 315 ; any 2.7 patch release should work, right?
236 ;; for `env` 316 ;; for `env`
237 ("coreutils" ,coreutils) 317 ("coreutils" ,coreutils)
238 ;; File panel -> More -> Export 318 ;; File panel -> More -> Export
@@ -249,44 +329,6 @@ for assistive technology like screen readers.")
249 ("patch" ,patch) 329 ("patch" ,patch)
250 ;; For `ssh-add`/`ssh-agent` 330 ;; For `ssh-add`/`ssh-agent`
251 ("openssh" ,openssh) 331 ("openssh" ,openssh)
252 ;; For panmirror.
253 ("node-biblatex-csl-converter-1.9.5" ,node-biblatex-csl-converter-1.9.5)
254 ("node-clipboard-2.0.6" ,node-clipboard-2.0.6)
255 ("node-diff-match-patch-1.0.5" ,node-diff-match-patch-1.0.5)
256 ("node-fuse-js-6.4.6" ,node-fuse-js-6.4.6)
257 ("node-js-yaml-3.14.1" ,node-js-yaml-3.14.1)
258 ("node-lodash-debounce-3.1.1" ,node-lodash-debounce-3.1.1)
259 ("node-lodash-debounce-4.0.8" ,node-lodash-debounce-4.0.8)
260 ("node-lodash-uniqby-4.7.0" ,node-lodash-uniqby-4.7.0)
261 ("node-orderedmap-1.1.1" ,node-orderedmap-1.1.1)
262 ("node-prosemirror-changeset-2.1.2" ,node-prosemirror-changeset-2.1.2)
263 ("node-prosemirror-commands-1.1.6" ,node-prosemirror-commands-1.1.6)
264 ("node-prosemirror-dev-tools-2.1.1" ,node-prosemirror-dev-tools-2.1.1)
265 ("node-prosemirror-dropcursor-1.3.3" ,node-prosemirror-dropcursor-1.3.3)
266 ("node-prosemirror-gapcursor-1.1.5" ,node-prosemirror-gapcursor-1.1.5)
267 ("node-prosemirror-history-1.1.3" ,node-prosemirror-history-1.1.3)
268 ("node-prosemirror-inputrules-1.1.3" ,node-prosemirror-inputrules-1.1.3)
269 ("node-prosemirror-keymap-1.1.4" ,node-prosemirror-keymap-1.1.4)
270 ("node-prosemirror-model-1.13.3" ,node-prosemirror-model-1.13.3)
271 ("node-prosemirror-schema-list-1.1.4" ,node-prosemirror-schema-list-1.1.4)
272 ("node-prosemirror-state-1.3.4" ,node-prosemirror-state-1.3.4)
273 ("node-prosemirror-tables-1.1.1" ,node-prosemirror-tables-1.1.1)
274 ("node-prosemirror-transform-1.2.11" ,node-prosemirror-transform-1.2.11)
275 ("node-prosemirror-utils-0.9.6" ,node-prosemirror-utils-0.9.6)
276 ("node-prosemirror-view-1.17.6" ,node-prosemirror-view-1.17.6)
277 ("node-react-16.14.0" ,node-react-16.14.0)
278 ("node-react-base16-styling-0.5.3" ,node-react-base16-styling-0.5.3)
279 ("node-react-dock-0.2.4" ,node-react-dock-0.2.4)
280 ("node-react-dom-16.14.0" ,node-react-dom-16.14.0)
281 ("node-react-emotion-9.2.12" ,node-react-emotion-9.2.12)
282 ("node-react-is-16.13.1" ,node-react-is-16.13.1)
283 ("node-react-json-tree-0.11.2" ,node-react-json-tree-0.11.2)
284 ("node-react-window-1.8.6" ,node-react-window-1.8.6)
285 ("node-sentence-splitter-3.2.0" ,node-sentence-splitter-3.2.0)
286 ("node-thenby-1.3.4" ,node-thenby-1.3.4)
287 ("node-tlite-0.1.9" ,node-tlite-0.1.9)
288 ("node-typescript-3.8.3" ,node-typescript-3.8.3)
289 ("node-zenscroll-4.0.2" ,node-zenscroll-4.0.2)
290 ;; External resources. 332 ;; External resources.
291 ("dict-source-tarball" 333 ("dict-source-tarball"
292 ,(origin 334 ,(origin
@@ -341,6 +383,7 @@ user's @file{~/.local/share/rstudio/r-versions}.")))
341 "-DRSTUDIO_USE_SYSTEM_YAML_CPP=1" 383 "-DRSTUDIO_USE_SYSTEM_YAML_CPP=1"
342 "-DRSTUDIO_USE_SYSTEM_BOOST=1" 384 "-DRSTUDIO_USE_SYSTEM_BOOST=1"
343 "-DRSTUDIO_USE_SYSTEM_SOCI=1" 385 "-DRSTUDIO_USE_SYSTEM_SOCI=1"
386 "-DQUARTO_ENABLED=0"
344 ;; auto-detection seems to be broken with boost 1.72 387 ;; auto-detection seems to be broken with boost 1.72
345 "-DRSTUDIO_BOOST_SIGNALS_VERSION=2" 388 "-DRSTUDIO_BOOST_SIGNALS_VERSION=2"
346 (string-append "-DQT_QMAKE_EXECUTABLE=" 389 (string-append "-DQT_QMAKE_EXECUTABLE="
diff --git a/rstudio-server-1.4.1103-soci-searchpath.patch b/rstudio-server-1.4.1103-soci-searchpath.patch
deleted file mode 100644
index 4b5286d..0000000
--- a/rstudio-server-1.4.1103-soci-searchpath.patch
+++ /dev/null
@@ -1,33 +0,0 @@
1From d413e0ba6e5b265cad6c787ab8ddf9660a12923e Mon Sep 17 00:00:00 2001
2From: Lars-Dominik Braun <lars@6xq.net>
3Date: Wed, 10 Feb 2021 09:44:29 +0100
4Subject: [PATCH] Use default library path for soci library
5
6---
7 src/cpp/CMakeLists.txt | 10 +++-------
8 1 file changed, 3 insertions(+), 7 deletions(-)
9
10diff --git a/src/cpp/CMakeLists.txt b/src/cpp/CMakeLists.txt
11index df5499439c..9128963396 100644
12--- a/src/cpp/CMakeLists.txt
13+++ b/src/cpp/CMakeLists.txt
14@@ -405,13 +405,9 @@ endif()
15
16 # find SOCI libraries
17 if(UNIX)
18- set(SOCI_LIBRARY_DIR "${RSTUDIO_TOOLS_SOCI}/build/lib")
19- if(NOT APPLE AND RSTUDIO_USE_SYSTEM_SOCI)
20- set(SOCI_LIBRARY_DIR "/usr/lib")
21- endif()
22- find_library(SOCI_CORE_LIB NAMES "libsoci_core.a" "soci_core" PATHS "${SOCI_LIBRARY_DIR}" NO_DEFAULT_PATH)
23- find_library(SOCI_SQLITE_LIB NAMES "libsoci_sqlite3.a" "soci_sqlite3" PATHS "${SOCI_LIBRARY_DIR}" NO_DEFAULT_PATH)
24- find_library(SOCI_POSTGRESQL_LIB NAMES "libsoci_postgresql.a" "soci_postgresql" PATHS "${SOCI_LIBRARY_DIR}" NO_DEFAULT_PATH)
25+ find_library(SOCI_CORE_LIB "soci_core")
26+ find_library(SOCI_SQLITE_LIB "soci_sqlite3")
27+ find_library(SOCI_POSTGRESQL_LIB "soci_postgresql")
28 find_library(DL_LIB "dl")
29 find_library(SQLITE_LIB "sqlite3")
30 get_filename_component(SQLITE_LIB "${SQLITE_LIB}" REALPATH)
31--
322.26.2
33
diff --git a/rstudio-server-2021.09.0+351-unbundle.patch b/rstudio-server-2021.09.0+351-unbundle.patch
deleted file mode 100644
index 525fef6..0000000
--- a/rstudio-server-2021.09.0+351-unbundle.patch
+++ /dev/null
@@ -1,38 +0,0 @@
1commit 67717d392e1bb6641874ac298a0f9c865da4dc68
2Author: Lars-Dominik Braun <lars@6xq.net>
3Date: Fri Jun 11 11:15:40 2021 +0200
4
5 Unbundle MathJax and Pandoc
6
7diff --git a/src/cpp/session/CMakeLists.txt b/src/cpp/session/CMakeLists.txt
8index a80e62fa84..a19bdc4609 100644
9--- a/src/cpp/session/CMakeLists.txt
10+++ b/src/cpp/session/CMakeLists.txt
11@@ -48,9 +48,7 @@ else()
12 endif()
13
14 # validate our dependencies exist
15-foreach(VAR RSTUDIO_DEPENDENCIES_DICTIONARIES_DIR
16- RSTUDIO_DEPENDENCIES_MATHJAX_DIR
17- RSTUDIO_DEPENDENCIES_PANDOC_DIR)
18+foreach(VAR RSTUDIO_DEPENDENCIES_DICTIONARIES_DIR)
19
20 # validate existence
21 if(NOT EXISTS "${${VAR}}")
22@@ -587,16 +585,6 @@ if(NOT RSTUDIO_SESSION_WIN32 AND NOT RSESSION_ALTERNATE_BUILD)
23 install(DIRECTORY "${RSTUDIO_DEPENDENCIES_DICTIONARIES_DIR}"
24 DESTINATION "${RSTUDIO_INSTALL_SUPPORTING}/resources")
25
26- # install mathjax for local html preview
27- install(DIRECTORY "${RSTUDIO_DEPENDENCIES_MATHJAX_DIR}"
28- DESTINATION "${RSTUDIO_INSTALL_SUPPORTING}/resources")
29-
30- # install pandoc
31- file(GLOB PANDOC_FILES "${RSTUDIO_DEPENDENCIES_PANDOC_DIR}/pandoc*")
32- install(FILES ${PANDOC_FILES}
33- PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
34- DESTINATION "${RSTUDIO_INSTALL_BIN}/pandoc")
35-
36 # install embedded packages
37 foreach(PKG ${RSTUDIO_EMBEDDED_PACKAGES})
38 file(GLOB PKG_FILES "${RSTUDIO_DEPENDENCIES_DIR}/common/${PKG}*.tar.gz")