-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.87 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
{
"name": "h5p-dictation",
"description": "Let your students train their listening comprehension and spelling skills.",
"scripts": {
"test": "jest",
"lint": "stylelint './src/**/*.scss' && eslint './src/**/*.js' && eslint './test/**/*.js'",
"build": "webpack --mode=production",
"watch": "webpack --mode=development --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/otacke/h5p-dictation.git"
},
"keywords": [],
"author": "Oliver Tacke",
"license": "MIT",
"bugs": {
"url": "https://github.com/otacke/h5p-dictation/issues"
},
"homepage": "https://github.com/otacke/h5p-dictation#readme",
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/test/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/src/stylesheets/",
"^@services(.*)$": "<rootDir>/src/scripts/services$1",
"^@scripts(.*)$": "<rootDir>/src/scripts$1"
},
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/src/stylesheets/"
]
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@babel/preset-env": "^7.29.7",
"@jest/globals": "^30.4.1",
"babel-jest": "^30.4.1",
"babel-loader": "^10.1.1",
"css-loader": "^7.1.4",
"eslint-config-snordian-h5p": "github:otacke/eslint-config-snordian-h5p",
"eslint-plugin-jest": "^29.16.2",
"jest": "^30.4.2",
"mini-css-extract-plugin": "^2.10.2",
"regenerator-runtime": "^0.14.1",
"sass": "^1.103.1",
"sass-loader": "^17.0.0",
"stylelint": "^17.14.1",
"stylelint-config-recommended": "^18.0.0",
"stylelint-config-recommended-scss": "^17.0.1",
"terser-webpack-plugin": "^5.6.1",
"webpack": "^5.110.0",
"webpack-cli": "^7.2.2"
},
"browserslist": "> 0.5%, last 2 versions, Firefox ESR, not dead",
"type": "module"
}