-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
75 lines (75 loc) · 2.21 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
{
"name": "@xapi/cmi5",
"version": "1.4.0",
"description": "Communicate over the xAPI cmi5 profile using JavaScript.",
"module": "dist/Cmi5.esm.js",
"browser": "dist/Cmi5.umd.js",
"typings": "dist/types/Cmi5.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"prepublishOnly": "npm run build",
"clean": "rimraf ./dist",
"build:js": "rollup --config --bundleConfigAsCjs",
"build:types": "tsc --emitDeclarationOnly",
"build": "npm run clean && npm run build:types && npm run build:js",
"format": "prettier --write '**/*.{js,jsx,json,ts,tsx}'",
"lint": "eslint . --ext .ts,.js",
"test": "jest test/*",
"test:audit": "npm audit --audit-level=moderate --production",
"test:format": "prettier --check '**/*.{js,jsx,json,ts,tsx}'",
"test:types": "tsc --noEmit",
"test:watch": "jest test/* --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/xapijs/cmi5.git"
},
"keywords": [
"xapi",
"cmi5",
"profile",
"typescript"
],
"author": "Christian Cook",
"license": "MIT",
"bugs": {
"url": "https://github.com/xapijs/cmi5/issues"
},
"homepage": "https://www.xapijs.dev",
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^29.5.7",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"axios-mock-adapter": "^1.22.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mockdate": "^3.0.5",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"rollup": "^4.3.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@xapi/xapi": "^2.2.4",
"axios": "^1.6.0",
"deepmerge": "^4.3.1",
"uuid": "^9.0.1"
}
}