-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.22 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
{
"name": "iati-flattener",
"version": "1.0.10",
"description": "Flattens IATI documents in preparation to be indexed into Solr",
"license": "AGPL-3.0-or-later",
"type": "module",
"scripts": {
"start": "func start --javascript",
"start:verbose": "func start --javascript --verbose",
"test": "newman run integration-tests/iati-flattener-integration-tests.postman_collection.json -e integration-tests/envs/local-function-7071.postman_environment.json --working-dir integration-tests/test-files",
"prepare": "husky install"
},
"author": "IATI",
"dependencies": {
"@xmldom/xmldom": "^0.9.6",
"applicationinsights": "^2.9.5",
"dotenv": "^16.4.7"
},
"devDependencies": {
"@prettier/plugin-xml": "^3.4.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.4.2"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"engines": {
"node": ">=16 <17",
"npm": ">=8"
}
}