-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.71 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
{
"name": "collman",
"version": "1.0.7",
"description": "easily manage and display agnostic collections",
"main": "./bin/index.js",
"files": [
"/lib",
"/bin"
],
"bin": {
"collman": "./bin/run.js"
},
"scripts": {
"start": "npm run build:live",
"build": "tsc -p .",
"prepare": "npm run test && npm run build",
"build:live": "nodemon --watch 'src/**/*.ts' --exec \"ts-node\" src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint \"src/**\"",
"lint:fix": "eslint --fix \"src/**\"",
"type-check": "tsc",
"type-check:watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reymon359/collman.git"
},
"keywords": [
"markdown", "cli", "typescript", "collection",
"collections", "manager", "agnostic", "docsify"
],
"author": "reymon359",
"license": "MIT",
"bugs": {
"url": "https://github.com/reymon359/collman/issues"
},
"homepage": "https://github.com/reymon359/collman#readme",
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/jest": "^26.0.20",
"@types/node": "^15.12.2",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.19.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^6.0.0",
"jest": "^27.0.4",
"nodemon": "^2.0.7",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.1.3"
},
"dependencies": {
"fs-extra": "^10.0.0",
"jdown": "^1.0.5",
"json2md": "^1.9.2",
"yargs": "^17.0.1"
}
}