-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.63 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
{
"name": "hammertime",
"version": "4.0.0",
"description": "U Can't Touch This",
"main": "hammertime.js",
"scripts": {
"deploy": "node_modules/serverless/bin/serverless deploy --verbose",
"destroy": "node_modules/serverless/bin/serverless remove --verbose",
"lint": "eslint *.js",
"test:unit": "nyc mocha --report lcovonly -- test/**/*.test.js --require test/global.js -R spec",
"codecov": "codecov",
"test": "npm run lint && npm run test.unit",
"test.unit": "nyc mocha --report lcovonly -- test/**/*.test.js --require test/global.js -R spec && codecov",
"build": "babel src --out-dir dist"
},
"repository": {
"type": "git",
"url": "[email protected]:nib-health-funds/hammertime.git"
},
"author": "nib",
"license": "MIT",
"dependencies": {
"@babel/register": "^7.6.2",
"aws-sdk": "^2.610.0",
"luxon": "^1.11.4",
"moment": "^2.22.1",
"nyc": "^14.1.1",
"promise-retry": "^1.1.1",
"serverless": "^1.54.0"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.3",
"@istanbuljs/nyc-config-babel": "^2.1.1",
"aws-sdk-mock": "^1.7.0",
"babel-plugin-istanbul": "^5.2.0",
"babel-register": "^6.26.0",
"chai": "^3.5.0",
"codecov": "^3.6.5",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-chai-expect": "^1.1.1",
"eslint-plugin-chai-friendly": "^0.3.6",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-mocha": "^4.9.0",
"eslint-plugin-react": "^6.9.0",
"mocha": "^6.2.1"
}
}