-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.47 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
{
"name": "dojo-dl",
"version": "1.0.1",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"dojo-dl": "dist/index.js"
},
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc -p .",
"build-start": "tsc -p . && node --trace-warnings ./dist/index.js",
"single-build": "esbuild src/index.ts --bundle --platform=node --outfile=dojo-dl-single-file.js",
"prettier": "prettier --write \"src/**/*.ts\"",
"test": "npx mocha --require ts-node/register ./test/**/*.test.ts"
},
"keywords": [],
"author": {
"email": "[email protected]",
"name": "Emmanuel Counasse",
"url": "https://github.com/manuc66"
},
"license": "MIT",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.9",
"@types/chai-string": "^1.4.4",
"@types/config": "^3.3.2",
"@types/mocha": "^10.0.3",
"@types/node": "^22.1.0",
"@types/tough-cookie": "^4.0.5",
"chai": "^4.3.10",
"chai-string": "^1.5.0",
"eslint": "^9.8.0",
"mocha": "^10.2.0",
"nyc": "^17.0.0",
"prettier": "^3.0.3",
"ts-mockito": "^2.6.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"yarn": "^1.22.19",
"esbuild": "^0.24.0",
"deasync": "^0.1.29"
},
"dependencies": {
"axios": "^1.6.0",
"axios-cookiejar-support": "^5.0.0",
"dotenv": "^16.3.1",
"mkdirp": "^3.0.1",
"moment": "^2.29.4",
"tough-cookie": "^5.0.0",
"uuid": "^11.0.3"
},
}