-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
87 lines (87 loc) · 2.45 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
84
85
86
87
{
"name": "unibeautify",
"version": "0.17.1",
"description": "One Beautifier to rule them all",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"scripts": {
"jest": "jest",
"jest-watch": "jest --watch",
"test": "npm-run-all build-test jest",
"build-test": "npm-run-all clean compile copy-languages-json",
"dev": "tsc --watch",
"copy-languages-json": "cp src/languages.json dist/src/languages.json",
"compile": "tsc",
"build": "npm-run-all compile copy-languages-json update-type-defs",
"clean": "rimraf dist/",
"prepublishOnly": "npm run build",
"docs": "typedoc --out docs --module commonjs --readme README.md --name Unibeautify src",
"lint": "tslint '{src,test,script}/**/*.ts'",
"lint-fix": "tslint --fix '{src,test,script}/**/*.ts'",
"update-type-defs": "node dist/scripts/update-type-defs.js dist/src/beautifier.d.ts",
"update-languages": "node dist/scripts/update-languages.js ./src/languages.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Unibeautify/unibeautify.git"
},
"keywords": [
"beautify",
"beautifier",
"format",
"formatter",
"prettify",
"pretty"
],
"author": {
"name": "Glavin Wiechert",
"email": "[email protected]",
"url": "https://github.com/glavin001"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Unibeautify/unibeautify/issues"
},
"homepage": "https://github.com/Unibeautify/unibeautify#readme",
"devDependencies": {
"@types/dedent": "0.7.0",
"@types/diff": "4.0.2",
"@types/jest": "24.9.1",
"@types/js-yaml": "3.12.7",
"@types/json-stable-stringify": "1.0.34",
"@types/lodash": "4.14.192",
"@types/node": "10.17.60",
"@types/request": "2.48.8",
"@types/semver": "6.2.3",
"dedent": "0.7.0",
"istanbul-api": "3.0.0",
"istanbul-reports": "2.2.7",
"jest": "24.9.0",
"js-yaml": "3.14.1",
"json-stable-stringify": "1.0.2",
"npm-run-all": "4.1.5",
"request": "2.88.2",
"rimraf": "3.0.2",
"shelljs": "0.8.5",
"ts-jest": "24.3.0",
"tslint": "5.20.1",
"tslint-clean-code": "0.2.10",
"tslint-microsoft-contrib": "6.2.0",
"typedoc": "0.24.8",
"typescript": "3.9.10"
},
"dependencies": {
"diff": "^4.0.1",
"lodash": "^4.17.19",
"requireg": "^0.2.1",
"semver": "^6.0.0"
},
"engines": {
"node": ">=6.0.0"
},
"nyc": {
"exclude": [
"**/test"
]
}
}