forked from VilledeMontreal/node-scripting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.99 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
77
{
"name": "@villedemontreal/scripting",
"version": "2.1.7",
"description": "Scripting core utilities",
"main": "dist/src/index.js",
"typings": "dist/src",
"files": [
"src",
"dist",
"assets"
],
"scripts": {
"start": "node run test",
"compile": "node run compile",
"test": "node run test",
"lint": "node run lint",
"lint-fix": "node run lint-fix",
"watch": "node run watch",
"sonar-init": "node run sonar-init",
"sonar": "node run sonar"
},
"repository": {
"type": "git",
"url": "https://github.com/villedemontreal/node-scripting.git"
},
"homepage": "https://github.com/villedemontreal/node-scripting.git",
"keywords": [
"montreal",
"node.js",
"utilities",
"scripts",
"scripting"
],
"author": "Ville de Montréal",
"license": "MIT",
"dependencies": {
"@caporal/core": "2.0.2",
"@types/fs-extra": "9.0.13",
"@types/lodash": "4.14.184",
"@villedemontreal/general-utils": "5.16.8",
"fs-extra": "10.1.0",
"is-class": "0.0.9",
"java-properties": "1.0.2",
"lodash": "4.17.21",
"node-notifier": "10.0.1",
"sonar-scanner": "3.1.0",
"superagent": "7.1.6"
},
"devDependencies": {
"@types/chai": "4.3.1",
"@types/chai-as-promised": "7.1.5",
"@types/chai-string": "1.4.2",
"@types/mocha": "9.1.1",
"@types/node-notifier": "8.0.2",
"@types/sinon": "10.0.11",
"@types/sinon-chai": "3.2.8",
"@types/superagent": "4.1.15",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"chai": "4.3.6",
"chai-as-promised": "7.1.1",
"chai-string": "1.5.0",
"eslint": "8.18.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"mocha": "9.1.3",
"mocha-jenkins-reporter": "0.4.7",
"mock-spawn": "0.2.6",
"nock": "13.2.7",
"nyc": "15.1.0",
"prettier": "2.7.1",
"sinon": "14.0.0",
"sinon-chai": "3.7.0",
"source-map-support": "0.5.21",
"typescript": "4.7.4"
}
}