-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 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
{
"name": "phyllode",
"version": "1.0.0",
"description": "Translates service-packets into the CactusBot format for use by the handler system",
"main": "dist/index.js",
"scripts": {
"test": "tsc && TEST=true nyc ava",
"report": "nyc report --reporter=html",
"start": "tsc && node dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CactusDev/phyllode.git"
},
"author": "CactusDev",
"license": "MIT",
"bugs": {
"url": "https://github.com/CactusDev/phyllode/issues"
},
"homepage": "https://github.com/CactusDev/phyllode#readme",
"dependencies": {
"@types/bluebird": "^3.5.26",
"amqp-ts": "^1.4.0",
"axios": "^0.16.2",
"cactus-stl": "^1.0.10",
"config": "^1.31.0",
"dependy": "^1.0.2",
"is-url": "^1.2.4",
"js-yaml": "^3.13.0",
"reflect-annotations": "^2.4.1",
"reflect-metadata": "0.1.8",
"rxjs": "^5.5.12"
},
"devDependencies": {
"@types/config": "0.0.32",
"@types/node": "^8.10.45",
"@types/ws": "^3.2.1",
"ava": "^1.4.1",
"axios-mock-adapter": "^1.16.0",
"coveralls": "^3.0.3",
"istanbul": "^0.4.5",
"mocha": "^6.0.2",
"nyc": "^13.3.0",
"tslint": "^5.14.0",
"typescript": "^2.9.2"
},
"ava": {
"files": [
"./dist/tests/*.js"
]
}
}