-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.03 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
{
"name": "plans-de-compte",
"version": "1.0.0",
"description": "Un outil pour récupérer des plans de compte à partir de <DocumentBudgetaire>s",
"main": "bin/plans-de-compte.js",
"type": "module",
"bin": {
"plans-de-compte": "./bin/plans-de-compte.js"
},
"scripts": {
"start": "node bin/plans-de-compte.js",
"test": "mocha tests/automated",
"fix": "eslint . --fix"
},
"engines": {
"node": ">=14"
},
"engineStrict": true,
"repository": {
"type": "git",
"url": "git+https://github.com/dtc-innovation/plans-de-compte.git"
},
"keywords": [],
"author": "David Bruant <bruant.d@gmail.com> (https://twitter.com/DavidBruant)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dtc-innovation/plans-de-compte/issues"
},
"homepage": "https://github.com/dtc-innovation/plans-de-compte#readme",
"dependencies": {
"commander": "^2.19.0",
"got": "^11.8.2",
"node-xml-stream-parser": "^1.0.7"
},
"devDependencies": {
"eslint": "^5.14.1",
"mocha": "^8.3.2"
}
}