-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.42 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
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@imqueue/tag-cache",
"version": "1.6.0",
"description": "Tagged Cache implementation over redis",
"keywords": [],
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"mocha": "nyc mocha",
"show:test": "/usr/bin/env node -e \"import('open').then(open => open.default('file://`pwd`/coverage/index.html',{wait:false}));\"",
"show:doc": "/usr/bin/env node -e \"import('open').then(open => open.default('file://`pwd`/docs/index.html',{wait:false}));\"",
"test": "npm run build && npm run mocha && npm run show:test",
"clean:dts": "find . -name '*.d.ts' -not -wholename '*node_modules*' -type f -delete",
"clean:map": "find . -name '*.js.map' -not -wholename '*node_modules*' -type f -delete",
"clean:js": "find . -name '*.js' -not -wholename '*node_modules*' -type f -delete",
"clean:test": "rm -rf .nyc_output coverage",
"clean:doc": "rm -rf docs",
"clean": "npm run clean:test && npm run clean:dts && npm run clean:map && npm run clean:js && npm run clean:doc",
"doc": "npm run clean:doc && typedoc --excludePrivate --excludeExternals --hideGenerator --exclude \"**/+(debug|test|node_modules|docs|coverage|.nyc_output)/**/*\" --out ./docs . && npm run show:doc",
"start": "npm run migrate ; NODE_ENV=production /usr/bin/env node ./index.js",
"dev:ts": "NODE_ENV=development ts-node index.ts",
"dev": "npm run clean:dts && npm run clean:map && npm run clean:js && ./node_modules/nodemon/bin/nodemon.js",
"docker:build": "tsc && docker build -f Dockerfile -t metrc .",
"docker:run": "docker run --rm -it --name metrc metrc",
"docker:stop": "docker stop metrc",
"docker:ssh": "docker exec -it metrc sh",
"migrate": "sequelize db:migrate",
"help": "npm-scripts-help"
},
"repository": {
"type": "git",
"url": "[email protected]:/imqueue/tag-cache"
},
"bugs": {
"url": "https://github.com/imqueue/tag-cache/issues"
},
"homepage": "https://github.com/imqueue/tag-cache",
"author": "imqueue.com <[email protected]>",
"license": "ISC",
"dependencies": {
"@imqueue/rpc": "^1.17.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.9",
"@types/mock-require": "^3.0.0",
"@types/node": "^22.9.0",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"@typescript-eslint/typescript-estree": "^8.13.0",
"chai": "^5.1.2",
"eslint": "^9.14.0",
"globals": "^15.12.0",
"minimist": "^1.2.8",
"mocha": "^10.2.0",
"mocha-lcov-reporter": "^1.3.0",
"mock-require": "^3.0.3",
"npm-scripts-help": "^0.8.0",
"nyc": "^17.1.0",
"open": "^9.1.0",
"reflect-metadata": "^0.2.2",
"sinon": "^19.0.2",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typedoc": "^0.26.11",
"typescript": "^5.2.2"
},
"main": "index.js",
"typescript": {
"definitions": "index.d.ts"
},
"mocha": {
"require": [
"ts-node/register",
"source-map-support/register"
],
"recursive": true,
"bail": true,
"full-trace": true
},
"nyc": {
"check-coverage": false,
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"**/test/**"
],
"require": [
"ts-node/register"
],
"reporter": [
"html",
"text",
"text-summary",
"lcovonly"
]
}
}