forked from vingorius/pug-beautifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.84 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
{
"name": "pug-beautifier-cli",
"version": "0.0.2",
"description": "Pug(Jade) Beautify CLI Interface",
"main": "pug-beautifier",
"scripts": {
"pretest": "eslint . --fix",
"test": "mocha",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags && npm publish",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags && npm publish",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags && npm publish"
},
"engines": {
"node": ">=4"
},
"bin": {
"pug-beautifier": "./index.js"
},
"preferGlobal": true,
"repository": {
"type": "git",
"url": "https://github.com/lgaticaq/pug-beautifier-cli.git"
},
"keywords": [
"jade",
"pug",
"beautify",
"formatter"
],
"author": "Leonardo Gatica <[email protected]> (https://about.me/lgatica)",
"license": "MIT",
"dependencies": {
"commander": "^2.10.0",
"globby": "^6.1.0",
"graceful-readlink": "^1.0.1",
"pug-beautify": "^0.1.1"
},
"devDependencies": {
"eslint": "^4.1.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"generate-changelog": "^1.3.0",
"mocha": "^3.4.2",
"prettier-standard": "^5.1.0"
},
"eslintConfig": {
"extends": "standard",
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"node": true,
"mocha": true,
"es6": true
},
"rules": {
"no-console": [
"error"
]
}
}
}