-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.68 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.68 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
{
"name": "js-tracker",
"version": "1.1.1",
"description": "Client Side xAPI-SG Tracker Asset written in JavaScript",
"type": "module",
"main": "dist/js-tracker.bundle.cjs",
"module": "dist/js-tracker.bundle.js",
"types": "dist/types/js-tracker.bundle.d.ts",
"exports": {
".": {
"types": "./dist/types/js-tracker.bundle.d.ts",
"import": "./dist/js-tracker.bundle.js",
"require": "./dist/js-tracker.bundle.cjs"
}
},
"repository": "https://github.com/e-ucm/js-tracker",
"author": "e-UCM Research Group",
"license": "Apache-2.0",
"scripts": {
"build:types": "npx tsc --project tsconfig.json",
"build:webpack": "webpack && rollup -c",
"build": "npm run build:webpack && npm run build:types",
"eslint-fix": "eslint . --fix",
"lint": "jshint --verbose . && npm run eslint-fix",
"test": "npm run lint && mocha",
"test-travis": "npm run lint && ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- --recursive -R spec"
},
"dependencies": {
"@xapi/xapi": "3.0.0",
"crypto": "1.0.1",
"express": "5.1.0",
"keycloak-js": "26.2.0",
"ms": "^2.1.3",
"open": "10.1.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@eslint/compat": "^1.1.0",
"@rollup/plugin-terser": "^0.4.4",
"axios": "^1.9.0",
"babel-loader": "9.1.3",
"chai": "^5.1.1",
"eslint": "^9.5.0",
"eslint-plugin-node": "^11.1.0",
"istanbul": "0.4.5",
"jshint": "2.13.6",
"lodash.clonedeep": "^4.5.0",
"mocha": "^10.8.2",
"moment": "2.30.1",
"rollup": "^4.44.1",
"terser-webpack-plugin": "5.3.14",
"typescript": "^5.8.3",
"webpack": "^5.99.9",
"webpack-cli": "5.1.4"
}
}