forked from beautifier/js-beautify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.87 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
{
"name": "js-beautify",
"version": "1.4.2",
"description": "jsbeautifier.org for node",
"main": "js/index.js",
"preferGlobal": true,
"bin": {
"css-beautify": "./js/bin/css-beautify.js",
"html-beautify": "./js/bin/html-beautify.js",
"js-beautify": "./js/bin/js-beautify.js"
},
"directories": {
"lib": "js/lib",
"test": "js/test"
},
"scripts": {
"test": "./js/test/shell-smoke-test.sh && node ./js/test/node-beautify-tests.js",
"update-codemirror": "npm install codemirror && rm -rf ./web/third-party/codemirror/* && cp ./node_modules/codemirror/LICENSE ./web/third-party/codemirror/ && cp ./node_modules/codemirror/README.md ./web/third-party/codemirror/ && cp -r ./node_modules/codemirror/lib ./web/third-party/codemirror/ && mkdir -p ./web/third-party/codemirror/mode && cp -r ./node_modules/codemirror/mode/javascript ./web/third-party/codemirror/mode/ && git add -Av ./web/third-party/codemirror"
},
"bugs": "https://github.com/einars/js-beautify/issues",
"homepage": "http://jsbeautifier.org/",
"repository": {
"type": "git",
"url": "git://github.com/einars/js-beautify.git"
},
"keywords": [
"beautify",
"beautifier",
"code-quality"
],
"author": "Einar Lielmanis <[email protected]>",
"contributors": [
"Vital Batmanov <[email protected]>",
"Chris J. Shull <[email protected]>",
"Gian Marco Gherardi <[email protected]>",
"Stan <[email protected]>",
"Vittorio Gambaletta <[email protected]>",
"Daniel Stockman <[email protected]>",
"Harutyun Amirjanyan <[email protected]>",
"Nochum Sossonko <[email protected]>",
"Liam Newman <[email protected]>"
],
"license": "MIT",
"dependencies": {
"config-chain": "~1.1.5",
"mkdirp": "0.3.5",
"nopt": "~2.1.1"
},
"devDependencies": {
"jshint": "1.1.0",
"node-static": "~0.7.1"
}
}