This repository has been archived by the owner on Feb 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.82 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@repositive/iris",
"version": "1.0.0-alpha.9",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"iris": "iris.sh"
},
"files": [
"dist",
"iris.sh"
],
"scripts": {
"start": "node dist",
"startDev": "nodemon --watch src/main --watch package.json -e ts,json -q -x 'rm -fr dist && echo \"\\n============\\nCOMPILING...\\n============\\n\\n\" && tsc --outDir dist || return 0 && node dist/main/index.js'",
"compile": "rm -fr dist && tsc",
"lint": "tslint -c tslint.json src/**/*.ts",
"test": "nyc --reporter lcov tape $(find dist -name '*.js' ! -name '*.example.js' ! -name 'cli.js') | tap-spec",
"coverage": "nyc check-coverage --lines 50 --functions 30 --branches 65",
"report-coverage": "cat ./coverage/lcov.info | codecov"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.spec.js",
"**/*.d.ts"
]
},
"author": "Repositive Team",
"license": "LGPL-3.0+",
"keywords": [
"@repositive/iris",
"service"
],
"dependencies": {
"@types/amqplib": "0.5.3",
"@types/ramda": "0.24.0",
"amqplib": "0.5.1",
"bluebird": "3.5.0",
"funfix": "^6.2.2",
"ramda": "0.24.1",
"rxjs": "5.5.6",
"uuid": "3.1.0",
"yargs": "8.0.2"
},
"devDependencies": {
"@repositive/typescript": "1.1.2",
"@types/bluebird": "3.5.5",
"@types/node": "8.0.0",
"@types/proxyquire": "1.3.27",
"@types/sinon": "2.3.1",
"@types/tape": "4.2.30",
"@types/uuid": "3.0.0",
"@types/yargs": "8.0.0",
"codecov": "2.2.0",
"husky": "0.13.4",
"nodemon": "1.11.0",
"nyc": "11.0.2",
"proxyquire": "1.8.0",
"sinon": "2.3.5",
"tap-spec": "4.1.1",
"tape": "4.6.3",
"tslint": "5.4.3",
"typedoc": "0.9.0",
"typescript": "2.5.3"
}
}