forked from PicnicSupermarket/localicious
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.08 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
{
"name": "@picnicsupermarket/localicious",
"version": "1.0.1",
"description": "A toolchain for working with localization files in a platform-agnostic way.",
"bin": "bin/localicious",
"repository": "https://github.com/PicnicSupermarket/localicious",
"author": "Picnic Technologies",
"license": "MIT",
"dependencies": {
"ajv": "^8.11.0",
"better-ajv-errors": "^1.2.0",
"commander": "^9.4.0",
"git-clone": "^0.2.0",
"handlebars": "^4.7.7",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"prettier": "^2.7.1"
},
"scripts": {
"lint": "yarn eslint --fix bin/**/* src/**/*.js tests/**/*.js",
"lint-on-ci": "yarn eslint bin/**/* src/**/*.js tests/**/*.js",
"test": "jest"
},
"prettier": {
"printWidth": 100
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"packageManager": "[email protected]"
}