This repository has been archived by the owner on May 1, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.02 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
{
"author": "Florian Keller <[email protected]>",
"bin": {
"ordinem": "dist/cli.js"
},
"dependencies": {
"commander": "5.1.0",
"cosmiconfig": "6.0.0",
"cron": "1.8.2",
"cross-env": "7.0.2",
"fs-extra": "9.0.0",
"hapi": "18.1.0",
"logdown": "3.3.1",
"moment": "2.24.0"
},
"description": "A media library server and browser.",
"devDependencies": {
"@ffflorian/prettier-config": "0.0.6",
"@ffflorian/tslint-config": "0.7.1",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"@types/cron": "1.7.2",
"@types/fs-extra": "8.1.0",
"@types/hapi": "18.0.3",
"@types/node": "~12",
"husky": "4.2.5",
"lint-staged": "10.2.2",
"prettier": "2.0.5",
"rimraf": "3.0.2",
"semantic-release": "17.0.7",
"tslint": "6.1.2",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.3.0",
"typescript": "3.8.3"
},
"engines": {
"node": ">= 10.9"
},
"files": [
"dist"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"cli",
"server",
"media",
"library",
"browser"
],
"license": "GPL-3.0",
"lint-staged": {
"*.ts": [
"tslint --project tsconfig.json --fix"
],
"*.{json,md}": [
"prettier --write"
]
},
"main": "dist/index.js",
"name": "ordinem",
"prettier": "@ffflorian/prettier-config",
"repository": "https://github.com/ffflorian/ordinem.git",
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"dist": "yarn clean && yarn build",
"fix": "yarn fix:other && yarn fix:ts",
"fix:other": "yarn prettier --write",
"fix:ts": "yarn lint:ts --fix",
"lint": "yarn lint:other && yarn lint:ts",
"lint:other": "yarn prettier --list-different",
"lint:ts": "tslint --project tsconfig.json",
"prettier": "prettier \"**/*.{json,md}\"",
"release": "semantic-release",
"start": "cross-env NODE_DEBUG=\"ordinem/*\" node dist/cli.js",
"test": "exit 0"
},
"version": "2.0.0"
}