-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.81 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
{
"author": "Lucas Azzola (https://github.com/azz)",
"bugs": {
"url": "https://github.com/linterjs/prettier/issues"
},
"keywords": [
"linter",
"prettier"
],
"dependencies": {
"@linter/core": "^1.0.0-beta.4",
"loglevel-colored-level-prefix": "^1.0.0",
"prettylint": "1.0.0",
"tslib": "^1.8.0"
},
"description": "Lint all the things... with one command",
"devDependencies": {
"@types/jest": "^23.3.2",
"@types/node": "^10.9.4",
"@types/prettier": "^1.13.2",
"babel-preset-env": "^1.7.0",
"jest": "^23.5.0",
"jest-cli": "^23.5.0",
"jest-plugin-fs": "^2.9.0",
"jest-plugins": "^2.9.0",
"npm-check": "^5.8.0",
"prettier": "^1.14.2",
"rimraf": "^2.6.2",
"ts-jest": "^23.1.4",
"tslint-config-airbnb": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-language-service": "^0.9.9",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^3.0.3",
"unionfs": "^3.0.2"
},
"engines": {
"node": ">=8.0.0"
},
"homepage": "https://github.com/linterjs/prettier#readme",
"license": "MIT",
"main": "dist/index.js",
"maintainers": [
"Simon Fridlund <[email protected]> (https://github.com/zimme)"
],
"name": "@linter/provider-prettier",
"optionalDependencies": {},
"peerDependencies": {
"prettier": "^1.14.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/linterjs/prettier.git"
},
"scripts": {
"check": "npm-check",
"clean": "rimraf coverage dist",
"clean:build": "rimraf dist",
"clean:test": "rimraf coverage",
"build": "tsc",
"prebuild": "npm run clean:build",
"prepublishOnly": "npm run build",
"pretest": "npm run clean:test",
"test": "jest",
"test:verbose": "jest --verbose"
},
"types": "dist/index.d.ts",
"version": "1.0.0-alpha.1"
}