-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
88 lines (88 loc) · 2.37 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
{
"name": "posthtml-cli",
"version": "0.10.0",
"description": "CLI for posthtml",
"license": "MIT",
"repository": "posthtml/posthtml-cli",
"homepage": "/~https://github.com/posthtml/posthtml-cli#readme",
"bugs": "posthtml/posthtml-cli/issues",
"author": {
"name": "Ivan Demidov",
"email": "Scrum@list.ru",
"url": "https://twitter.com/Scrum_"
},
"bin": {
"posthtml": "lib/cli.js"
},
"engines": {
"node": ">=10"
},
"scripts": {
"version": "conventional-changelog -i changelog.md -s -r 0 && git add changelog.md",
"prepare": "npm run build",
"build": "rimraf lib && babel src -d lib",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"pretest": "npm run build",
"test": "nyc ava"
},
"files": [
"lib/"
],
"keywords": [
"posthtml",
"posthtml-runner",
"cli"
],
"dependencies": {
"cosmiconfig": "^7.0.0",
"fast-glob": "^3.2.5",
"make-dir": "^3.0.0",
"meow": "^7.1.1",
"merge-options": "^3.0.4",
"normalize-path": "^3.0.0",
"posthtml": "^0.16.4",
"to-camel-case": "^1.0.0",
"update-notifier": "^5.1.0"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.5",
"@babel/node": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/register": "^7.14.5",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-angular": "^12.1.4",
"acorn": "^8.3.0",
"ava": "^3.15.0",
"babel-eslint": "^10.0.3",
"babel-preset-minify": "^0.5.1",
"clinton": "^0.14.0",
"conventional-changelog-cli": "^2.1.0",
"coveralls": "^3.0.9",
"cpy": "^8.1.2",
"eslint": "^7.28.0",
"eslint-config-xo": "^0.36.0",
"eslint-config-xo-space": "^0.27.0",
"eslint-plugin-ava": "^12.0.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-markdown": "^2.2.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-unicorn": "^33.0.1",
"execa": "^5.1.1",
"husky": "^6.0.0",
"is-promise": "^4.0.0",
"lint-staged": "^11.0.0",
"merge": "^2.1.1",
"nyc": "^15.0.0",
"posthtml-bem": "^0.2.2",
"posthtml-css-modules": "^0.1.3",
"posthtml-custom-elements": "^1.1.1",
"read-pkg": "^5.2.0",
"rimraf": "^3.0.0",
"tempfile": "^3.0.0"
},
"readme": "posthtml/posthtml-cli/readme"
}