-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.37 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.37 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
{
"author": {
"name": "Brian Onang'o",
"email": "surgbc@gmail.com"
},
"bin": {
"csycms": "bin/csycms"
},
"bundleDependencies": false,
"dependencies": {
"automatic-updates": "^1.0.4",
"await-to-js": "^2.1.1",
"chalk": "^4.0.0",
"csycms-core": "^1.0.17",
"figlet": "^1.4.0",
"fs-extra": "^9.0.1",
"gluegun": "latest",
"js-yaml": "^3.14.0",
"lowdb": "^1.0.0",
"minify": "^7.0.2",
"nginx-conf": "^1.5.0",
"node-etc": "^1.1.5",
"service-systemd": "^3.5.1",
"shelljs": "^0.8.4"
},
"deprecated": false,
"description": "csycms CLI",
"devDependencies": {
"jest": "^24.1.0",
"prettier": "^1.12.1",
"standard": "^12.0.1"
},
"files": [
"src",
"LICENSE",
"readme.md",
"docs",
"bin"
],
"jest": {
"testEnvironment": "node"
},
"licenses": [
{
"type": "Apache-2.0",
"url": "https://raw.githubusercontent.com/csymapp/csycms-cli/master/LICENSE"
}
],
"name": "csycms",
"prettier": {
"semi": false,
"singleQuote": true
},
"private": false,
"scripts": {
"coverage": "jest --coverage",
"format": "prettier --write **/*.{js,json} && standard --fix",
"lint": "standard",
"snapupdate": "jest --updateSnapshot",
"test": "jest",
"watch": "jest --watch"
},
"standard": {
"env": [
"jest"
]
},
"version": "2.0.6"
}