-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.73 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
{
"name": "@creditkarma/shard-manager",
"version": "0.0.0",
"description": "A shard manager for Node.js written in TypeScript",
"main": "dist/main/index.js",
"types": "dist/main/index.d.ts",
"files": [
"dist/main"
],
"keywords": [
"TypeScript",
"Node.js",
"database",
"sharding",
"mysql"
],
"scripts": {
"clean": "rimraf ./coverage ./dist ./**/codegen",
"clean-all": "npm run clean && rimraf node_modules ./package-lock.json",
"format": "prettier --write src/**/*.ts",
"prebuild": "npm run clean && npm run format",
"build": "npm run lint && tsc",
"build:watch": "tsc --watch",
"lint": "tslint --fix 'src/**/*.ts'",
"test": "npm run test:unit && npm run test:integration",
"test:pr": "npm run build && npm run test",
"test:unit": "lab src/tests/unit/",
"pretest:integration": "docker-compose --file src/tests/integration/docker-compose.yml up --force-recreate -d",
"test:integration": "lab src/tests/integration/",
"posttest:integration": "docker-compose --file src/tests/integration/docker-compose.yml down"
},
"author": "Credit Karma",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/creditkarma/thrift-typescript"
},
"devDependencies": {
"@types/code": "^4.0.4",
"@types/lab": "^11.1.0",
"@types/mysql": "^2.15.5",
"code": "^4.1.0",
"lab": "^16.0.0",
"lab-transform-typescript": "^3.0.1",
"mysql": "^2.1.0",
"node-murmurhash": "^2.1.0",
"prettier": "^1.14.3",
"rimraf": "^2.6.2",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-plugin-prettier": "^2.0.0",
"typescript": "3.1.x"
},
"dependencies": {
"@types/node": "^10.11.6"
}
}