-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.12 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
{
"name": "npm-shovel",
"version": "0.1.0",
"description": "print npm dependencies tree",
"main": "./bin/npm-shovel.js",
"scripts": {
"dev": "rimraf dist && babel src --out-dir dist --copy-files --watch",
"prepublish": "npm run build",
"build": "rimraf dist && babel src --out-dir dist --copy-files"
},
"bin": {
"npm-shovel": "./bin/npm-shovel.js"
},
"files": [
"bin",
"dist"
],
"engines": {
"node": ">= 7.0.0",
"npm": ">= 5.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SnailSword/npm-shovel.git"
},
"keywords": [
"node_modules"
],
"author": "Saniac",
"license": "MIT",
"bugs": {
"url": "https://github.com/SnailSword/npm-shovel/issues"
},
"homepage": "https://github.com/SnailSword/npm-shovel#readme",
"dependencies": {
"commander": "^5.1.0",
"fs-extra": "^9.0.1",
"babel-runtime": "^6.26.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"rimraf": "^3.0.2"
}
}