-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.12 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
62
63
64
65
66
67
68
69
{
"name": "@florianldt/jerome",
"version": "0.0.4",
"description": "Auto localization for iOS",
"main": "./dist/index.js",
"bin": {
"jerome": "./dist/index.js"
},
"scripts": {
"all": "npm audit && npm run prebuild && npm run build && npm run lint && npm test",
"prebuild": "rimraf ./dist && node -p \"'export default ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"lint": "eslint .",
"prepare": "husky install",
"start": "nodemon",
"test": "jest",
"test:watch": "jest --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/florianldt/jerome.git"
},
"keywords": [
"iOS",
"localization",
"translation",
"jerome",
"cli"
],
"author": "Florian Ludot",
"license": "ISC",
"bugs": {
"url": "https://github.com/florianldt/jerome/issues"
},
"homepage": "https://github.com/florianldt/jerome#readme",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.18",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"jest": "^29.0.3",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.2"
},
"dependencies": {
"axios": "^0.27.2",
"chalk": "^4.1.2",
"commander": "^9.4.0",
"cosmiconfig": "^7.0.1",
"ora": "^5.4.1",
"qs": "^6.11.0"
}
}