-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
126 lines (126 loc) · 2.86 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
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
126
{
"name": "pug-lint",
"version": "2.7.0",
"description": "An unopinionated and configurable linter and style checker for Pug (formerly Jade)",
"author": "Ben Edwards <[email protected]>",
"license": "ISC",
"keywords": [
"puglint",
"jadelint",
"pug-lint",
"jade-lint",
"pug",
"jade",
"lint",
"code style",
"formatter",
"style guide",
"validate",
"lint pug",
"lint jade",
"pug lint",
"jade lint",
"linter",
"linter pug",
"linter jade",
"pug linter",
"jade linter",
"pug-linter",
"jade-linter",
"linting",
"linting pug",
"linting jade",
"pug linting",
"jade linting",
"pug-linting",
"jade-linting",
"hint",
"hint pug",
"hint jade",
"pug hint",
"jade hint",
"pug-hint",
"jade-hint",
"hinter",
"hinter pug",
"hinter jade",
"pug hinter",
"jade hinter",
"pug-hinter",
"jade-hinter",
"hinting",
"hinting pug",
"hinting jade",
"pug hinting",
"jade hinting",
"pug-hinting",
"jade-hinting"
],
"homepage": "https://github.com/pugjs/pug-lint",
"repository": {
"type": "git",
"url": "[email protected]:pugjs/pug-lint.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"main": "./lib/linter",
"bin": {
"pug-lint": "./bin/pug-lint"
},
"scripts": {
"lint": "xo",
"inspect": "jsinspect",
"depcheck": "david",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha test",
"docs": "pliers buildRuleDocs",
"schema": "pliers buildJsonSchema",
"changelog": "pliers buildChangelog",
"pretest": "npm run docs && npm run schema && npm run lint",
"test": "npm run coverage",
"posttest": "(istanbul check-coverage --statements 90 --branches 90 --functions 100 --lines 90 && rimraf coverage) || echo Look at 'coverage/lcov-report/index.html' to find out more"
},
"dependencies": {
"acorn": "^4.0.1",
"commander": "^2.9.0",
"css-selector-parser": "^1.1.0",
"find-line-column": "^0.5.2",
"glob": "^7.0.3",
"minimatch": "^3.0.3",
"path-is-absolute": "^1.0.0",
"pug-attrs": "^2.0.4",
"pug-error": "^1.3.3",
"pug-lexer": "^4.1.0",
"resolve": "^1.1.7",
"strip-json-comments": "^2.0.1",
"void-elements": "^2.0.1"
},
"devDependencies": {
"camel-case": "^3.0.0",
"changelog": "^1.0.7",
"david": "^7.0.0",
"docco": "^0.7.0",
"istanbul": "^0.4.0",
"jsinspect": "^0.8.0",
"mocha": "^2.3.3",
"moment": "^2.11.2",
"no-case": "^2.3.0",
"pliers": "^1.2.1",
"pug-lint-config-clock": "^1.1.0",
"rimraf": "^2.5.2",
"sinon": "^1.17.2",
"xo": "^0.15.1",
"yeoman-generator": "^0.23.3",
"yo": "^1.8.4"
},
"xo": {
"space": true,
"envs": [
"node",
"mocha"
],
"ignores": [
"generators/*-templates/**"
]
}
}