-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.02 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
67
68
69
70
71
72
73
{
"name": "koalambda",
"version": "0.1.18",
"description": "Koa-like middleware framework to build AWS Lambda functions",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "webpack --env dev && webpack --env build",
"dev": "webpack --progress --colors --watch --env dev",
"pretest": "npm run build",
"test": "nyc mocha --require babel-core/register --colors ./test/*.spec.js",
"test:watch": "mocha --require babel-core/register --colors -w ./test/*.spec.js",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm run build",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/redapesolutions/koalambda.git"
},
"keywords": [
"webpack",
"es6",
"starter",
"library",
"universal",
"umd",
"commonjs"
],
"author": "Matiboy <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/redapesolutions/koalambda/issues"
},
"homepage": "https://github.com/redapesolutions/koalambda",
"devDependencies": {
"@types/node": "^8.9.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"eslint": "^4.13.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-typescript": "^0.8.1",
"mocha": "^4.0.1",
"nyc": "^11.4.1",
"standard": "^10.0.3",
"typescript-eslint-parser": "^12.0.0",
"webpack": "^3.10.0",
"yargs": "^10.0.3"
},
"dependencies": {
"@types/aws-lambda": "0.0.30",
"ajv": "^6.5.3",
"chai-as-promised": "^7.1.1",
"koa-compose": "^4.0.0",
"lodash": "^4.17.4",
"sinon": "^4.2.1",
"ts-loader": "^3.3.1",
"typescript": "^2.6.2",
"uglifyjs-webpack-plugin": "^1.1.8"
},
"standard": {
"parser": "typescript-eslint-parser",
"plugins": [
"typescript"
]
}
}