-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.58 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"title": "Chainy Core",
"name": "chainy-core",
"version": "1.6.0",
"description": "Perhaps the most awesome way of interacting with data using a chainable API",
"homepage": "https://github.com/chainyjs/chainy-core",
"license": "MIT",
"keywords": [
"flow",
"async",
"sync",
"tasks",
"task",
"taskgroup",
"batch",
"concurrency",
"data",
"pipeline",
"workflow"
],
"badges": {
"list": [
"travisci",
"npmversion",
"npmdownloads",
"daviddm",
"daviddmdev",
"---",
"slackin",
"patreon",
"gratipay",
"flattr",
"paypal",
"bitcoin",
"wishlist"
],
"config": {
"patreonUsername": "bevry",
"gratipayUsername": "bevry",
"flattrUsername": "balupton",
"paypalURL": "https://bevry.me/paypal",
"bitcoinURL": "https://bevry.me/bitcoin",
"wishlistURL": "https://bevry.me/wishlist",
"slackinURL": "https://slack.bevry.me"
}
},
"author": "2014+ Bevry Pty Ltd <[email protected]> (https://bevry.me)",
"maintainers": [
"Benjamin Lupton <[email protected]> (https://balupton.com)"
],
"contributors": [
"Benjamin Lupton <[email protected]> (https://balupton.com)"
],
"bugs": {
"url": "https://github.com/chainyjs/chainy-core/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/chainyjs/chainy-core.git"
},
"engines": {
"node": ">=0.4"
},
"editions": [
{
"description": "Source + ES5 + Require",
"entry": "source/index.js",
"directory": "source",
"syntaxes": [
"javascript",
"es5",
"require"
]
}
],
"main": "source/index.js",
"browser": "source/index.js",
"scripts": {
"setup": "npm install",
"clean": "rm -Rf ./docs",
"compile": "echo 'no compile necessary'",
"meta": "npm run meta:projectz",
"meta:projectz": "projectz compile",
"prepare": "npm run test && npm run meta",
"release": "npm run prepare && npm run release:publish && npm run release:tag && npm run release:push",
"release:publish": "npm publish",
"release:tag": "git tag v$npm_package_version -a",
"release:push": "git push origin master && git push origin --tags",
"pretest": "npm run test:eslint",
"test:eslint": "eslint ./source",
"test": "node --harmony ./source/test.js"
},
"dependencies": {
"csextends": "^1.0.3",
"taskgroup": "^4.3.1 || ^5.0.0"
},
"devDependencies": {
"assert-helpers": "^4.4.0",
"eslint": "^2.11.1",
"joe": "^1.8.0",
"joe-reporter-console": "^1.2.1",
"projectz": "^1.1.5"
}
}