generated from privateOmega/ts-project-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.8 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
{
"name": "stream-archiver",
"version": "1.0.3",
"description": "Generate an archive stream from any number of files on the web with concurrency",
"source": "src/index.js",
"main": "./dist/stream-archiver.umd.js",
"module": "./dist/stream-archiver.esm.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prettier:check": "prettier --check '**/*.{js}'",
"example": "babel-node examples/example.js",
"build": "microbundle --target node",
"dev": "microbundle watch --target node",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/privateOmega/stream-archiver.git"
},
"author": "privateOmega <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/privateOmega/stream-archiver/issues"
},
"homepage": "https://github.com/privateOmega/stream-archiver#readme",
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.13.16",
"@babel/node": "^7.14.5",
"@babel/preset-env": "^7.13.15",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"microbundle": "^0.13.3",
"prettier": "^2.2.1",
"standard-version": "^9.3.0"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"eslint --fix"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@supercharge/promise-pool": "^1.7.0",
"axios": "^0.21.1",
"core-js": "^3.11.0",
"lodash.merge": "^4.6.2"
},
"peerDependencies": {
"archiver": "*"
}
}