-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1002 Bytes
/
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
{
"name": "typograf-cli",
"description": "CLI for Typograf",
"version": "6.1.0",
"author": {
"name": "Denis Seleznev",
"email": "hcodes@yandex.ru",
"url": "https://github.com/typograf/typograf-cli"
},
"bin": {
"typograf": "./bin/cli.js"
},
"homepage": "https://github.com/typograf",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/typograf/typograf-cli.git"
},
"keywords": [
"cli",
"typo",
"text",
"typograf",
"typographer",
"typography"
],
"engines": {
"node": "^12.20.0 || >=14"
},
"files": [
"bin",
"README.md",
"CHANGELOG.md",
"LICENSE.md",
"typograf.json"
],
"dependencies": {
"picocolors": "^1.0.0",
"commander": "^9.5.0",
"exit": "^0.1.2",
"isutf8": "^4.0.0",
"typograf": "^7.0.0"
},
"devDependencies": {
"eslint": "^8.37.0"
},
"scripts": {
"eslint": "./node_modules/.bin/eslint .",
"test": "npm run-script eslint"
}
}