-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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
{
"name": "zinc",
"version": "0.4.1",
"description": "A command-line tool for (internal) memos",
"main": "index.js",
"directories": {
"example": "examples",
"lib": "lib",
"bin": "bin"
},
"bin": {
"zinc": "./bin/zinc"
},
"scripts": {
"lint": "eslint --ext .js --ignore-pattern public .",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write 'src/**/*js' 'src/**/*.md' 'lib/**/*.js'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/athiththan11/Zinc.git"
},
"keywords": [
"zinc"
],
"author": "@athiththan11",
"license": "MIT",
"bugs": {
"url": "https://github.com/athiththan11/Zinc/issues"
},
"homepage": "https://github.com/athiththan11/Zinc#readme",
"devDependencies": {
"eslint": "^7.3.1",
"jshint": "^2.11.1"
},
"dependencies": {
"chalk": "^4.1.0",
"inquirer": "^7.3.1",
"jsonpath-plus": "^4.0.0",
"lodash": "^4.17.21",
"marked": "^4.0.10",
"marked-terminal": "^4.1.0",
"ora": "^4.0.4",
"prompt": "^1.0.0",
"yargs": "^15.4.1"
}
}