-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 967 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 967 Bytes
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
{
"name": "@openlearning/xapi",
"version": "1.0.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/OpenLearningNet/xapi.git"
},
"author": "David Collien <david@openlearning.com>",
"license": "MIT",
"description": "xAPI and CMI5 Library for OpenLearning Widgets",
"bugs": {
"url": "https://github.com/OpenLearningNet/xapi/issues"
},
"homepage": "https://github.com/OpenLearningNet/xapi#readme",
"scripts": {
"build": "tsc",
"bundle": "webpack",
"prepare": "npm run build",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2"
},
"files": [
"dist"
],
"dependencies": {
"babel-loader": "^8.2.3"
}
}