-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.37 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
{
"name": "@unibeautify/beautifier-prettier",
"version": "0.9.0",
"description": "Prettier beautifier for Unibeautify",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"build": "npm run clean && npm run compile",
"clean": "rimraf dist",
"jest": "jest",
"test": "npm-run-all build lint jest",
"compile": "tsc",
"lint": "tslint {src,test}/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Unibeautify/beautifier-prettier.git"
},
"keywords": [
"prettier",
"unibeautify",
"beautifier"
],
"author": "Glavin Wiechert",
"license": "MIT",
"bugs": {
"url": "https://github.com/Unibeautify/beautifier-prettier/issues"
},
"homepage": "https://github.com/Unibeautify/beautifier-prettier#readme",
"peerDependencies": {
"unibeautify": ">= 0.12.1",
"prettier": "^1.11.1"
},
"devDependencies": {
"@types/node": "12.20.55",
"@types/jest": "24.9.1",
"@types/prettier": "1.19.1",
"jest": "24.9.0",
"npm-run-all2": "5.0.2",
"prettier": "1.19.1",
"rimraf": "3.0.2",
"ts-jest": "24.3.0",
"tslint": "5.20.1",
"tslint-clean-code": "0.2.10",
"tslint-microsoft-contrib": "6.2.0",
"typescript": "3.9.10",
"unibeautify": "0.17.1"
},
"dependencies": {
"read-pkg-up": "^7.0.0"
}
}