-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 915 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
35
{
"name": "chrome-webstore-manager",
"version": "0.5.0",
"description": "Command Line Tool for Publish Chrome WebStore",
"main": "./dist/libs/chrome-webstore.js",
"scripts": {
"test": "standard ./src/**/*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.20.3",
"got": "^11.8.2",
"open": "^8.0.7"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.1",
"standard": "^16.0.3"
}
}