-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.51 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
{
"name": "@stackbit/cli",
"version": "0.1.27",
"description": "Stackbit CLI",
"main": "dist/stackbit.js",
"types": "dist/stackbit.d.ts",
"bin": {
"stackbit": "./dist/stackbit.js"
},
"files": [
"/dist",
"/src"
],
"scripts": {
"test": "jest",
"build": "rm -rf dist && tsc",
"prettier": "prettier --write src",
"prepack": "npm test && npm run build",
"version-minor": "npm version minor -m \"bumped version to v%s\"",
"version-patch": "npm version patch -m \"bumped version to v%s\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/stackbit/stackbit-cli.git"
},
"keywords": [
"stackbit",
"cli",
"jamstack",
"ssg",
"cms",
"schema"
],
"author": "Stackbit Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/stackbit/stackbit-cli/issues"
},
"homepage": "https://github.com/stackbit/stackbit-cli#readme",
"dependencies": {
"@stackbit/sdk": "^0.2.24",
"analytics-node": "^4.0.1",
"chalk": "^4.1.0",
"configstore": "^5.0.1",
"git-url-parse": "^11.4.4",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"uuid": "^8.3.2",
"yargs": "^17.2.1"
},
"devDependencies": {
"@types/analytics-node": "^3.1.7",
"@types/configstore": "^5.0.1",
"@types/git-url-parse": "^9.0.1",
"@types/js-yaml": "^4.0.4",
"@types/lodash": "^4.14.176",
"@types/uuid": "^8.3.1",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
}
}