-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.51 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.51 KB
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
{
"name": "sourcebit",
"version": "0.9.0",
"description": "Sourcebit helps developers build data-driven JAMstack sites by pulling data from any third-party resource",
"main": "index.js",
"bin": {
"sourcebit": "./bin/sourcebit.js"
},
"dependencies": {
"commander": "^4.1.1",
"debug": "^4.1.1",
"deep-diff": "^1.0.2",
"dotenv": "^8.2.0",
"lodash": "^4.17.15",
"mkdirp": "^1.0.3",
"ora": "^4.0.3",
"yaml": "^1.7.2"
},
"devDependencies": {
"@stackbit/prettier-config": "^1.0.0",
"husky": "^4.0.0",
"jest": "^25.1.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"lint": "prettier --write \"./**/*.{js,json,jsx,md,html}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/stackbithq/sourcebit.git"
},
"keywords": [
"headless",
"headless-cms",
"jamstack",
"ssg"
],
"author": "Stackbit",
"license": "MIT",
"bugs": {
"url": "https://github.com/stackbithq/sourcebit/issues"
},
"homepage": "https://github.com/stackbithq/sourcebit#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,md,html}": [
"npm run lint",
"git add"
]
},
"prettier": "@stackbit/prettier-config"
}