-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.03 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.03 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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@wholebuzz/mapreduce",
"version": "0.0.21",
"description": "Communication-free MapReduce for the 99%",
"keywords": [
"mapreduce"
],
"author": "wholebuzz",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/wholebuzz/mapreduce.git"
},
"types": "./dist/index.d.ts",
"scripts": {
"prepublishOnly": "yarn build",
"build": "tsc -b .",
"clean": "tsc -b . --clean",
"start": "node dist/cli.js",
"mapreduce": "node dist/cli.js",
"docs": "typedoc --disableOutputCheck && rm -rf docs/README.md && ./scripts/updateReadmeApiReference.sh",
"test": "jest --runInBand --ci --passWithNoTests --detectOpenHandles --forceExit",
"test:coverage": "jest --runInBand --ci --passWithNoTests --coverage --no-cache",
"badge:coverage": "istanbul-cobertura-badger -v -b coverage",
"lint": "tslint -c tslint.json --project .",
"lint:file": "tslint -c tslint.json",
"fix": "yarn lint --fix",
"format": "yarn run prettier --config .prettierrc.js --write 'src/*.+(ts)' dist/cli.js"
},
"main": "dist/index.js",
"bin": "dist/cli.js",
"files": [
"dist/**/*"
],
"dependencies": {
"dbcp": "^1.4.10",
"level": "^7.0.0",
"line-stream": "^1.0.0",
"parse-key-value-pair": "^1.1.2",
"require-from-string": "^2.0.2",
"subleveldown": "^5.0.1",
"yargs": "^17.2.1"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/level": "^6.0.0",
"@types/node": "^13.13.5",
"@types/subleveldown": "^4.1.1",
"hasha": "^5.2.2",
"istanbul-cobertura-badger": "^1.3.1",
"jest": "^26.6.3",
"prettier": "^2.3.2",
"ts-jest": "^26.5.4",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-microsoft-contrib": "^6.2.0",
"typedoc": "^0.20.35",
"typedoc-plugin-markdown": "3.8.2",
"typescript": "4.2.4",
"typescript-tslint-plugin": "^1.0.1"
},
"nyc": {
"reporter": [
"cobertura",
"json",
"lcov",
"text"
]
}
}