-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.82 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.82 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
57
58
59
60
61
62
{
"name": "react-scorm",
"version": "1.0.0",
"description": "An easy way to use SCORM with your React e-learning platform or whatever application that uses LMS. React-scorm provides a Context Component and a Custom Hook to use and manipulate SCORM variables and functions across your system.",
"main": "index.js",
"scripts": {
"dev": "concurrently \"npm run dist:watch\" \"npm run docs\"",
"dist": "babel src/dist -d dist --copy-files",
"dist:watch": "babel src/dist -w -d dist --copy-files",
"docs": "webpack serve --mode development",
"docs:prod": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/henriiqueg/react-scorm.git"
},
"keywords": [
"react",
"scorm",
"scorm1.2",
"scorm2004",
"lms",
"sco",
"elearning",
"e-learning",
"wrapper",
"api"
],
"peerDependencies": {
"react": "^16.4.2",
"react-dom": "^16.4.2"
},
"dependencies": {
"pipwerks-scorm-api-wrapper": "^0.1.2",
"prop-types": "^15.7.2"
},
"author": "Henrique Gonçalves",
"license": "MIT",
"bugs": {
"url": "https://github.com/henriiqueg/react-scorm/issues"
},
"homepage": "https://github.com/henriiqueg/react-scorm#readme",
"devDependencies": {
"@babel/cli": "^7.12.17",
"@babel/core": "^7.12.17",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.12.17",
"@babel/preset-env": "^7.12.17",
"@babel/preset-react": "^7.12.13",
"babel-loader": "^8.2.2",
"concurrently": "^6.0.0",
"css-loader": "^5.0.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.2.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"style-loader": "^2.0.0",
"webpack": "^5.23.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
}
}