-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.38 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
{
"name": "@v4fire/cli",
"version": "2.1.0",
"description": "Tools for creating V4Fire blocks and pages from CLI",
"main": "index.js",
"bin": {
"v4fire": "bin/cli.js"
},
"scripts": {
"test": "mocha tests/**/**.test.js",
"newversion": "npm test && npm version patch --no-git-tag-version && npm run newversiongit && npm publish ./",
"newversiongit": "git add --all && git commit -m \"New version $npm_package_version. Read more https://github.com/V4Fire/cli/releases/tag/$npm_package_version \" && git tag $npm_package_version && git push --tags origin master"
},
"keywords": [
"cli",
"v4fire"
],
"author": "Chupurnov Valeriy<[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/V4Fire/cli.git"
},
"license": "MIT",
"dependencies": {
"@pzlr/build-core": "2.14.0",
"chalk": "4.1.2",
"fs-extra": "11.1.1",
"git-config-path": "2.0.0",
"glob": "9.3.4",
"handlebars": "4.7.7",
"intelli-buddy": "1.0.0-alpha.1",
"parse-git-config": "3.0.0",
"yargs": "17.7.1"
},
"devDependencies": {
"@v4fire/core": "3.95.4",
"@v4fire/linters": "2.4.0",
"chai": "4.3.7",
"mocha": "10.2.0",
"typescript": "4.4.4"
},
"peerDependencies": {
"@v4fire/core": "^3.90"
},
"mocha": {
"file": [
"tests/staff/bootstrap.js"
]
},
"packageManager": "[email protected]"
}