forked from gajus/roarr-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.11 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.11 KB
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
{
"author": {
"email": "gajus@gajus.com",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"ava": {
"babel": {
"compileAsTests": [
"test/helpers/**/*"
]
},
"files": [
"test/roarr/**/*"
],
"require": [
"@babel/register"
]
},
"bin": {
"roarr": "./dist/bin/index.js"
},
"dependencies": {
"chalk": "^3.0.0",
"es6-error": "^4.1.1",
"json5": "^2.1.1",
"prettyjson": "^1.2.1",
"roarr": "^2.15.2",
"searchjs": "^1.0.2",
"split2": "^3.1.1",
"ulid": "^2.3.0",
"yargs": "^15.1.0"
},
"description": "A CLI program for Roarr logger.",
"devDependencies": {
"@ava/babel": "^1.0.0",
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/plugin-transform-flow-strip-types": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.8.3",
"ava": "^3.2.0",
"babel-plugin-istanbul": "^6.0.0",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"eslint-config-canonical": "^18.1.1",
"flow-bin": "^0.117.0",
"flow-copy-source": "^2.0.9",
"husky": "^4.2.1",
"nyc": "^15.0.0",
"semantic-release": "^17.0.2"
},
"engines": {
"node": ">=10.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test && npm run build"
}
},
"keywords": [
"log",
"logger",
"json"
],
"name": "@roarr/cli",
"nyc": {
"all": true,
"include": [
"src/**/*.js"
],
"instrument": false,
"reporter": [
"html",
"text-summary"
],
"require": [
"@babel/register"
],
"silent": true,
"sourceMap": false
},
"repository": {
"type": "git",
"url": "git@github.com:gajus/roarr-cli.git"
},
"scripts": {
"build": "rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps && flow-copy-source src dist",
"dev": "NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --watch",
"lint": "eslint ./src ./test && flow",
"test": "NODE_ENV=test ava --serial --verbose"
},
"version": "1.0.0"
}