-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.51 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
{
"name": "linguini",
"version": "1.3.1",
"author": "Kevin Novak",
"description": "A JSON-based translation file manager.",
"license": "MIT",
"private": false,
"engines": {
"node": ">=12.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "tslint --project .",
"lint:fix": "tslint --fix --project .",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"build": "tsc --project tsconfig.json",
"prepare": "rm -rf dist && npm run build",
"test": "npm run test:unit",
"test:unit": "ts-mocha tests/unit/**/*.test.ts"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.8",
"chai": "^4.3.4",
"mocha": "^9.1.3",
"prettier": "^2.5.1",
"ts-mocha": "^9.0.2",
"tslint": "^6.1.3",
"typescript": "^4.5.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KevinNovak/Linguini"
},
"keywords": [
"file-based",
"international",
"internationalization",
"json",
"json-based",
"language",
"linguine",
"linguini",
"locale",
"localization",
"localize",
"multi-language",
"multi-lingual",
"multilanguage",
"multilingual",
"translate",
"translation"
]
}