forked from chrvadala/kafka-test-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1.07 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
{
"name": "kafka-test-helper",
"version": "1.0.0",
"main": "src/index.js",
"repository": "https://github.com/chrvadala/kafka-test-helper.git",
"author": "Christian Vadalà <[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"start": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test": "npm run test:standard && npm run test:waitForKafkaReady && npm run test:coverage",
"test:jest": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"test:standard": "standard",
"test:waitForKafkaReady": "node ./waitForKafkaReady.js",
"docs:api": "jsdoc2md --template docs/templates/api.hbs --example-lang js --heading-depth 2 src/*.js > docs/api.md",
"build": "npm run docs:api",
"test:examples": "NODE_OPTIONS=--experimental-vm-modules jest examples/*"
},
"devDependencies": {
"jest": "^27.2.1",
"jsdoc-to-markdown": "^7.1.0",
"kafkajs": "^1.15.0",
"standard": "^16.0.4"
},
"peerDependencies": {
"kafkajs": "^1.15.0"
}
}