-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.69 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.69 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
53
54
55
56
57
{
"name": "shopify-language-sync",
"version": "2.0.1",
"description": "Tool to synchronise a Shopify them live translation with a local translation file. This tools works for slate and themekit projects",
"main": "dist/index.js",
"scripts": {
"test": "jest --config jestconfig.json",
"prebuild": "yarn lint && yarn format",
"build": "tsc",
"format": "prettier --write 'src/**/*.ts'",
"lint": "eslint --fix './src/**/*.ts'"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dnpg/shopify-language-sync.git"
},
"keywords": [
"Shopify",
"Translation",
"Tool"
],
"author": "Diego Pelaez",
"license": "MIT",
"bugs": {
"url": "https://github.com/dnpg/shopify-language-sync/issues"
},
"homepage": "https://github.com/dnpg/shopify-language-sync#readme",
"dependencies": {
"@shopify/themekit": "^1.1.4",
"browserslist": "^4.16.5",
"chalk": "^4.1.0",
"dotenv": "^8.2.0",
"figures": "^3.2.0",
"minimist": "^1.2.5"
},
"devDependencies": {
"@types/jest": "^26.0.5",
"@types/js-yaml": "^4.0.0",
"@types/minimist": "^1.2.0",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.1.0",
"js-yaml": "^4.0.0",
"prettier": "^2.0.5",
"ts-jest": "^26.1.3",
"typescript": "^3.9.7"
},
"bin": {
"locales-sync": "dist/cli.js"
}
}