forked from pastak/chrome-webstore-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 888 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
{
"name": "chrome-webstore-manager",
"version": "0.3.0",
"description": "Command Line Tool for Publish Chrome WebStore",
"main": "./dist/libs/chrome-webstore.js",
"scripts": {
"test": "standard ./**/*js",
"build": "babel src -d dist",
"prepublish": "npm run build"
},
"bin": {
"chrome-webstore-manager": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]/pastak/chrome-webstore-manager.git"
},
"author": "pastak",
"license": "MIT",
"bugs": {
"url": "https://github.com/pastak/chrome-webstore-manager/issues"
},
"homepage": "https://github.com/pastak/chrome-webstore-manager",
"dependencies": {
"commander": "^2.8.1",
"open": "0.0.5",
"request-promise": "^0.4.3"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"standard": "^5.2.1"
}
}