forked from mmkal/handy-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.54 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "handy-redis",
"version": "0.0.0-development",
"description": "A wrapper around node_redis with Promise and TypeScript support.",
"main": "dist/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"_": "echo \"these pass-through-to-docker scripts are mostly just as a hint for when I come back to this in a few weeks and forget what I'm supposed to do.\"",
"redis:up": "docker-compose up",
"redis:down": "docker-compose down",
"redis-cli": "docker-compose exec redis redis-cli",
"clean": "del-cli 'dist' 'src/generated' 'test/generated/**/*.ts' '**/*.js' '**/*.js.map' '!node_modules/**/*'",
"compile": "tsc -p .",
"prebuild": "ts-node -D scripts/generate-types && ts-node scripts/generate-tests",
"build": "tsc -p .",
"test": "jest --runInBand --forceExit --detectOpenHandles",
"lint": "tslint **/*.ts",
"check-clean": "if [ \"$(git status --porcelain)\" != '' ]; then git status && exit 1; fi",
"ci": "run-s clean build test lint check-clean",
"prerelease": "tsc -p src",
"release": "semantic-release",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/mmkal/handy-redis.git"
},
"keywords": [
"redis",
"typescript"
],
"author": "mmkal",
"license": "ISC",
"bugs": {
"url": "https://github.com/mmkal/handy-redis/issues"
},
"homepage": "https://github.com/mmkal/handy-redis#readme",
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": ".*.test.ts$",
"testURL": "http://localhost",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"nyc": {
"include": [
"src/*"
]
},
"prettier": {
"tabWidth": 4
},
"dependencies": {
"@types/redis": "^2.8.6",
"redis": "^2.8.0"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.0",
"@types/jest": "^23.3.1",
"@types/lodash": "^4.14.116",
"@types/node": "^7.0.69",
"@types/shelljs": "^0.7.9",
"@types/yamljs": "^0.2.30",
"coveralls": "^3.0.2",
"cross-spawn": "^6.0.5",
"del-cli": "^1.1.0",
"dotenv-extended": "^2.3.0",
"jest": "^23.5.0",
"lodash": "^4.17.10",
"npm-run-all": "^4.1.5",
"nyc": "^13.0.1",
"prettier": "^1.14.2",
"semantic-release": "^15.9.10",
"shelljs": "^0.7.7",
"shx": "^0.2.2",
"ts-jest": "^23.1.4",
"ts-node": "^3.0.2",
"tslint": "^5.11.0",
"typescript": "^3.0.1",
"yamljs": "^0.2.10"
}
}