forked from AugurProject/augur-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.26 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.26 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "augur-node",
"version": "0.1.0",
"description": "Augur Node",
"author": "The Augur Developers <team@augur.net>",
"license": "MIT",
"main": "build/index.js",
"typings": "definitions/index",
"typescript": {
"definition": "definitions/index"
},
"engines": {
"node": "~8"
},
"directories": {
"src": "src",
"test": "test"
},
"scripts": {
"start": "node ./build",
"test": "mocha test",
"lint": "tslint -c tslint.json -p . ./src/*.ts ./src/**/*.ts ./src/**/**/*.ts ./src/**/**/**/*.ts && eslint test",
"build": "tsc",
"migrate": "node ./node_modules/knex/bin/cli.js migrate:latest --env build",
"migrate_pg": "node ./node_modules/knex/bin/cli.js migrate:latest --env build_postgres",
"seed": "node ./node_modules/knex/bin/cli.js seed:run --env build",
"migrate:make": "node ./node_modules/knex/bin/cli.js migrate:make -x ts $1",
"coverage": "istanbul cover --include-all-sources --root ./build ./node_modules/mocha/bin/_mocha test",
"postinstall": "postinstall-build build",
"postdeploy": "npm run migrate_pg"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AugurProject/augur-node.git"
},
"bugs": {
"url": "https://github.com/AugurProject/augur-node/issues"
},
"homepage": "https://github.com/AugurProject/augur-node#readme",
"dependencies": {
"@types/knex": "0.0.61",
"@types/lodash": "4.14.77",
"@types/uuid": "3.4.3",
"async": "1.5.2",
"augur.js": "4.5.13",
"bignumber.js": "4.1.0",
"knex": "0.13.0",
"lodash.isnull": "3.0.0",
"lodash.merge": "4.6.0",
"lodash.omit": "4.5.0",
"pg": "7.3.0",
"postinstall-build": "5.0.1",
"sqlite3": "3.1.8",
"uuid": "3.1.0",
"ws": "3.2.0"
},
"devDependencies": {
"@types/async": "2.0.43",
"@types/bignumber.js": "4.0.3",
"@types/node": "8.0.31",
"@types/sqlite3": "3.1.1",
"@types/ws": "3.0.2",
"chai": "3.5.0",
"coveralls": "2.11.3",
"eslint": "3.17.1",
"istanbul": "0.4.1",
"mocha": "3.2.0",
"mocha-lcov-reporter": "0.0.2",
"proxyquire": "1.7.11",
"tslint": "5.7.0",
"tslint-eslint-rules": "4.1.1",
"typescript": "2.5.2"
},
"buildDependencies": [
"typescript",
"tslint",
"tslint-eslint-rules"
]
}