This repository has been archived by the owner on Apr 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.67 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": "openwhisk-deploy",
"version": "0.9.1",
"description": "",
"main": "dist/index.js",
"typing": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf node_modules dist && cd plugins && ./clean.sh",
"prepublish": "tsc && cd plugins && ./tsc.sh",
"pretest": "tsc",
"test": "nyc mocha && nyc mocha dist/test && cd plugins && ./test.sh",
"compile": "tsc -watch -p ./ & (cd plugins && ./compile.sh)",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"postinstall": "cd plugins && ./install.sh"
},
"author": "Lionel Villard",
"repository": {
"url": "https://github.com/lionelvillard/openwhisk-project.git",
"type": "git"
},
"license": "Apache-2.0",
"dependencies": {
"@types/fs-extra": "^4.0.2",
"@types/semver": "^5.4.0",
"child-process-promise": "^2.2.1",
"deep-is": "^0.1.3",
"expand-home-dir": "0.0.3",
"fs-extra": "^4.0.2",
"generator-openwhisk": "^0.3.0",
"get-installed-path": "^3.0.1",
"json-stringify-safe": "^5.0.1",
"jsonwebtoken": "^8.1.0",
"log4js": "^2.3.4",
"openwhisk": "^3.8.0",
"progress": "^2.0.0",
"properties-parser": "^0.3.1",
"recursive-readdir": "^2.2.1",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"semver": "^5.4.1",
"simple-git": "^1.82.0",
"yamljs": "^0.3.0",
"yeoman-environment": "^2.0.4"
},
"devDependencies": {
"@types/progress": "^2.0.0",
"@types/request-promise": "^4.1.38",
"@types/yamljs": "^0.2.30",
"assert": "^1.4.1",
"codecov": "^3.0.0",
"deep-diff": "^0.3.8",
"mocha": "^3.5.0",
"mocha-typescript": "^1.1.9",
"nyc": "^11.3.0",
"typescript": "^2.5.3"
}
}