-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.16 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
{
"name": "cyclone",
"version": "2.0.0",
"description": "A JavaScript Apache Storm topology implementation.",
"main": "dist/index.js",
"scripts": {
"compile": "babel --optional runtime --compact false --out-dir dist index.js bin/*.js lib/*.js lib/**/*.js scripts/*.js",
"test": "babel-node --optional runtime test/harness.js test/*-test.js",
"prepublish": "npm run compile",
"generate": "babel-node scripts/generate.js"
},
"keywords": [
"apache",
"storm"
],
"author": "Erik Toth <[email protected]>",
"license": "ISC",
"devDependencies": {
"babel": "4.7.8",
"espree": "^1.11.0",
"glob": "^5.0.2",
"tape": "^3.5.0"
},
"dependencies": {
"babel-runtime": "4.7.8",
"debuglog": "^1.0.1",
"fs-extra": "^0.16.5",
"minimist": "^1.1.1",
"thrift": "~0.9.2"
},
"directories": {
"example": "examples",
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/totherik/cyclone.git"
},
"bugs": {
"url": "https://github.com/totherik/cyclone/issues"
},
"homepage": "https://github.com/totherik/cyclone",
"bin": {
"cyclone": "dist/bin/cyclone.js"
}
}