-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 879 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "array-source",
"version": "0.0.4",
"description": "Read arrays as standard WhatWG streams.",
"keywords": [
"binary",
"stream",
"reader"
],
"homepage": "https://github.com/mbostock/array-source",
"license": "BSD-3-Clause",
"author": {
"name": "Mike Bostock",
"url": "https://bost.ocks.org/mike"
},
"main": "dist/array-source.js",
"module": "index.js",
"repository": {
"type": "git",
"url": "http://github.com/mbostock/array-source.git"
},
"scripts": {
"prepublishOnly": "rm -rf dist && mkdir dist && rollup -c --banner \"$(preamble)\" && uglifyjs -b beautify=false,preamble=\"'$(preamble)'\" -o dist/array-source.min.js -c -m -- dist/array-source.js",
"postpublish": "git push && git push --tags"
},
"devDependencies": {
"package-preamble": "0.1",
"rollup": "0.49",
"uglify-js": "3"
}
}