-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
85 lines (85 loc) · 1.88 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "firefly-dataexchange",
"version": "1.0.0",
"description": "FireFly Data Exchange",
"main": "index.js",
"scripts": {
"clean": "rimraf ./build",
"copy-swagger": "cp ./src/swagger.yaml ./build",
"build": "npm run clean && tsc && npm run copy-swagger",
"start:dev": "nodemon",
"start": "node build/index.js",
"dev": "ts-node src/index.ts",
"test": "nyc mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/kaleido-io/firefly-dataexchange-https"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"ajv": "^8.11.0",
"axios": "^1.6.8",
"busboy": "^1.5.0",
"express": "^4.17.3",
"form-data": "^4.0.0",
"jsrsasign": "^11.1.0",
"swagger-ui-express": "^4.3.0",
"uuid": "^8.3.2",
"ws": "^8.17.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/bunyan": "^1.8.8",
"@types/busboy": "^1.5.0",
"@types/chai": "^4.3.0",
"@types/express": "^4.17.13",
"@types/jsrsasign": "^10.2.1",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.23",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.4",
"@types/ws": "^8.5.3",
"@types/yamljs": "^0.2.31",
"chai": "^4.3.6",
"mocha": "^9.2.2",
"moment": "^2.29.4",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"sinon": "^13.0.1",
"sinon-chai": "^3.7.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.7.0",
"ts-sinon": "^2.0.2",
"typescript": "^4.6.3"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"coverage",
"test",
"build",
"**/*.d.ts"
],
"reporter": [
"html",
"text-summary"
],
"all": true
},
"mocha": {
"recursive": true,
"extension": [
"ts"
],
"require": [
"ts-node/register",
"source-map-support/register"
]
}
}