-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.34 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.34 KB
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
{
"name": "fecfile-validate",
"version": "0.0.1",
"description": "Validation package for FECFile Online forms and data.",
"type": "module",
"main": "fecfile_validate_js/dist/index.js",
"files": [
"fecfile_validate_js/src/index.ts",
"fecfile_validate_js/src/ucs2length.ts",
"fecfile_validate_js/tsconfig.json",
"fecfile_validate_js/scripts/buildSchemaModules.js",
"schema/*.json"
],
"scripts": {
"build": "rm -rf fecfile_validate_js/dist && node fecfile_validate_js/scripts/buildSchemaModules && tsc --project fecfile_validate_js/tsconfig.json",
"postinstall": "npm run build",
"lint": "eslint ./fecfile_validate_js/src --ext .ts",
"test": "npm run build && deno test --coverage=cov_profile --unstable --allow-read --allow-run fecfile_validate_js/tests/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fecgov/fecfile-validate.git"
},
"keywords": [],
"author": "",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/fecgov/fecfile-validate/issues"
},
"homepage": "https://github.com/fecgov/fecfile-validate#readme",
"dependencies": {
"ajv": "8.18.0",
"glob": "12.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "8.56.1",
"@typescript-eslint/parser": "8.56.1",
"eslint": "^9.39.2",
"typescript": "5.5.4"
}
}