-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 2.79 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 2.79 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "posthtml-spaceless",
"version": "0.0.3",
"description": "A posthtml plugin remove whitespace between HTML tags",
"license": "MIT",
"repository": "GitScrum/posthtml-spaceless",
"homepage": "GitScrum/posthtml-spaceless#readme",
"bugs": "GitScrum/posthtml-spaceless/issues",
"author": {
"name": "Ivan Demidov",
"email": "Scrum@list.ru",
"url": "https://twitter.com/Scrum_"
},
"main": "lib/index.js",
"engines": {
"node": ">=4"
},
"scripts": {
"pretest": "clinton && lint-staged",
"commitmsg": "commitlint --extends=@commitlint/config-angular -e",
"postpublish": "conventional-changelog -i CHANGELOG.md -s -r 0 && git commit -am \"build: update changelog\"",
"patch": "np patch --any-branch --no-yarn",
"minor": "np minor --any-branch --no-yarn",
"major": "np major --any-branch --no-yarn",
"test": "nyc ava",
"build": "rimraf lib && babel src -d lib",
"prepare": "npm run build"
},
"files": [
"lib"
],
"keywords": [
"html",
"posthtml",
"posthtml-plugin",
"remove",
"tags"
],
"dependencies": {
"posthtml-parser": "^0.3.0",
"posthtml-render": "1.0.6"
},
"devDependencies": {
"@commitlint/cli": "^5.1.1",
"@commitlint/config-angular": "^5.1.1",
"ava": "*",
"babel-cli": "^6.11.4",
"babel-eslint": "^8.0.2",
"babel-plugin-add-module-exports": "^0.2.0",
"babel-preset-env": "^1.1.8",
"babel-preset-minify": "^0.2.0",
"babel-register": "^6.11.6",
"clinton": "^0.13.0",
"conventional-changelog-cli": "^1.2.0",
"conventional-changelog-lint": "^2.1.1",
"coveralls": "^3.0.0",
"eslint": "^4.12.0",
"eslint-config-xo": "^0.19.0",
"eslint-plugin-ava": "^4.3.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-markdown": "^1.0.0-beta.7",
"eslint-plugin-unicorn": "^3.0.0",
"husky": "^0.14.3",
"is-promise": "^2.1.0",
"lint-staged": "^5.0.0",
"np": "^2.6.0",
"nyc": "^11.3.0",
"posthtml": "^0.10.1",
"rimraf": "^2.6.2"
},
"ava": {
"require": [
"babel-register"
]
},
"lint-staged": {
"*.{js,html}": "eslint",
"./*.md": "eslint --rule indent: [error, 4] ."
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": 4
}
}
],
"minify"
],
"plugins": [
"add-module-exports"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"plugins": [
"ava",
"unicorn",
"babel",
"markdown"
],
"extends": [
"xo",
"plugin:ava/recommended"
]
},
"clinton": {
"ignores": [
"test/**",
"tmp/**",
"lib/**",
"*.{html,jpg}"
],
"rules": {
"pkg-main": [
"off"
],
"xo": [
"off"
]
}
}
}