-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "posthtml-pseudo",
"description": "Adds pseudo class names to elements.",
"version": "0.6.14",
"author": "Kevin A. Cameron",
"bugs": "https://github.com/kevinkace/posthtml-pseudo/issues",
"dependencies": {
"lodash": "^4.17.21",
"posthtml": "^0.16.4"
},
"devDependencies": {
"assert": "^2.0.0",
"coveralls": "^3.0.2",
"eslint": "^7.7.0",
"eslint-config-arenanet": "^5.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"istanbul": "^0.4.5",
"mocha": "^9.0.1"
},
"engines": {
"node": ">=4"
},
"homepage": "https://github.com/kevinkace/posthtml-pseudo",
"keywords": [
"html",
"posthtml",
"posthtml-plugin",
"pseudo",
"css"
],
"license": "MIT",
"main": "index.js",
"repository": "kevinkace/posthtml-pseudo",
"scripts": {
"test": "mocha",
"lint": "eslint .",
"coverage": "istanbul cover --print both ./node_modules/mocha/bin/_mocha",
"coveralls": "cat ./coverage/lcov.info | \"./node_modules/.bin/coveralls\""
}
}