-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.1 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
{
"name": "@stackbit/utils",
"version": "0.2.2",
"description": "Stackbit utilities",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "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/stackbithq/utils.git"
},
"keywords": [
"stackbit",
"utilities"
],
"author": "Stackbit Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/stackbithq/utils/issues"
},
"homepage": "https://github.com/stackbithq/utils#readme",
"dependencies": {
"@iarna/toml": "^2.2.5",
"fs-extra": "^9.1.0",
"js-yaml": "^4.0.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/fs-extra": "^9.0.8",
"@types/js-yaml": "^4.0.0",
"@types/lodash": "^4.14.168",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
}
}