-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.19 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
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
72
73
74
75
76
77
78
79
80
{
"name": "tar-transform",
"description": "extract, transform and re-pack tarball entries in form of stream",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/es/index.js",
"types": "dist/index.d.ts",
"keywords": [
"tar",
"tarball",
"transform",
"tgz",
"duplex",
"gzip"
],
"author": {
"name": "EqualMa",
"email": "equalma@outlook.com",
"url": "https://github.com/EqualMa"
},
"repository": {
"type": "git",
"url": "https://github.com/EqualMa/tar-transform.git"
},
"runkitExampleFilename": "runkit.js",
"scripts": {
"test": "jest",
"precommit": "lint-staged",
"lint:fix": "eslint --cache --max-warnings 0 --fix",
"ensure-linted": "eslint --max-warnings 0 . --ext=js,ts",
"semantic-release": "semantic-release",
"build": "yarn run clean && yarn run build:lib && yarn run build:types",
"build:lib": "rollup -c",
"build:types": "tsc -p tsconfig.dts.json --outDir dist --declaration --emitDeclarationOnly",
"clean": "rimraf dist"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/register": "^7.8.6",
"@rollup/plugin-typescript": "^4.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^25.1.3",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"builtin-modules": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.7",
"prettier": "1.19.1",
"rimraf": "^3.0.2",
"rollup": "^2.3.4",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-generate-package-json": "^3.2.0",
"rollup-plugin-node-externals": "^2.1.3",
"semantic-release": "^17.0.4",
"ts-jest": "^25.2.1",
"typescript": "^3.7.5"
},
"dependencies": {
"@types/tar-stream": "^2.1.0",
"core-js": "^3.6.5",
"gunzip-maybe": "^1.4.1",
"tar-stream": "^2.1.0"
},
"files": [
"dist"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"version": "1.0.0"
}