-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
115 lines (114 loc) · 3.47 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@carimus/node-disks",
"version": "0.0.0-development",
"description": "An abstraction for local/remote disks for node inspired by The League of Extraordinary Packages's FlySystem.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "node build.js",
"watch": "yarn run build && npm-watch build",
"prepublishOnly": "yarn run build",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint '{*,{src,docs}/**/*,__{tests,mocks}__/**/*}.{ts,tsx,js,jsx}' || true",
"pretty": "prettier --write '{*,{src,docs}/**/*,__{tests,mocks}__/**/*}.{json,md,yml,ts,tsx,js,jsx}'",
"fixcode": "yarn run pretty",
"semantic-release": "semantic-release",
"release": "yarn run semantic-release",
"release-ci": "node release-ci.js",
"commit": "git-cz"
},
"watch": {
"build": {
"patterns": [
"src"
],
"extensions": [
"ts",
"tsx",
"js",
"jsx"
]
}
},
"repository": "https://github.com/Carimus/node-disks",
"author": "Carimus",
"license": "MIT",
"private": false,
"dependencies": {
"aws-sdk": "^2.431.0",
"fs-extra": "^7.0.1",
"mime": "^2.4.2",
"ramda": "0.25.0",
"stream-to-array": "^2.3.0",
"tmp": "^0.1.0",
"url-join": "^4.0.0",
"verror": "^1.10.0"
},
"peerDependencies": {
"memfs": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@types/fs-extra": "^5.0.5",
"@types/jest": "^24.0.11",
"@types/mime": "^2.0.1",
"@types/ramda": "types/npm-ramda#dist",
"@types/stream-to-array": "^2.3.0",
"@types/tmp": "^0.1.0",
"@types/url-join": "^4.0.0",
"@types/verror": "^1.10.3",
"@typescript-eslint/eslint-plugin": "^1.5.0",
"@typescript-eslint/parser": "^1.5.0",
"commitizen": "^3.0.7",
"cz-conventional-changelog": "2.1.0",
"eslint": "^5.15.3",
"eslint-config-prettier": "^4.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": ">=2.13.0",
"eslint-plugin-jest": "^22.3.0",
"eslint-plugin-node": ">=7.0.0",
"eslint-plugin-promise": ">=4.0.0",
"eslint-plugin-standard": ">=4.0.0",
"husky": "^6.0.0",
"jest": "^24.5.0",
"lint-staged": "^8.1.5",
"memfs": "^2.15.2",
"npm-watch": "^0.6.0",
"prettier": "1.16.4",
"semantic-release": "^17.2.3",
"ts-jest": "^24.0.0",
"typescript": "^3.3.4000"
},
"engines": {
"node": ">=10"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{*,{src,docs}/**/*,__{tests,mocks}__/**/*}.{ts,tsx,js,jsx}": [
"prettier --write",
"eslint",
"git add"
],
"{*,{src,docs}/**/*,__{tests,mocks}__/**/*}.{json,md,yml}": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}