-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.82 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.82 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@casimir/cli",
"version": "1.0.3",
"description": "Command line interface for working with Casimir-based projects",
"author": "Euheny Bondarovich <[email protected]>",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/casimir-ai/cli.git"
},
"bugs": {
"url": "https://github.com/casimir-ai/cli/issues"
},
"scripts": {
"cas": "./cli.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"precommit": "lint-staged",
"prepare": "husky install"
},
"bin": {
"cas": "./cli.js"
},
"files": [
"./lib",
"CHANGELOG.md"
],
"type": "module",
"keywords": [
"casimir"
],
"license": "ISC",
"dependencies": {
"@babel/core": "^7.18.6",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"chalk": "^5.0.1",
"chokidar": "^3.5.3",
"cli-table": "^0.3.11",
"cosmiconfig": "^7.0.1",
"cross-env": "^7.0.3",
"deepmerge": "^4.2.2",
"fs-extra": "^10.1.0",
"glob": "^8.0.3",
"inquirer": "^9.0.0",
"js-yaml": "^4.1.0",
"kind-of": "^6.0.3",
"lerna": "^5.1.8",
"npm-check-updates": "^15.2.6",
"ora": "^6.1.2",
"path": "^0.12.7",
"semantic-release": "^19.0.3",
"shelljs": "^0.8.5",
"shx": "^0.3.4",
"symlink-dir": "^5.0.1",
"typescript": "^4.7.4",
"vue-template-compiler": "^2.7.5",
"yargs": "^17.5.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.18.2",
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3"
},
"lint-staged": {
"*.{js}": "eslint --fix"
},
"engines": {
"node": "^16.13.0",
"npm": "^8.1.0"
}
}