-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
76 lines (76 loc) · 1.97 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
{
"name": "@wmhilton/beautify",
"publishConfig": {
"access": "public"
},
"version": "0.0.5-alpha.0",
"description": "Parses and rewrites your HTML/CSS/JS/PHP to be beautiful and readable",
"main": "dist/index.js",
"bin": {
"beautify": "dist/bin/cli.js"
},
"files": [
"dist"
],
"preferGlobal": true,
"scripts": {
"update-readme": "update-readme -p name-and-description -p installation -p license",
"test": "ava",
"testing": "ava --watch",
"watch": "babel src --out-dir dist --watch",
"build": "babel src --out-dir dist",
"lint": "standard --fix",
"precommit": "lint-staged",
"prepublish": "npm run lint && npm run build && npm run test",
"install": "npm run build"
},
"keywords": [],
"author": "William Hilton <[email protected]>",
"license": "Unlicense",
"repository": {
"type": "git",
"url": "git+https://github.com/wmhilton/beautify.git"
},
"bugs": {
"url": "https://github.com/wmhilton/beautify/issues"
},
"homepage": "https://github.com/wmhilton/beautify#readme",
"maintainers": [],
"contributors": [],
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"chalk": "^1.1.3",
"command-line-args": "^4.0.2",
"command-line-usage": "^4.0.0",
"glob": "^7.1.1",
"lodash": "^4.17.4",
"lodash.merge": "^4.6.0",
"mz": "^2.6.0",
"perfectionist": "^2.4.0",
"php-parser": "^2.0.7",
"php-unparser": "^0.2.1",
"postcss": "^5.2.16",
"posthtml": "^0.9.2",
"prettier": "^0.22.0",
"shelljs": "^0.7.7",
"upath": "^1.0.0"
},
"devDependencies": {
"ava": "^0.18.2",
"babel-cli": "^6.24.0",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"flow-bin": "^0.42.0",
"husky": "^0.13.2",
"lint-staged": "^3.4.0",
"standard": "^9.0.2"
},
"standard": {
"ignore": [
"/lib/"
]
}
}