-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
44 lines (44 loc) · 919 Bytes
/
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
{
"name": "indent.js",
"version": "0.3.5",
"description": "Fast minimalistic pure indentation of JavaScript, CSS, and HTML.",
"main": "lib/indent.js",
"module": "lib/index.js",
"directories": {
"test": "tests",
"lib": "lib",
"src": "src"
},
"dependencies": {},
"devDependencies": {
"chai": "^4.1.2",
"gulp": "^3.9",
"gulp-concat": "^2.6.0",
"gulp-uglify": "^1.4.1",
"gulp-umd": "^0.2.0",
"mocha": "^4.0.1",
"pump": "^3.0.0"
},
"scripts": {
"build": "gulp build",
"test": "mocha ./tests/**"
},
"repository": {
"type": "git",
"url": "https://github.com/zebzhao/indent.js.git"
},
"keywords": [
"beautifier",
"indent",
"jsx",
"tsx",
"typescript",
"harmony",
"pure",
"unopinionated",
"indentation"
],
"author": "Zeb Zhao",
"license": "MIT",
"homepage": "https://github.com/zebzhao/indent.js"
}