-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.56 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
78
79
80
{
"name": "@socialgouv/kali-data",
"version": "3.196.0",
"dependencies": {
"csv-parser": "^3.0.0",
"node-xlsx": "^0.23.0",
"unist-util-find": "1.0.4",
"unist-util-flat-filter": "1.0.0",
"unist-util-parents": "1.0.3"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-modules-commonjs": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@socialgouv/dila-api-client": "^1.2.4",
"@socialgouv/eslint-config-strict": "^0.35.0",
"@types/jest": "^27.0.3",
"@types/node": "^14.17.34",
"babel-eslint": "^10.1.0",
"dotenv": "^16.0.0",
"eslint": "^7.32.0",
"eslint-plugin-sort-requires": "^2.1.0",
"esm": "^3.2.25",
"husky": "^7.0.4",
"jest": "^27.4.4",
"npmlog": "^7.0.0",
"p-pipe": "^3.1.0",
"p-queue": "^6.6.2",
"p-retry": "^4.6.1",
"prettier": "^2.5.1",
"prompt": "^1.2.0",
"semantic-release": "^19.0.0",
"typescript": "^5.1.6",
"unist-util-filter": "^2.0.3",
"unist-util-map": "^2.0.1"
},
"engines": {
"node": ">= v14.18.2"
},
"files": [
"data",
"src"
],
"homepage": "https://github.com/SocialGouv/kali-data",
"license": "Apache-2.0",
"main": "./src/index.js",
"publishConfig": {
"access": "public"
},
"repository": "https://github.com/SocialGouv/kali-data.git",
"scripts": {
"data:check": "node -r esm ./scripts/check.js",
"data:fetch": "node -r dotenv/config -r esm ./scripts/fetch.js dotenv_config_path=./.env",
"data:clean": "node -r esm ./scripts/clean.js",
"data:list": "node -r esm ./scripts/list.js",
"data:match": "node -r esm ./scripts/match.js",
"data:update": "yarn data:fetch && yarn data:match && yarn data:list && yarn data:check",
"posttest": "yarn data:check",
"setup": "node -r esm ./scripts/setup.js",
"test": "yarn test:lint && yarn test:type && yarn test:unit --silent",
"test:lint": "eslint .",
"lint:fix": "eslint --fix .",
"test:type": "tsc --noEmit",
"test:unit": "jest",
"test:update": "jest --updateSnapshot",
"test:watch": "yarn test:unit --watch"
},
"types": "./src/index.d.ts",
"babel": {
"env": {
"test": {
"plugins": [
[
"@babel/plugin-transform-modules-commonjs"
]
]
}
}
}
}