-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.3 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
{
"name": "@unibeautify/beautifier-yapf",
"version": "0.3.0",
"description": "YAPF 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-yapf.git"
},
"keywords": [
"yapf",
"unibeautify",
"beautifier"
],
"author": "Glavin Wiechert",
"license": "MIT",
"bugs": {
"url": "https://github.com/Unibeautify/beautifier-yapf/issues"
},
"homepage": "https://github.com/Unibeautify/beautifier-yapf#readme",
"peerDependencies": {
"unibeautify": ">= 0.13.0"
},
"devDependencies": {
"@types/jest": "24.9.1",
"@types/node": "12.20.55",
"@types/tmp": "0.1.0",
"jest": "24.9.0",
"npm-run-all": "4.1.5",
"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",
"tmp": "0.1.0"
}
}