-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.71 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
{
"name": "functionly",
"version": "0.6.2",
"description": "",
"main": "lib/src/index",
"types": "lib/src/index.d.ts",
"scripts": {
"build": "node_modules/.bin/tsc",
"build:watch": "node_modules/.bin/tsc -w",
"test": "npm run build && mocha --recursive lib/test/**/*.tests.js",
"test:fast": "mocha --recursive lib/test/**/*.tests.js",
"metadata": "node ./lib/src/cli/cli.js metadata aws --",
"coverage": "node_modules/.bin/istanbul cover --report cobertura ./node_modules/mocha/bin/_mocha -- -R spec lib/test/**/*.tests.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaystack/functionly.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jaystack/functionly/issues"
},
"homepage": "https://github.com/jaystack/functionly#readme",
"devDependencies": {
"@types/async": "^2.0.33",
"@types/chai": "^4.0.1",
"@types/lodash": "^4.14.38",
"@types/mocha": "^2.2.41",
"@types/mongodb": "^2.2.11",
"@types/node": "^6.0.46",
"@types/winston": "0.0.30",
"chai": "^4.0.2",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"mocha-junit-reporter": "^1.15.0",
"typescript": "^2.3.0"
},
"dependencies": {
"async": "^2.1.2",
"aws-sdk": "^2.49.0",
"body-parser": "^1.17.1",
"commander": "^2.9.0",
"config": "^1.26.1",
"cors": "^2.8.3",
"decache": "^4.3.0",
"express": "^4.15.2",
"fs-extra": "^3.0.1",
"lodash": "^4.14.1",
"mongodb": "^2.2.31",
"node-zip": "^1.1.1",
"reflect-metadata": "^0.1.10",
"request": "^2.81.0",
"webpack": "^2.5.1",
"winston": "^2.3.0",
"yamljs": "^0.2.10"
},
"bin": {
"functionly": "./lib/src/cli/cli.js"
}
}