-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.31 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-black",
"version": "0.1.2",
"description": "Black 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-black.git"
},
"keywords": [
"python",
"black",
"unibeautify",
"beautifier"
],
"author": "Glavin Wiechert",
"license": "MIT",
"bugs": {
"url": "https://github.com/Unibeautify/beautifier-black/issues"
},
"homepage": "https://github.com/Unibeautify/beautifier-black#readme",
"peerDependencies": {
"unibeautify": ">= 0.15.0"
},
"devDependencies": {
"@types/jest": "22.2.3",
"@types/node": "10.17.60",
"@types/read-pkg-up": "3.0.1",
"jest": "23.6.0",
"npm-run-all": "4.1.5",
"rimraf": "2.6.3",
"ts-jest": "22.4.6",
"tslint": "5.20.1",
"tslint-clean-code": "0.2.10",
"tslint-microsoft-contrib": "5.2.1",
"typescript": "2.9.2",
"unibeautify": "0.17.1"
},
"dependencies": {
"read-pkg-up": "^3.0.0"
}
}