-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.31 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
{
"name": "steemconnect-firebase-functions",
"version": "2.0.3",
"description": "A TypeScript library that can help you build applications with SteemConnect and Firebase.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
"test-watch": "mocha --watch --watch-extensions ts -r ts-node/register tests/**/*.spec.ts",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakipatryk/steemconnect-firebase-functions.git"
},
"keywords": [
"steemconnect",
"steem",
"firebase"
],
"author": "jakipatryk (https://steemit.com/@jakipatryk)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jakipatryk/steemconnect-firebase-functions/issues"
},
"homepage": "https://github.com/jakipatryk/steemconnect-firebase-functions#readme",
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/es6-promise": "^3.3.0",
"@types/mocha": "^2.2.48",
"@types/node": "^9.4.0",
"@types/request-promise": "^4.1.41",
"chai": "^4.1.2",
"mocha": "^5.0.0",
"nock": "^9.1.6",
"sinon": "^4.2.2",
"ts-node": "^4.1.0",
"typescript": "^2.8.1"
},
"dependencies": {
"request": "^2.85.0",
"request-promise": "^4.2.2"
}
}