-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.23 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
{
"version": "4.5.1",
"name": "lambda-lib",
"description": "Decorators and tools for AWS Lambda",
"keywords": [
"lambda",
"aws",
"promise",
"decorator"
],
"author": "Steven Inskip",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/SkippyZA/lambda-lib.git"
},
"main": "lib/index.js",
"scripts": {
"pretest": "standard | snazzy",
"compile": "rm -rf lib/* && babel -d lib/ src/",
"coverage": "nyc mocha",
"prepare": "npm run compile",
"test": "mocha"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "8.0.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"chai": "4.1.2",
"dirty-chai": "2.0.1",
"mocha": "5.0.0",
"nodemon": "1.18.9",
"nyc": "11.4.1",
"sinon": "4.2.2",
"snazzy": "7.0.0",
"standard": "10.0.3"
},
"standard": {
"parser": "babel-eslint",
"env": "mocha"
},
"nyc": {
"include": [
"src/**/*.js"
],
"reporter": [
"lcov",
"text",
"json"
]
},
"dependencies": {
"babel-polyfill": "6.26.0",
"circular-json": "0.5.1"
}
}