This repository has been archived by the owner on Nov 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.7 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
58
59
60
61
62
63
64
65
66
{
"name": "@oasp/oasp4fn",
"description": "The Open Application Standard Platform for node.js and serverless",
"version": "0.6.3",
"author": {
"name": "Capgemini",
"url": "https://www.capgemini.com/"
},
"homepage": "http://oasp.io",
"contributors": [
"David Alfonso <[email protected]>",
"Santos Jimenez <[email protected]>",
"Ruben Diaz <[email protected]>",
"Iwan van der Kleijn <[email protected]>"
],
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"sample": "node dist/samples.js",
"test": "mocha --opts mocha.opts",
"test:auto": "mocha --opts mocha.opts --watch",
"prepublish": "npm run build && cpx src/types/**/* dist",
"release": "np",
"doc": "typedoc --out ./doc --mode modules --excludeExternals --includeDeclarations --tsconfig tsconfig.doc.json"
},
"keywords": [
"cloud",
"serverless",
"aws",
"dynamo",
"s3",
"oasp"
],
"repository": {
"type": "git",
"url": "https://github.com/oasp/oasp4fn.git"
},
"bugs": {
"url": "https://github.com/oasp/oasp4fn/issues"
},
"license": "Apache-2.0",
"devDependencies": {
"@types/chai": "^3.4.35",
"@types/chalk": "^0.4.31",
"@types/js-yaml": "^3.5.30",
"@types/lodash": "^4.14.53",
"@types/mocha": "^2.2.39",
"@types/node": "^7.0.5",
"chai": "^3.5.0",
"cpx": "^1.5.0",
"np": "^2.16.0"
},
"dependencies": {
"aws-sdk": "2.20.x",
"chalk": "^1.1.3",
"js-yaml": "^3.8.4",
"lodash": "^4.17.4",
"typescript": "^2.3.2"
},
"bin": {
"oasp4fn": "./bin/oasp4fn",
"fun": "./bin/oasp4fn"
},
"types": "dist/index.d.ts"
}