-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.82 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.82 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
{
"name": "@fluvio/client",
"version": "0.15.0",
"description": "Node.js binding for Fluvio distributed stream",
"keywords": [
"fluvio",
"mq",
"stream",
"client"
],
"files": [
"src/index.ts",
"tsconfig.json",
"dist/linux/index.node",
"dist/darwin/index.node"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/infinyon/fluvio-client-node.git"
},
"homepage": "https://fluvio.io",
"author": "team@fluvio.io",
"license": "Apache-2.0",
"scripts": {
"prettier": "npx prettier --write '{src,examples,test,native,demos}/**/*.{ts,js}'",
"prettier:check": "npx prettier --check '{src,examples,test,native,demos}/**/*.{ts,js}'",
"lint": "npx tslint -c tslint.json '{src,examples,test}/**/*.ts'",
"tsc": "npx tsc -p .",
"build:test": "npm run build:ts && npm run build:platform",
"build:ts": "npm run tsc",
"build:platform": "node ./build.js",
"publish:platform": "node ./build.js --release && cd native && npm run publish:platform",
"publish:native": "cd ./native && npm publish --access public",
"postinstall": "npm run build:ts",
"docs": "npx typedoc --out docs ./src/index.ts",
"test": "npm run build:test && npx jest"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.2",
"@types/jest": "^29",
"@types/mocha": "^10.0.1",
"@types/node": "^22.4.2",
"@types/uuid": "^10.0.0",
"jest": "^29",
"prettier": "^3.0.3",
"ts-jest": "^29",
"ts-node": "^10.8.2",
"tslint": "^6.1.3",
"typedoc": "^0.26.2",
"typescript": "^5.0.4",
"uuid": "^11.0.2"
}
}