UNPKG

1.31 kBJSONView Raw
1{
2 "name": "@accounts/redis",
3 "version": "0.3.0-beta.25",
4 "description": "Redis adaptor for accounts",
5 "main": "lib/index.js",
6 "typings": "lib/index.d.ts",
7 "scripts": {
8 "clean": "rimraf lib",
9 "start": "tsc --watch",
10 "precompile": "yarn clean",
11 "compile": "tsc",
12 "prepublishOnly": "yarn compile",
13 "testonly": "jest",
14 "test:watch": "jest --watch",
15 "coverage": "yarn testonly --coverage"
16 },
17 "files": [
18 "src",
19 "lib"
20 ],
21 "publishConfig": {
22 "access": "public"
23 },
24 "jest": {
25 "transform": {
26 ".(ts|tsx)": "<rootDir>/../../node_modules/ts-jest/preprocessor.js"
27 },
28 "testRegex": "./__tests__/.*.ts$",
29 "moduleFileExtensions": [
30 "ts",
31 "js"
32 ]
33 },
34 "repository": {
35 "type": "git",
36 "url": "https://github.com/accounts-js/accounts/tree/master/packages/database-redis"
37 },
38 "author": "Leo Pradel",
39 "license": "MIT",
40 "devDependencies": {
41 "@accounts/database-tests": "^0.3.0-beta.25",
42 "@types/ioredis": "3.2.13",
43 "@types/jest": "23.3.1",
44 "@types/lodash": "4.14.115",
45 "@types/node": "10.5.4",
46 "@types/shortid": "0.0.29",
47 "jest": "23.4.2"
48 },
49 "dependencies": {
50 "@accounts/types": "^0.3.0-beta.25",
51 "ioredis": "^3.2.2",
52 "lodash": "^4.17.4",
53 "shortid": "^2.2.12"
54 }
55}