-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
76 lines (76 loc) · 2 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
76
{
"name": "@villedemontreal/general-utils",
"version": "5.17.5",
"description": "General utilities library",
"main": "dist/src/index.js",
"engines": {
"node": ">=16"
},
"typings": "dist/src",
"files": [
"src",
"dist"
],
"scripts": {
"start": "npm run test",
"test": "npm run compile && mocha --require ts-node/register ./**/*.test.ts",
"compile": "tsc --build",
"lint": "node run lint",
"lint-fix": "node run lint-fix",
"tslint": "echo 'not yet implemented'",
"tslint-fix": "echo 'not yet implemented'",
"prettier": "echo 'not yet implemented'",
"prettier-fix": "echo 'not yet implemented'",
"watch": "echo 'not yet implemented'"
},
"repository": {
"type": "git",
"url": "https://github.com/villedemontreal/node-general-utils.git"
},
"homepage": "https://github.com/villedemontreal/node-general-utils",
"keywords": [
"montreal",
"utils",
"utilities",
"library",
"general"
],
"author": "Ville de Montréal",
"license": "MIT",
"dependencies": {
"@types/app-root-path": "1.2.8",
"@types/lodash": "4.17.7",
"@types/luxon": "3.4.2",
"app-root-path": "3.1.0",
"get-port": "5.1.1",
"globby": "14.0.2",
"http-status-codes": "2.3.0",
"lodash": "4.17.21",
"luxon": "3.5.0",
"moment": "2.30.1",
"rimraf": "6.0.1",
"tsconfig-extends": "1.0.1"
},
"devDependencies": {
"@types/chai": "4.3.19",
"@types/fs-extra": "11.0.4",
"@types/mocha": "10.0.8",
"@types/node": "20.x",
"@types/sinon": "17.0.3",
"@typescript-eslint/eslint-plugin": "5.39.0",
"@villedemontreal/scripting": "2.1.8",
"@types/uuid": "10.0.0",
"chai": "4.5.0",
"eslint": "8.24.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "5.1.3",
"fs-extra": "11.2.0",
"mocha": "10.7.3",
"mocha-jenkins-reporter": "0.4.8",
"sinon": "19.0.2",
"source-map-support": "0.5.21",
"ts-node": "^10.9.2",
"typescript": "5.6.2",
"uuid": "10.0.0"
}
}