-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.31 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
{
"name": "messageformat-validator",
"version": "2.6.7",
"description": "Validates that ICU MessageFormat strings are well-formed, and that translated target strings 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'",
"prepublishOnly": "npm t"
},
"bin": {
"mfv": "bin/cli.js"
},
"exports": {
".": "./src/index.js"
},
"files": [
"/src"
],
"author": "Daniel Gleckler <[email protected]>",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.0",
"commander": "^6.1.0",
"esm": "^3.2.25",
"find-config": "^1.0.0",
"glob": "^7.1.6",
"make-plural": "^7.4.0",
"messageformat-parser": "^4.1.3"
},
"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",
"eslint": "^8.57.0",
"globals": "^15.9.0",
"mocha": "^10.7.3"
}
}