-
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) · 1.02 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.02 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
{
"name": "swdc-tracker",
"version": "1.6.1",
"description": "swdc event tracker",
"main": "dist",
"types": "dist/index.d.js",
"files": [
"dist"
],
"publisher": "softwaredotcom",
"author": "software",
"license": "SEE LICENSE IN LICENSE",
"prepublish": "tsc",
"scripts": {
"build": "tsc",
"prepare": "yarn build",
"test": "NODE_ENV=test yarn build && NODE_ENV=test mocha -r ts-node/register test/**/*.ts --reporter spec --timeout 20000 --exit",
"test-ci": "mocha -r ts-node/register test/**/*.ts --reporter spec --timeout 20000 --exit"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^10.0.10",
"chai": "^4.2.0",
"mocha": "^11.5.0",
"sinon": "^20.0.0",
"sinon-chai": "^3.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.0.0"
},
"dependencies": {
"@snowplow/node-tracker": "^4.6.2",
"@types/node": "^22.15.23",
"axios": "^1.12.2",
"libsodium": "^0.7.15",
"libsodium-wrappers": "^0.7.15",
"object-hash": "^3.0.0"
}
}