forked from d3/d3-queue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.67 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "d3-queue",
"version": "2.0.3",
"description": "Evaluate asynchronous tasks with configurable concurrency.",
"keywords": [
"d3",
"asynchronous",
"async",
"queue"
],
"homepage": "https://github.com/d3/d3-queue",
"license": "BSD-3-Clause",
"author": {
"name": "Mike Bostock",
"url": "http://bost.ocks.org/mike"
},
"main": "build/d3-queue.js",
"jsnext:main": "index",
"repository": {
"type": "git",
"url": "https://github.com/d3/d3-queue.git"
},
"scripts": {
"pretest": "rm -rf build && mkdir build && json2module package.json > build/package.js && rollup -f umd -n d3_queue -o build/d3-queue.js -- index.js",
"test": "tape 'test/**/*-test.js' && eslint index.js src",
"prepublish": "npm run test && uglifyjs build/d3-queue.js -c -m -o build/d3-queue.min.js",
"postpublish": "VERSION=`node -e 'console.log(require(\"./package.json\").version)'`; git push && git push --tags && cp -v README.md LICENSE build/d3-queue.js ../d3-queue-bower && cd ../d3-queue-bower && git add README.md LICENSE d3-queue.js && git commit -m \"Release $VERSION.\" && git tag -am \"Release $VERSION.\" v${VERSION} && git push && git push --tags && cd ../d3-queue && cp build/d3-queue.js ../d3.github.com/d3-queue.v2.js && cp build/d3-queue.min.js ../d3.github.com/d3-queue.v2.min.js && cd ../d3.github.com && git add d3-queue.v2.js d3-queue.v2.min.js && git commit -m \"d3-queue ${VERSION}\" && git push && cd - && zip -j build/d3-queue.zip -- LICENSE README.md build/d3-queue.js build/d3-queue.min.js"
},
"devDependencies": {
"json2module": "0.0",
"rollup": "0.25",
"seedrandom": "2",
"tape": "4",
"uglify-js": "2"
}
}