-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.64 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.64 KB
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
{
"name": "html-beautify",
"version": "1.0.0",
"description": "Translate html string to another beautified",
"keywords": [
"beautify",
"html-beautify",
"format",
"formatter",
"html-formatter",
"html",
"prettify",
"pretty",
"html-prettify"
],
"engines": {
"node": ">= 0.10.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bayper/html-beautify.git"
},
"author": "zhoucs (https://github.com/zhoucs624)",
"contributors": [
{
"name": "zhoucs",
"email": "zhoucs624@gmail.com",
"url": "http://github.com/zhoucs624"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Bayper/html-beautify/issues"
},
"homepage": "https://github.com/Bayper/html-beautify#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"main": "./lib/index.js",
"types": "./typings/index.d.ts",
"scripts": {
"build": "npm run clean && tsc && tsc -m es6 --outDir lib-esm && webpack",
"clean": "shx rm -rf _bundles lib lib-esm",
"lint": "tslint src/**/*.{ts,tsx}",
"test": "mocha -r ts-node/register src/**/*.spec.ts"
},
"dependencies": {
"js-beautify": "^1.8.8"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"awesome-typescript-loader": "^5.2.1",
"chai": "^4.2.0",
"husky": "^1.2.0",
"lint-staged": "^6.1.1",
"mocha": "^5.2.0",
"shx": "^0.3.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.2.1",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2"
}
}