-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.56 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
61
{
"name": "smartloc",
"version": "1.2.2",
"description": "A i18n toolset for nodejs apis leveraging tagged strings",
"main": "index.js",
"scripts": {
"build": "tsc && cp package.json bin/package.json && cp README.md build",
"release": "npm run build && cd bin && npm publish && cd ..",
"typecheck": "tsc --project tsconfig.json --noEmit"
},
"bin": {
"smartloc": "cli/cli.js"
},
"repository": "https://github.com/oguimbal/smartloc",
"keywords": [
"i18n",
"internationalization",
"express",
"apollo",
"string-templating",
"tagged-string-template",
"graphql",
"translation",
"internationalization",
"typescript"
],
"author": "Olivier Guimbal",
"license": "MIT",
"dependencies": {
"accept-language-parser": "~1.5.0",
"diacritics": "^1.3.0",
"fs-extra": "~8.1.0",
"gitignore-parser": "~0.0.2",
"js-levenshtein": "^1.1.6",
"js-sha1": "^0.6.0",
"json-stable-stringify": "~1.0.1",
"moment": "~2.29.2",
"xliff": "~4.4.0",
"yargs": "~15.1.0"
},
"peerDependencies": {
"express": "~4.17.1",
"graphql": "^0.13.2"
},
"devDependencies": {
"@types/accept-language-parser": "^1.5.1",
"@types/chai": "^4.2.7",
"@types/diacritics": "^1.3.1",
"@types/express": "^4.17.2",
"@types/fs-extra": "^8.0.1",
"@types/graphql": "^14.5.0",
"@types/mocha": "^5.2.7",
"@types/node": "^13.1.8",
"@types/yargs": "^15.0.0",
"chai": "^4.2.0",
"mocha": "^7.0.0",
"ts-node": "^8.6.2",
"tslint": "^5.20.1",
"typescript": "^3.7.5"
}
}