-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 3.1 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 3.1 KB
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
{
"name": "@imqueue/js",
"version": "2.0.1",
"description": "JavaScript routines for @imqueue framework",
"main": "index.js",
"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": "./node_modules/.bin/tsc && ./node_modules/.bin/nyc mocha && ./node_modules/.bin/nyc report --reporter=text-lcov",
"test-fast": "./node_modules/.bin/tsc && ./node_modules/.bin/nyc mocha && /usr/bin/env node -e \"import('open').then(open => open.default('file://`pwd`/coverage/index.html', { wait: false }))\"",
"test-local": "export COVERALLS_REPO_TOKEN=$IMQ_COVERALLS_TOKEN && npm test && /usr/bin/env node -e \"import('open').then(open => open.default('https://coveralls.io/github/imq/imq', { wait: false }))\"",
"test-dev": "npm run test && npm run clean-js && npm run clean-typedefs && npm run clean-maps",
"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": "rm -rf docs && typedoc --excludePrivate --excludeExternals --hideGenerator --exclude \"**/+(test|node_modules|docs|coverage|benchmark|.nyc_output)/**/*\" --out ./docs . && /usr/bin/env node -e \"import('open').then(open => open.default('file://`pwd`/docs/index.html',{wait:false}))\"",
"help": "npm-scripts-help"
},
"author": "imqueue.com <support@imqueue.com>",
"license": "GPL-3.0-only",
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.30.1",
"@types/chai": "^5.2.2",
"@types/mocha": "^10.0.10",
"@types/mock-require": "^3.0.0",
"@types/node": "^24.0.10",
"@types/sinon": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^8.35.1",
"@typescript-eslint/parser": "^8.35.1",
"chai": "^5.2.0",
"dotenv": "^17.0.1",
"eslint": "^9.30.1",
"globals": "^16.3.0",
"minimist": "^1.2.8",
"mocha": "^11.7.1",
"mocha-lcov-reporter": "^1.3.0",
"mock-require": "^3.0.3",
"npm-scripts-help": "^0.8.0",
"nyc": "^17.1.0",
"open": "^10.1.2",
"reflect-metadata": "^0.2.2",
"sinon": "^21.0.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typedoc": "^0.28.7",
"typescript": "^5.8.3"
},
"typescript": {
"definitions": "index.d.ts"
},
"nyc": {
"check-coverage": true,
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"**/test/**"
],
"require": [
"ts-node/register"
],
"reporter": [
"html",
"text",
"text-summary",
"lcovonly"
]
}
}