-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
71 lines (71 loc) · 1.67 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
{
"name": "@unibeautify/cli",
"version": "0.5.1",
"description": "CLI for Unibeautify",
"main": "dist/index.js",
"bin": {
"unibeautify": "dist/cli.js"
},
"scripts": {
"compile": "tsc",
"clean": "rimraf dist",
"jest": "jest --verbose",
"test": "npm-run-all build jest",
"docs": "typedoc --out docs --includeDeclarations",
"prepare": "npm run build",
"build": "npm-run-all clean compile",
"lint:src": "tslint src/**/*.ts",
"lint": "npm-run-all clean compile lint:*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Unibeautify/cli.git"
},
"keywords": [
"cli-app",
"cli",
"unibeautify",
"beautify",
"beautifier",
"formatter",
"format",
"pretty"
],
"author": {
"name": "Glavin Wiechert",
"email": "glavin.wiechert@gmail.com",
"url": "https://github.com/glavin001"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Unibeautify/cli/issues"
},
"homepage": "https://github.com/Unibeautify/cli#readme",
"engines": {
"node": ">=6.0.0"
},
"devDependencies": {
"@types/cosmiconfig": "5.0.3",
"@types/fast-levenshtein": "0.0.1",
"@types/jest": "24.9.1",
"@types/yargs": "13.0.4",
"@unibeautify/beautifier-eslint": "0.6.0",
"eslint": "5.16.0",
"jest": "24.9.0",
"npm-run-all": "4.1.5",
"rimraf": "3.0.2",
"ts-jest": "24.3.0",
"tslint": "5.20.1",
"typedoc": "0.17.8",
"typescript": "3.5.3"
},
"dependencies": {
"chalk": "^2.4.1",
"cosmiconfig": "^5.0.7",
"fast-levenshtein": "^2.0.6",
"g-search": "^0.3.0",
"requireg": "^0.2.1",
"unibeautify": "^0.17.0",
"yargs": "^14.0.0"
}
}