-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.56 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
54
55
56
57
{
"name": "alfresco-cli",
"version": "1.4.0",
"description": "Alfresco CLI - Command line interface for Alfresco",
"main": "src/index.js",
"bin": "dist/bundle.js",
"scripts": {
"build": "webpack",
"start": "npm run build && node dist/bundle.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build && sh md-gen.sh",
"version": "npm run build && git add -A",
"postversion": "git push && git push --tags",
"commit": "git add -A && git commit -m 'post-publish-automatic' && npm run postversion",
"postpublish": "npm run commit"
},
"author": "Bhagya Nirmaan Silva",
"license": "MIT",
"dependencies": {
"alfresco-js-api": "^2.6.0",
"alfresco-js-api-node": "^2.6.0",
"ascii-table": "0.0.9",
"braces": "^2.3.2",
"chalk": "^2.4.1",
"cli-progress": "^2.1.0",
"commander": "^2.19.0",
"figlet": "^1.2.1",
"flat": "^4.1.0",
"fs": "0.0.1-security",
"inquirer": "^6.2.0",
"micromatch": "^3.1.10",
"prettyjson": "^1.2.1",
"shelljs": "^0.8.2",
"source-map-loader": "^0.2.4",
"ts-loader": "^5.2.2",
"ts-node": "^7.0.1",
"vorpal": "^1.12.0",
"vorpal-autocomplete-fs": "0.0.3"
},
"devDependencies": {
"@types/cli-progress": "^1.8.0",
"@types/flat": "0.0.28",
"@types/node": "^10.12.0",
"typescript": "^3.1.3",
"webpack": "^4.22.0",
"webpack-cli": "^3.1.2"
},
"repository": {
"type": "git",
"url": "https://github.com/bhagyas/alfresco-cli.git"
},
"keywords": [
"alfresco",
"loftux",
"bhagyas"
]
}