-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.38 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-sourcemap",
"version": "1.0.1",
"description": "js-beautify with sourcemap",
"main": "dist/js-beautify-sourcemap.js",
"module": "dist/js-beautify-sourcemap.es.js",
"scripts": {
"build": "npm run dist&npm run es&npm run min",
"dist": "rollup -c",
"es": "rollup -c",
"min": "rollup -c",
"test": "mocha"
},
"bin": {
"jsbs": "./bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joeyguo/js-beautify-sourcemap.git"
},
"keywords": [
"js-beautify",
"sourcemap"
],
"author": "joeyguo",
"license": "MIT",
"bugs": {
"url": "https://github.com/joeyguo/js-beautify-sourcemap/issues"
},
"homepage": "https://github.com/joeyguo/js-beautify-sourcemap#readme",
"dependencies": {
"axios": "^0.18.0",
"chalk": "^2.4.1",
"commander": "^2.19.0",
"configstore": "^4.0.0",
"js-beautify": "^1.8.8",
"js-sourcemap": "0.0.6",
"yargs": "^12.0.5"
},
"devDependencies": {
"babel-plugin-external-helpers": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.24.1",
"babelrc-rollup": "^3.0.0",
"mocha": "^5.2.0",
"rollup": "^0.37.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-license": "^0.3.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^1.0.1"
}
}