-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.34 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.34 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
{
"name": "lib-workers",
"version": "2.0.0",
"description": "Library for helping with nodejs worker-threads utilization.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MRazvan/lib-workers.git"
},
"bugs": {
"url": "https://github.com/MRazvan/lib-workers/issues"
},
"homepage": "https://github.com/MRazvan/lib-workers#readme",
"scripts": {
"tsc:w": "tsc -w",
"build": "tsc",
"lint:fix": "node ./node_modules/eslint/bin/eslint.js --fix ./src/**/*.ts ./*.ts"
},
"author": "Marinovici Razvan",
"license": "MIT",
"devDependencies": {
"@types/eslint": "^6.1.0",
"@types/lodash": "^4.14.149",
"@types/node": "^12.7.2",
"@types/reflect-metadata": "^0.0.5",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"eslint": "^6.2.1",
"eslint-config-google": "^0.13.0",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "^1.18.2",
"sloc": "^0.2.1",
"typescript": "^3.5.3"
},
"dependencies": {
"get-caller-file": "^2.0.5",
"lib-reflect": "^1.1.1",
"lodash": "^4.17.15"
},
"files": [
"dist/src/**/{*.js,*.d.ts}",
"dist/index.{*.js,*.d.ts}"
]
}