This repository was archived by the owner on Dec 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.82 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
{
"name": "karma-store-redis",
"description": "simple karma-store",
"version": "0.3.1",
"author": "Keisuke Kan <@9renpoto>",
"bugs": {
"url": "https://github.com/9renpoto/karma-store/pulls"
},
"dependencies": {
"@sentry/node": "^5.9.0",
"@types/lodash.random": "^3.2.6",
"@types/redis": "^2.8.14",
"cron": "^1.7.2",
"lodash.random": "^3.2.0",
"moment": "^2.24.0",
"redis": "^2.8.0"
},
"devDependencies": {
"@9renpoto/eslint-config-typescript": "5.4.0",
"@types/cron": "1.7.1",
"@types/faker": "4.1.8",
"@types/mocha": "5.2.7",
"@types/node": "12.12.22",
"@types/power-assert": "1.5.2",
"codecov": "3.6.1",
"eslint": "6.8.0",
"espower-typescript": "9.0.2",
"faker": "4.1.0",
"husky": "3.1.0",
"lint-staged": "9.5.0",
"mocha": "6.2.2",
"nyc": "15.0.0",
"power-assert": "1.6.1",
"prettier-eslint-cli": "5.0.0",
"rimraf": "3.0.0",
"ts-node": "8.5.4",
"typescript": "3.7.4"
},
"directories": {
"test": "test/"
},
"files": ["lib"],
"homepage": "https://github.com/9renpoto/karma-store#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": ["karma", "redis"],
"license": "MIT",
"lint-staged": {
"*.ts": ["prettier-eslint --write", "git add"],
"*.{md,json}": ["prettier --write", "git add"]
},
"main": "lib/store.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/9renpoto/karma-store.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib coverage .nyc_output",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "eslint . --ext=ts",
"prebuild": "npm run clean",
"prepublish": "npm run build",
"test": "TS_NODE_TRANSPILE_ONLY=1 NODE_ENV=test nyc mocha -- test/*.test.ts"
}
}