-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
103 lines (103 loc) · 2.95 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "md-generator",
"version": "0.6.1",
"description": "NPM Package which bootstraps Development by creating all required .md files to meet community standards.",
"main": "index.js",
"scripts": {
"test": "nyc cross-env TS_NODE_FILES=true mocha --exit --require ts-node/register --colors src/tests.spec.ts",
"coverage": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"compile": "yarn clear && yarn build",
"copy-files": "babel ./src/templates/files -d dist/src/templates/files --ignore --copy-files",
"build": "tsc -b && yarn copy-files",
"clear": "rm -rf dist",
"pretty": "./node_modules/.bin/prettier --single-quote --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"lint": "eslint src/**/*.ts --fix",
"release": "standard-version",
"contributors:init": "all-contributors init",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"bin": {
"md-generator": "./dist/src/index.js"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Oluwasegun-AA/md-generator.git"
},
"keywords": [
"files",
".md",
"files template",
"cli",
"generator",
"md-generator",
"template",
"automate"
],
"author": "Adépòjù Olúwásêgun <[email protected]> (https://oluwasegun-aa.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Oluwasegun-AA/md-generator/issues"
},
"homepage": "https://github.com/Oluwasegun-AA/md-generator#readme",
"husky": {
"hooks": {
"pre-push": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"boxen": "4.1.0",
"chalk": "2.4.2",
"commander": "3.0.1",
"ejs": "^3.1.8",
"git-repo-name": "1.0.1",
"inquirer": "6.4.1",
"load-json-file": "6.2.0",
"ora": "4.0.1",
"pad": "3.2.0"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "7.4.5",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "7.4.5",
"@babel/runtime": "7.4.5",
"@types/chai": "4.2.6",
"@types/chai-spies": "1.0.1",
"@types/ejs": "2.7.0",
"@types/git-repo-name": "1.0.0",
"@types/inquirer": "6.5.0",
"@types/lodash": "4.14.149",
"@types/mocha": "5.2.7",
"@types/node": "12.12.14",
"babel-node": "^0.0.1-security",
"chai": "4.2.0",
"chai-spies": "1.0.0",
"coveralls": "3.0.9",
"cross-env": "6.0.3",
"eslint": "5.3.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.18.0",
"husky": "3.0.4",
"lint-staged": "9.2.3",
"lodash": "4.17.21",
"mocha": "10.1.0",
"nyc": "14.1.1",
"prettier": "1.18.2",
"ts-node": "8.5.4",
"tslint-config-airbnb": "5.11.2",
"typescript": "3.7.2"
}
}