forked from incubateur-ademe/nosgestesclimat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 2.46 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
{
"name": "nosgestesclimat",
"version": "1.6.0",
"description": "Le modèle de calcul d'empreinte climat individuelle de consommation",
"engines": {
"node": ">=18"
},
"scripts": {
"compile:md": "node scripts/rulesToJSON.mjs --markdown && node scripts/personasToJSON.js --markdown && node scripts/documentationToJSON.js --markdown",
"compile": "node scripts/rulesToJSON.mjs && node scripts/personasToJSON.js && node scripts/documentationToJSON.js",
"compile:fr": "node scripts/rulesToJSON.mjs -o FR && node scripts/personasToJSON.js && node scripts/documentationToJSON.js",
"compile:personas": "node scripts/personasToJSON.js",
"compile:rules": "node scripts/rulesToJSON.mjs",
"compile:rules-watch": "nodemon -e \"yaml js mjs\" --watch data/ --watch scripts/ scripts/rulesToJSON.mjs",
"compile-watch": "nodemon -e \"yaml js mjs\" --watch data/ --watch scripts/ scripts/rulesToJSON.mjs & nodemon -e yaml --watch personas/ scripts/personasToJSON.js & nodemon -e md --watch contenu-ecrit/ scripts/documentationToJSON.js ",
"test:personas": "node tests/testPersonas.js",
"test:optim": "node tests/testOptim.js",
"translate": "node scripts/i18n/translate-rules.js && node scripts/i18n/translate-personas.js",
"check:personas": "node scripts/i18n/check-personas.js ",
"translate:personas": "node scripts/i18n/translate-personas.js",
"check:rules": "node scripts/i18n/check-translation.js",
"translate:rules": "node scripts/i18n/translate-rules.js",
"generate:servicesRules": "node scripts/services-societaux/analyze_naf_ca.js && node scripts/services-societaux/desagregate_naf_SDES.js && node scripts/services-societaux/generate_rules.js",
"translate:model": "node scripts/i18n/translateRegionModel.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/betagouv/ecolab-data.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/betagouv/ecolab-data/issues"
},
"homepage": "https://github.com/betagouv/ecolab-data#readme",
"dependencies": {
"csv-parser": "^3.0.0",
"futureco-data": "^0.0.1-beta.7",
"glob": "^8.0.3",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"publicodes": "1.0.0-beta.67",
"publiopti": "^0.1.25",
"yaml": "^2.2.2"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"cli-progress": "^3.11.2",
"deepl-node": "^1.7.0",
"dotenv": "^16.0.3",
"git-diff": "^2.0.6",
"isomorphic-fetch": "^3.0.0",
"piscina": "^3.2.0",
"prompt-sync": "^4.2.0",
"ramda": "^0.28.0",
"yargs": "^17.6.0"
}
}