-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 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
{
"name": "postcss-wrap-lines",
"version": "1.0.0",
"description": "PostCSS plugin to wrap lines after a specified number of characters",
"keywords": ["postcss", "css", "postcss-plugin", "wrap", "long-lines"],
"author": "Jonathan Rehm <jrehm@mhighpoint.com>",
"license": "MIT",
"repository": "highpoint-tech/postcss-wrap-lines",
"bugs": {
"url": "https://github.com/highpoint-tech/postcss-wrap-lines/issues"
},
"homepage": "https://github.com/highpoint-tech/postcss-wrap-lines",
"main": "src/index.js",
"files": ["src/*.js"],
"peerDependencies": {
"postcss": "^5.2.0 || ^6.0.0 || ^7.0.0"
},
"devDependencies": {
"@highpoint/eslint-config": "^0.1.1",
"ava": "^0.25.0",
"eslint": "^5.8.0",
"eslint-config-prettier": "^3.1.0",
"husky": "^1.1.3",
"lint-staged": "^8.0.4",
"postcss": "^7.0.5",
"prettier": "^1.15.1"
},
"scripts": {
"lint": "eslint .",
"test": "ava"
},
"husky": {
"hooks": {
"pre-commit": "npm test && lint-staged"
}
}
}