Last change
on this file since ceaed42 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
1.6 KB
|
Line | |
---|
1 | {
|
---|
2 | "name": "asynckit",
|
---|
3 | "version": "0.4.0",
|
---|
4 | "description": "Minimal async jobs utility library, with streams support",
|
---|
5 | "main": "index.js",
|
---|
6 | "scripts": {
|
---|
7 | "clean": "rimraf coverage",
|
---|
8 | "lint": "eslint *.js lib/*.js test/*.js",
|
---|
9 | "test": "istanbul cover --reporter=json tape -- 'test/test-*.js' | tap-spec",
|
---|
10 | "win-test": "tape test/test-*.js",
|
---|
11 | "browser": "browserify -t browserify-istanbul test/lib/browserify_adjustment.js test/test-*.js | obake --coverage | tap-spec",
|
---|
12 | "report": "istanbul report",
|
---|
13 | "size": "browserify index.js | size-table asynckit",
|
---|
14 | "debug": "tape test/test-*.js"
|
---|
15 | },
|
---|
16 | "pre-commit": [
|
---|
17 | "clean",
|
---|
18 | "lint",
|
---|
19 | "test",
|
---|
20 | "browser",
|
---|
21 | "report",
|
---|
22 | "size"
|
---|
23 | ],
|
---|
24 | "repository": {
|
---|
25 | "type": "git",
|
---|
26 | "url": "git+https://github.com/alexindigo/asynckit.git"
|
---|
27 | },
|
---|
28 | "keywords": [
|
---|
29 | "async",
|
---|
30 | "jobs",
|
---|
31 | "parallel",
|
---|
32 | "serial",
|
---|
33 | "iterator",
|
---|
34 | "array",
|
---|
35 | "object",
|
---|
36 | "stream",
|
---|
37 | "destroy",
|
---|
38 | "terminate",
|
---|
39 | "abort"
|
---|
40 | ],
|
---|
41 | "author": "Alex Indigo <iam@alexindigo.com>",
|
---|
42 | "license": "MIT",
|
---|
43 | "bugs": {
|
---|
44 | "url": "https://github.com/alexindigo/asynckit/issues"
|
---|
45 | },
|
---|
46 | "homepage": "https://github.com/alexindigo/asynckit#readme",
|
---|
47 | "devDependencies": {
|
---|
48 | "browserify": "^13.0.0",
|
---|
49 | "browserify-istanbul": "^2.0.0",
|
---|
50 | "coveralls": "^2.11.9",
|
---|
51 | "eslint": "^2.9.0",
|
---|
52 | "istanbul": "^0.4.3",
|
---|
53 | "obake": "^0.1.2",
|
---|
54 | "phantomjs-prebuilt": "^2.1.7",
|
---|
55 | "pre-commit": "^1.1.3",
|
---|
56 | "reamde": "^1.1.0",
|
---|
57 | "rimraf": "^2.5.2",
|
---|
58 | "size-table": "^0.2.0",
|
---|
59 | "tap-spec": "^4.1.1",
|
---|
60 | "tape": "^4.5.1"
|
---|
61 | },
|
---|
62 | "dependencies": {}
|
---|
63 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.