-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.18 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.18 KB
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": "simplex",
"version": "1.0.0",
"description": "Simple Order Engine",
"main": "index.js",
"author": "Yousuf Jawwad",
"license": "MIT",
"private": true,
"scripts": {
"simulate": "ts-node ./src/simulate.ts",
"docs:html": "typedoc src/ --target ES6 --mode file --out docs",
"docs:publish": "gh-pages -m \"[ci skip] Updates\" -d docs",
"test": "ava-ts"
},
"dependencies": {
"amqp-ts": "^1.4.0",
"amqplib": "^0.5.2",
"cuid": "^2.1.1",
"firebase-admin": "^5.12.1",
"rxjs": "^6.2.1",
"typescript-collections": "^1.3.2"
},
"devDependencies": {
"@types/amqplib": "^0.5.7",
"@types/node": "^10.5.1",
"ava": "^0.25.0",
"ava-ts": "^0.24.6",
"gh-pages": "^1.2.0",
"prettier": "^1.13.7",
"ts-node": "^6.0.0",
"tslint": "^5.10.0",
"tslint-config-airbnb": "^5.9.2",
"typedoc": "^0.11.1",
"typescript": "^2.9.2"
},
"ava": {
"files": [
"src/**/*.spec.ts"
],
"sources": [
"src/**/*.ts"
],
"cache": true,
"concurrency": 5,
"failFast": true,
"failWithoutAssertions": false,
"compileEnhancements": true,
"require": [
"ts-node/register"
]
}
}