-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.24 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@vtex/intl-equalizer",
"version": "2.5.1",
"description": "linter for locale json files",
"main": "index.js",
"files": [
"dist"
],
"bin": {
"intl-equalizer": "./dist/index.js"
},
"scripts": {
"lint": "eslint --ext js,ts,tsx .",
"lint-fix": "eslint --fix --ext js,ts,tsx .",
"test": "cross-env NODE_ENV=test jest",
"jest": "cross-env NODE_ENV=test jest --watch --verbose --coverage=false",
"build": "babel ./src --extensions '.js,.ts' --ignore */test,*/__mocks__,*/__fixtures__ -d dist",
"build:watch": "watch 'npm run build' src",
"demo-run": "npm run build && node ./dist/index.js",
"prepublishOnly": "npm run build",
"postreleasy": "npm publish"
},
"homepage": "https://github.com/vtex/intl-equalizer#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vtex/intl-equalizer.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/vtex/intl-equalizer/issues"
},
"jest": {
"transform": {
"^.+\\.(js|jsx|mjs)$": "<rootDir>/node_modules/babel-jest"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs)$"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test"
}
},
"lint-staged": {
"*.{ts,js,tsx,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.json": [
"prettier --write"
]
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-external-helpers": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@types/diff": "^4.0.2",
"@types/node": "^14.11.5",
"@vtex/prettier-config": "^0.3.1",
"babel-jest": "^26.5.2",
"cross-env": "^7.0.2",
"eslint": "^7.10.0",
"eslint-config-vtex": "^12.8.6",
"eslint-plugin-jest": "^22.19.0",
"husky": "^4.3.0",
"jest": "^26.5.2",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"releasy": "^1.11.1",
"typescript": "^4.0.3",
"watch": "^1.0.2"
},
"dependencies": {
"chalk": "^4.1.0",
"cli-table3": "^0.5.1",
"commander": "^3.0.2",
"diff": "^4.0.1",
"intl-messageformat-parser": "^6.0.9",
"util": "^0.12.1"
}
}