-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
59 lines (59 loc) · 1.51 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
{
"name": "coinboss",
"version": "0.0.1",
"description": "Automagically buy BTC, ETH or LTC on Coinbase, based on user defined thresholds.",
"author": "Nick den Engelsman",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/nicka/coinboss"
},
"scripts": {
"build": "source .env.$STAGE && sls package",
"deploy": "source .env.$STAGE && sls deploy --verbose",
"test": "eslint . && jest",
"serve": "source .env.$STAGE && sls webpack serve"
},
"dependencies": {
"coinbase": "^2.0.6"
},
"devDependencies": {
"aws-sdk": "^2.66.0",
"aws-sdk-mock": "^1.7.0",
"babel-core": "^6.25.0",
"babel-jest": "^20.0.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"coveralls": "^2.13.1",
"eslint": "^4.0.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.3.0",
"jest": "^20.0.4",
"nock": "^9.0.13",
"serverless": "^1.15.1",
"serverless-plugin-diff": "^1.3.0",
"serverless-webpack": "^1.0.0-rc.4",
"webpack": "^2.6.1",
"webpack-node-externals": "^1.6.0"
},
"jest": {
"bail": true,
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 79,
"functions": 100,
"lines": 96,
"statements": 88
}
},
"testPathIgnorePatterns": [
"/dist/",
"/.webpack/"
],
"verbose": true
}
}