-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.55 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": "@blabu.com/phrase-tools",
"version": "0.1.0",
"description": "Script for Phrase translation service",
"main": "./lib/Push.js",
"bin": {
"phrase-tools": "./lib/bin.js"
},
"scripts": {
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/bin.ts",
"create": "npm run build && npm run local",
"build": "rm -rf ./lib && tsc",
"local": "sudo npm i -g",
"prepublishOnly": "npm run build",
"test": "jest"
},
"keywords": [
"cli",
"phrase"
],
"author": "Blabu",
"license": "MIT",
"homepage": "https://github.com/blabu-com/phrase-tools#readme",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/blabu-com/phrase-tools.git"
},
"bugs": {
"url": "https://github.com/blabu-com/phrase-tools/issues"
},
"dependencies": {
"form-data": "^3.0.0",
"lodash": "^4.17.20",
"node-fetch": "^2.6.1",
"phrase-js": "^1.0.10",
"yargs": "^16.1.1"
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@babel/preset-typescript": "^7.12.13",
"@types/jest": "^26.0.20",
"@types/js-yaml": "^4.0.0",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.10",
"@types/node-fetch": "^2.5.7",
"@types/yargs": "^15.0.10",
"babel-jest": "^26.6.3",
"fetch-mock": "^9.11.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"tslint-config-standard-plus": "^2.3.0",
"typescript": "^4.1.2"
},
"directories": {
"lib": "lib"
}
}