-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.43 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.43 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
42
43
44
45
46
47
48
49
50
51
52
{
"name": "messageformat-validator",
"version": "3.0.1",
"description": "Validates that ICU MessageFormat messages are well-formed, and that translated target messages are compatible with their source.",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/bearfriend/messageformat-validator.git"
},
"main": "src/index.js",
"scripts": {
"lint": "npm run lint:eslint",
"lint:eslint": "eslint . --ext .js --ignore-path .gitignore",
"test": "npm run lint && npm run test:unit",
"test:unit": "mocha 'test/**/*.test.js'",
"prepack": "npm run build && npm t",
"postinstall": "npm run build",
"build": "node build-locale-data.js"
},
"bin": {
"mfv": "bin/cli.js"
},
"exports": {
".": "./src/index.js"
},
"files": [
"/src",
"/build-locale-data.js"
],
"author": "Danny Gleckler <daniel.gleckler@gmail.com>",
"license": "MIT",
"dependencies": {
"@formatjs/icu-messageformat-parser": "^2.7.8",
"chalk": "^4.1.0",
"commander": "^12.1.0",
"esm": "^3.2.25",
"find-config": "^1.0.0",
"glob": "^7.1.6"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.1",
"@babel/plugin-syntax-import-attributes": "^7.25.6",
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.10.0",
"chai": "^5.1.1",
"cldr": "^7.5.0",
"eslint": "^8.57.0",
"globals": "^15.9.0",
"mocha": "^10.7.3"
}
}