-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.03 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "skylite",
"version": "1.0.15",
"description": "The Skylite CLI for creating a powerful Node.js applications ",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/SlDo/skylite-cli"
},
"keywords": [
"typescipt",
"javascript",
"ts",
"js",
"cli",
"node.js",
"structure"
],
"dependencies": {
"boxen": "^5.0.0",
"chalk": "^4.1.0",
"commander": "^6.2.1",
"ejs": "^3.1.5",
"fs-extra": "^9.0.1",
"globby": "^11.0.2",
"inquirer": "^7.3.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/boxen": "^3.0.1",
"@types/chalk": "^2.2.0",
"@types/commander": "^2.12.2",
"@types/ejs": "^3.0.5",
"@types/fs-extra": "^9.0.6",
"@types/globby": "^9.1.0",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.20",
"@types/mock-fs": "^4.13.0",
"@types/node": "^14.14.20",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"codecov": "^3.8.1",
"copyfiles": "^2.4.1",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-ejs": "0.0.2",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"mock-fs": "^4.13.0",
"rimraf": "^3.0.2",
"standard-version": "^9.1.0",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"bin": {
"skylite": "lib/index.js"
},
"scripts": {
"release": "standard-version",
"release:patch": "npm run release -- --release-as patch",
"release:minor": "npm run release -- --release-as minor",
"release:major": "npm run release -- --release-as major",
"build": "tsc -p . && copyfiles -u 1 src/**/*.js lib/",
"test": "jest --testPathPattern='/src/*' --config ./jest.config.js --runInBand",
"lint": "eslint"
},
"author": "Slava Dodonov <alforestx@gmail.com>",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
]
}