Files
scorm-again/package.json
Jonathan Putney 3103707aec cmi.core.suspend_data vs. cmi.suspend_data
It seems to be a common issue that some SCORM 1.2 modules are trying to store "suspend_data" in cmi.core.suspend_data instead of cmi.suspend_data, which is actually the correct field according to the spec. We're still only storing it once, but will allow getting and setting from cmi.core.suspend_data. Exported JSON will continue to only output spec compliant data.
2020-02-06 12:35:49 -05:00

59 lines
1.7 KiB
JSON

{
"name": "scorm-again",
"version": "1.0.3",
"description": "A modern SCORM JavaScript run-time library for AICC, SCORM 1.2, and SCORM 2004",
"main": "dist/scorm-again.min.js",
"directories": {
"test": "test"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/node": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/plugin-proposal-private-methods": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-flow": "^7.8.3",
"@babel/register": "^7.8.3",
"@types/chai": "^4.2.7",
"babel-eslint": "^11.0.0-beta.2",
"babelify": "^10.0.0",
"browserify": "^16.5.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.20.0",
"grunt": "^1.0.4",
"grunt-browserify": "^5.3.0",
"grunt-cli": "^1.3.2",
"grunt-mocha-test": "^0.13.3",
"jsdoc": "^3.6.3",
"jsdoc-babel": "^0.5.0",
"minifyify": "^7.3.5",
"mocha": "^7.0.0",
"mocha-junit-reporter": "^1.23.2",
"mochawesome": "^4.1.0",
"nyc": "^15.0.0"
},
"scripts": {
"test": "./node_modules/.bin/mocha --require @babel/register --bdd --recursive --reporter list"
},
"repository": {
"type": "git",
"url": "https://github.com/jcputney/scorm-again.git"
},
"keywords": [
"scorm",
"aicc",
"cmi"
],
"author": "Jonathan Putney <jonathan@putney.io>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/jcputney/scorm-again/issues"
},
"homepage": "https://github.com/jcputney/scorm-again",
"dependencies": {}
}