-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.46 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.46 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
53
54
55
56
57
58
{
"name": "eip",
"description": "Enterprise Integration Patterns for javascript",
"version": "1.9.0",
"dependencies": {
"log4js": "^6.9.1"
},
"main": "build/lib/index.js",
"typings": "build/lib/index",
"scripts": {
"clean": "rm -rf ./build",
"prebuild": "npm run clean",
"build": "tsc -p .",
"prewatch": "npm run clean",
"watch": "tsc -w -p .",
"prepublishOnly": "npm test",
"pretest": "tslint src/*.ts && npm run build",
"test": "nyc mocha --recursive -R spec build/test",
"posttest": "nyc report --reporter=html --report-dir=coverage/lcov-report"
},
"author": "Nikos Kostoulas <kostoulas@workable.com>",
"contributors": [
"Nikos Dimos <dimos@workable.com>",
"Panos Matzavinos <matzavinos@workable.com>"
],
"license": "MIT",
"engines": {
"node": ">=24"
},
"devDependencies": {
"@types/amqplib": "0.5.1",
"@types/mocha": "^10.0.9",
"@types/node": "^20.0.0",
"@types/node-uuid": "0.0.28",
"@types/should": "8.1.30",
"@types/sinon": "^17.0.0",
"@types/source-map-support": "^0.5.10",
"@types/supertest": "2.0.0",
"@types/uuid": "2.0.29",
"mocha": "^11.3.0",
"nyc": "^17.1.0",
"should": "11.2.0",
"sinon": "^18.0.0",
"source-map-support": "^0.4.5",
"tslint": "^5.11.0",
"typescript": "^4.9.5"
},
"repository": {
"type": "git",
"url": "Workable/eip"
},
"nyc": {
"include": [
"build/lib/**/*.js"
],
"sourceMap": true
}
}