-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
56 lines (56 loc) · 1.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
{
"name": "h5p-dictation",
"version": "1.3.9",
"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.26.0",
"@babel/preset-env": "^7.26.0",
"@jest/globals": "^29.7.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"eslint-config-snordian-h5p": "github:otacke/eslint-config-snordian-h5p",
"eslint-plugin-jest": "^28.9.0",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.9.2",
"regenerator-runtime": "^0.14.1",
"sass": "^1.80.6",
"sass-loader": "^16.0.3",
"stylelint": "^16.10.0",
"stylelint-config-recommended": "^14.0.1",
"stylelint-config-recommended-scss": "^14.1.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"browserslist": "> 0.5%, last 2 versions, Firefox ESR, not dead",
"type": "module"
}