-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 897 Bytes
/
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
{
"name": "tb-back",
"version": "0.0.1",
"description": "A Serverless Project and its Serverless Plugin dependencies.",
"author": "me",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "git://github.com/"
},
"scripts": {
"test": "tsc && tape -- '**/*.tap.js' | tap-spec",
"test-cov": "tsc && istanbul --config=.istanbul.none.yml cover tape -- '**/*.tap.js' | tap-spec",
"test-cov-html": "tsc && istanbul cover tape -- '**/*.tap.js' | tap-spec",
"compile": "tsc",
"compile-w": "tsc --watch"
},
"devDependencies": {
"aws-sdk": "^2.2.12",
"istanbul": "^0.4.2",
"tap-spec": "^4.1.1",
"tape": "^4.5.1",
"typings": "^0.7.9",
"sinon": "^1.17.3"
},
"dependencies": {
"bluebird": "^3.0.5",
"coinbase": "^2.0.4",
"ramda": "^0.18.0",
"range_check": "^1.2.0",
"request": "^2.67.0"
}
}