-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 2.85 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
{
"name": "sre-tests",
"version": "0.9.0",
"description": "Tests for SRE.",
"directories": {
"test": "tests"
},
"scripts": {
"format": "prettier --check ts/",
"format-fix": "prettier --write ts/",
"lint": "eslint ts/ --ext .ts,.tsx",
"lint-fix": "eslint ts/ --ext .ts,.tsx --fix",
"compile": "./node_modules/.bin/tsc",
"prepare": "pnpm clean; node tests.config.js; pnpm compile",
"webpack": "./node_modules/.bin/webpack",
"test": "pnpm -s test:files --",
"test:all": "pnpm test:files; pnpm test:output; pnpm test:analytics",
"test:files": "pnpm -s jest --testPathPattern js/json --",
"test:actions": "pnpm jest --testPathPattern js/actions",
"test:output": "pnpm jest --testPathPattern js/output",
"test:analytics": "pnpm rimraf analysis; pnpm jest --testPathPattern js/analyse; pnpm test:allrules",
"test:allrules": "echo \"import('./js/module_loader.js').then((m) => m.loadPromise('at')).then(m => m.default.outputAllRules())\" | node ",
"analyse:tries": "echo \"import('./js/module_loader.js').then((m) => m.loadPromise('atrie')).then(m => m.default.output())\" | node ",
"clean": "pnpm rimraf dist js ts/output ts/json ts/analyse ts/actions coverage"
},
"maintainers": [
"Volker Sorge <[email protected]> (http://www.cs.bham.ac.uk/~vxs)"
],
"bugs": {
"email": "[email protected]",
"url": "https://github.com/speech-rule-engine/sre-tests/issues"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/speech-rule-engine/sre-tests"
},
"keywords": [
"screen-reader",
"xml",
"svg",
"a11y"
],
"homepage": "https://github.com/speech-rule-engine/sre-tests",
"dependencies": {
"@google-cloud/storage": "7.3.2",
"@xmldom/xmldom": "^0.9.0-beta.11",
"eslint-config-prettier": "^9.0.0",
"esm": "3.2.25",
"firebase-admin": "^11.11.0",
"firebase-tools": "^12.7.0",
"jest": "^29.7.0",
"mathjax-full": "4.0.0-beta.4",
"wicked-good-xpath": "1.3.0"
},
"devDependencies": {
"@babel/preset-env": "7.23.2",
"@types/jest": "29.5.6",
"@types/node": "20.8.9",
"@typescript-eslint/eslint-plugin": "6.9.0",
"@typescript-eslint/parser": "6.9.0",
"babel-jest": "29.7.0",
"babel-plugin-transform-class-properties": "6.24.1",
"eslint": "8.52.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsdoc": "46.8.2",
"only-allow": "^1.2.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"terser-webpack-plugin": "5.3.9",
"ts-loader": "9.5.0",
"typescript": "^5.2.2",
"typescript-tools": "0.3.1",
"webpack": "5.89.0",
"webpack-cli": "5.1.4"
},
"files": [
"LICENSE",
"README.md",
"lib/"
],
"imports": {
"#mathjax/*": "mathjax-full/mjs/*",
"#sre/*": "speech-rule-engine/js/*"
},
"main": "dist/sretests.js",
"type": "module"
}