This repository has been archived by the owner on Oct 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
56 lines (56 loc) · 1.68 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
{
"name": "ct-api-server",
"version": "1.0.0",
"description": "API server for the CryptoTerminal mobile application",
"private": true,
"main": "server.js",
"dependencies": {
"async": "2.6.1",
"bignumber.js": "8.0.1",
"bitcoinjs-lib": "4.0.2",
"body-parser": "1.18.3",
"express": "4.16.4",
"mkdirp": "0.5.1",
"moment": "2.23.0",
"primus": "7.3.2",
"request": "2.88.0",
"uglify-js": "3.4.9",
"underscore": "1.9.1",
"ws": "6.1.2",
"zeromq": "5.1.0"
},
"devDependencies": {
"chai": "4.2.0",
"chai-http": "4.2.0",
"eslint": "5.11.1",
"mocha": "5.2.0"
},
"scripts": {
"lint": "node_modules/.bin/eslint --config .eslintrc.js *.js controllers/**/*.js lib/**/*.js middleware/**/*.js providers/**/*.js services/**/*.js test/**/*.js",
"prepublish": "npm run test # runs before `npm publish`",
"pretest": "npm run lint # runs before `npm test`",
"start": "node server.js",
"test": "npm run test:unit && npm run test:integration",
"test:integration": "node_modules/.bin/mocha test/integration/ --recursive --reporter spec --ui bdd --exit",
"test:unit": "node_modules/.bin/mocha test/unit/ --recursive --reporter spec --ui bdd --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samotari/ct-api-server.git"
},
"author": {
"name": "Charles Hill",
"email": "[email protected]"
},
"contributors": [
{
"name": "Carlos Garcia Ortiz",
"email": "[email protected]"
}
],
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/samotari/ct-api-server/issues"
},
"homepage": "https://github.com/samotari/ct-api-server#readme"
}