-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.09 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
{
"name": "xapi-tracker",
"version": "1.0.0",
"description": "Client Side Tracker Asset written in JavaScript",
"main": "src/js-tracker.js",
"repository": "https://github.com/e-ucm/js-tracker",
"author": "e-UCM Research Group",
"license": "Apache-2.0",
"scripts": {
"build": "webpack",
"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": {
"axios": "1.7.7",
"lodash.clonedeep": "^4.5.0",
"moment": "2.30.1"
},
"devDependencies": {
"@eslint/compat": "^1.1.0",
"axios": "1.7.7",
"chai": "^5.1.1",
"coveralls": "3.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.5.1",
"moment": "2.30.1",
"webpack": "^5.92.1",
"webpack-cli": "5.1.4",
"terser-webpack-plugin": "5.3.10",
"babel-loader": "9.1.3"
}
}