This repository has been archived by the owner on Jun 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 2.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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@asset-pipe/sink-fs",
"version": "0.0.0-development",
"author": "Trygve Lie <[email protected]>",
"description": "Sink for persisting to and reading from the local file system",
"main": "./lib/sink.js",
"repository": {
"type": "git",
"url": "https://github.com/asset-pipe/asset-pipe-sink-fs"
},
"keywords": [
"test"
],
"contributors": [
"Trygve Lie <[email protected]>",
"Trygve Lie (http://www.trygve-lie.com/)",
"Greenkeeper (http://greenkeeper.io/)",
"Sveinung Røsaker (https://github.com/sveisvei)",
"Richard Walker (https://github.com/digitalsadhu)",
"Simen Bekkhus (https://github.com/SimenB)"
],
"bugs": {
"url": "https://github.com/asset-pipe/asset-pipe-sink-fs/issues"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"dependencies": {
"JSONStream": "^1.3.5",
"asset-pipe-common": "1.0.0",
"boom": "^7.3.0",
"mkdirp": "^0.5.1",
"readable-stream": "^3.1.0"
},
"devDependencies": {
"commitizen": "^3.0.5",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.10.0",
"eslint-config-finn": "^3.0.1",
"eslint-config-finn-prettier": "^3.0.2",
"eslint-plugin-import": "^2.14.0",
"husky": "^1.3.0",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3",
"projectz": "^1.7.3",
"semantic-release": "^15.1.4",
"travis-deploy-once": "^5.0.11"
},
"scripts": {
"lint": "eslint .",
"test": "jest --coverage",
"lint:format": "eslint --fix .",
"precommit": "lint-staged",
"cm": "git-cz",
"readme": "projectz compile",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"files": [
"lib"
],
"engines": {
"node": ">=8"
},
"jest": {
"testEnvironment": "node",
"clearMocks": true,
"coverageThreshold": {
"global": {
"branches": 58,
"functions": 75,
"lines": 93,
"statements": 93
}
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"tabWidth": 4,
"overrides": [
{
"files": "*.json",
"options": {
"tabWidth": 2
}
},
{
"files": ".eslintrc",
"options": {
"parser": "json",
"tabWidth": 2
}
}
]
},
"lint-staged": {
"*.js": [
"eslint --fix --config ./.eslintrc",
"git add"
],
"{package.json,README.md,LICENSE.md}": [
"projectz compile",
"git add"
],
"{*.json,*.md,.eslintrc}": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"badges": {
"list": [
"travisci",
"npmversion",
"daviddm",
"daviddmdev"
]
},
"maintainers": []
}