forked from stackbit/sourcebit-transform-assets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1005 Bytes
/
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
{
"name": "sourcebit-transform-assets",
"version": "0.2.2",
"description": "A Sourcebit plugin for downloading assets",
"main": "index.js",
"scripts": {
"test": "npm run format",
"format": "prettier --write \"./**/*.{js,jsx,md,html}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/stackbithq/sourcebit-transform-assets.git"
},
"keywords": [
"sourcebit",
"headless",
"assets",
"images"
],
"author": "Stackbit",
"license": "MIT",
"bugs": {
"url": "https://github.com/stackbithq/sourcebit-transform-assets/issues"
},
"homepage": "https://github.com/stackbithq/sourcebit-transform-assets#readme",
"devDependencies": {
"husky": "^4.2.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,md,html}": [
"npm run format",
"git add"
]
},
"dependencies": {
"mkdirp": "^1.0.3"
}
}