-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
57 lines (57 loc) · 1.46 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
{
"name": "multilang",
"description": "Tools for multilanguage and Markdown multilang",
"version": "1.2.0",
"author": "Codenautas <codenautas@googlegroups.com>",
"license": "MIT",
"repository": "https://github.com/codenautas/multilang",
"contributors": [
{
"name": "Emilio Platzer",
"email": "emilioplatzer@gmail.com"
},
{
"name": "Diego Florio",
"email": "diegoefe@gmail.com"
}
],
"bin": {
"multilang": "./bin/multilang-run.js"
},
"main": "./bin/multilang.js",
"dependencies": {
"commander": "9.4.0",
"fs-promise": "~2.0.3",
"js-yaml": "4.1.0",
"strip-bom-string": "~1.0.0",
"best-globals": "~1.0.3"
},
"devDependencies": {
"expect.js": "~0.3.1",
"istanbul": "~0.4.5",
"mocha": "~10.0.0",
"expect-called": "~0.4.0"
},
"engines": {
"node": ">= 6"
},
"scripts": {
"test": "mocha --reporter spec --bail --check-leaks test/",
"test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
"qac": "qa-control . -v",
"all": "npm test && npm run test-cov && npm run qac",
"start": "node example/server.js"
},
"files": [
"bin",
"langs"
],
"qa-control": {
"package-version": "0.3.0",
"coverage": 99,
"run-in": "server",
"stability": "extending",
"type": "cmd-tool"
}
}