-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.3 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
{
"name": "gustav",
"version": "0.7.2",
"description": "Framework for building realtime processing flows in Node.js",
"main": "dist/index.js",
"scripts": {
"build": "tsd install && tsc",
"build:watch": "tsc --watch",
"lint": "tslint *.ts && tslint external/*.ts && tslint test/*.ts",
"prepublish": "npm run build",
"snyk": "snyk test",
"test": "mocha dist/test",
"test:int": "INTE=true npm run test -s",
"test:watch": "mocha --watch dist/test"
},
"author": "Randall Koutnik",
"typings": "dist/index",
"bugs": {
"url": "https://github.com/SomeKittens/gustav/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:SomeKittens/gustav.git"
},
"dependencies": {
"@reactivex/rxjs": "5.0.0-beta.0",
"amqplib": "^0.4.0",
"kafka-node": "^0.3.1",
"node-uuid": "1.4.7",
"redis": "2.5.x",
"tail": "1.1.x"
},
"devDependencies": {
"chai": "~3.5.0",
"ghooks": "1.2.x",
"mocha": "~2.4.4",
"snyk": "1.13.x",
"tsd": "~0.6.5",
"tslint": "3.7.x",
"typescript": "1.8.x",
"validate-commit-msg": "~2.6.0"
},
"engines": {
"node": ">=4.x.x"
},
"config": {
"ghooks": {
"pre-commit": "npm test -s && npm run lint -s",
"commit-msg": "validate-commit-msg"
}
}
}