-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 855 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
{
"name": "dockswitcher",
"version": "1.4.3",
"license": "MIT",
"description": "Profiles for Mac dock items",
"main": "src/profiles.js",
"scripts": {
"start": "babel-node --presets env src/cli",
"compile": "babel --presets env -d compiled src",
"test": "echo \"Error: no test specified\" && exit 1",
"release": "yarn compile && yarn publish"
},
"repository": "https://github.com/nathggns/dockswitcher-cli",
"homepage": "https://github.com/nathggns/dockswitcher-cli",
"bin": {
"dockswitcher": "./compiled/run.js",
"ds": "./compiled/run.js"
},
"author": "Nate Higgins",
"dependencies": {
"babel-polyfill": "^6.26.0",
"fs-extra": "^6.0.0",
"sha1-file": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1"
},
"engines": {
"node": ">= 8"
}
}