-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpackage.json
117 lines (117 loc) · 3.36 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "scorm-again",
"version": "2.6.0",
"description": "A modern SCORM JavaScript run-time library for AICC, SCORM 1.2, and SCORM 2004",
"main": "dist/scorm-again.js",
"types": "index.d.ts",
"module": "dist/esm/scorm-again.js",
"type": "module",
"browser": {
"electron": false
},
"browserslist": [
"> 1%",
"edge >= 16",
"safari >= 9",
"firefox >= 57",
"ie >= 11",
"ios >= 9",
"chrome >= 49"
],
"directories": {
"test": "test"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/node": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/eslint__js": "^8.42.3",
"@types/mocha": "^10.0.10",
"@types/sinon": "^17.0.3",
"babel-eslint": "^11.0.0-beta.2",
"babel-loader": "^9.2.1",
"babelify": "^10.0.0",
"browserify": "^17.0.1",
"c8": "^10.1.3",
"c8-as-nyc": "^1.1.11",
"eslint": "^9.16.0",
"eslint-formatter-junit": "^8.40.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.1",
"eslint-webpack-plugin": "^4.2.0",
"expect": "^29.7.0",
"fetch-pretender": "https://github.com/jcputney/fetch-pretender#master",
"globals": "^15.13.0",
"jsdoc": "^4.0.4",
"jsdoc-babel": "^0.5.0",
"minimist": "^1.2.8",
"miragejs": "^0.2.0-alpha.3",
"mocha": "^11.0.1",
"mocha-junit-reporter": "^2.2.1",
"mochawesome": "^7.1.3",
"prettier": "^3.4.2",
"sinon": "^19.0.2",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4"
},
"scripts": {
"test": "./node_modules/.bin/mocha --import=tsx --bdd --recursive --reporter list",
"test:coverage": "./node_modules/.bin/c8 ./node_modules/.bin/mocha --import=tsx --recursive --timeout=10000 --exit --reporter json --reporter-option output=test-results.json",
"compile": "./node_modules/.bin/webpack --bail --config webpack.config.js --mode production",
"fix": "./node_modules/.bin/eslint ./src --fix",
"prettier": "./node_modules/.bin/prettier --write src/**/*.ts test/**/*.ts src/*.ts test/*.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/jcputney/scorm-again.git"
},
"keywords": [
"scorm",
"aicc",
"cmi"
],
"author": "Jonathan Putney <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jcputney/scorm-again/issues"
},
"homepage": "https://github.com/jcputney/scorm-again",
"dependencies": {},
"c8": {
"extends": "@istanbuljs/nyc-config-typescript",
"check-coverage": true,
"all": true,
"include": [
"src/**/*.ts"
],
"exclude": [
"test/**/*.*",
"src/exports/*.*",
"src/interfaces/*.*",
"src/types/*.*",
"src/ScormAgain.ts"
],
"extension": [
".ts"
],
"reporter": [
"html",
"lcov",
"text",
"text-summary"
],
"report-dir": "coverage"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}