forked from Speech-Rule-Engine/sre-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.67 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
{
"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": "npm run clean; node tests.config.js; npm run compile",
"webpack": "./node_modules/.bin/webpack",
"test": "npm run test:files",
"test:all": "npm run test:files; npm run test:output; npm run test:analytics",
"test:files": "npx jest --testPathIgnorePatterns js/output --testPathIgnorePatterns js/analyse",
"test:output": "npx jest --testPathPattern js/output",
"test:analytics": "npx rimraf analysis; npx jest --testPathPattern js/analyse; npm run test:allrules",
"test:allrules": "echo \"import AnalyticsTest from './js/analytics/analytics_test'; AnalyticsTest.outputAllRules()\" | node -r esm",
"analyse:tries": "echo \"import AnalyticsTrie from './js/analytics/analytics_trie'; AnalyticsTrie.output()\" | node -r esm",
"clean": "npx 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": "6.4.1",
"eslint-config-prettier": "^8.5.0",
"esm": "3.2.25",
"firebase-admin": "^11.0.1",
"firebase-tools": "^11.8.0",
"jest": "29.0.1",
"mathjax-full": "3.2.2",
"npm-check-updates": "16.0.6",
"wicked-good-xpath": "1.3.0",
"xmldom-sre": "0.1.31"
},
"devDependencies": {
"@babel/preset-env": "7.18.10",
"@types/jest": "29.0.0",
"@types/node": "18.7.14",
"@typescript-eslint/eslint-plugin": "5.36.1",
"@typescript-eslint/parser": "5.36.1",
"babel-jest": "29.0.1",
"babel-plugin-transform-class-properties": "6.24.1",
"eslint": "8.23.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "39.3.6",
"prettier": "^2.7.1",
"terser-webpack-plugin": "5.3.6",
"ts-loader": "9.3.1",
"typescript": "4.8.2",
"typescript-tools": "0.3.1",
"webpack": "5.74.0",
"webpack-cli": "4.10.0"
},
"files": [
"LICENSE",
"README.md",
"lib/"
],
"main": "dist/sretests.js"
}