-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.69 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.69 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": "@doris.mobi/node-clusterize",
"version": "1.1.27",
"description": "enables the creation of child processes (workers) that run simultaneously and share the same server port",
"main": "dist/index.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"scripts": {
"prebuild": "rimraf ./dist",
"build": "parcel build src/index.ts",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"prerelease": "yarn lint && yarn test && yarn build",
"postrelease": "git push origin main --follow-tags",
"release": "standard-version --no-verify"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@parcel/packager-ts": "2.4.1",
"@parcel/transformer-typescript-types": "2.4.1",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.25",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"parcel": "^2.4.1",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"standard-version": "^9.3.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"repository": "https://github.com/doris-mobi/node-clusterize",
"homepage": "https://github.com/doris-mobi/node-clusterize",
"bugs": {
"url": "https://github.com/doris-mobi/node-clusterize/issues"
},
"author": "vmartins@doris.mobi",
"license": "MIT",
"engines": {
"node": ">= 14"
},
"files": [
"dist"
],
"dependencies": {}
}