-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 885 Bytes
/
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
{
"name": "nsq-seneca",
"version": "0.0.1",
"description": "Use nsq to connect seneca services.",
"main": "build/main.js",
"scripts": {
"lint": "tslint --exclude src/seneca.d.ts --exclude src/nsqjs.d.ts 'src/**/*.ts'",
"test": "mocha --require ts-node/register 'src/test/**/*.ts'",
"test-build": "mocha 'build/test/**/*.js'",
"tsc": "tsc"
},
"author": "Massimiliano Mantione",
"repository": {
"type": "git",
"url": "https://github.com/massimiliano-mantione/nsq-seneca.git"
},
"license": "MIT",
"dependencies": {
"nsqjs": "^0.7.12",
"seneca": "^3.1.0",
"shortid": "^2.2.6"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"mocha": "^3.1.0",
"ts-node": "^1.3.0",
"tslint": "^3.15.1",
"tslint-config-standard": "^1.3.0",
"typescript": "^2.0.3",
"typings": "^1.4.0"
}
}