-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 806 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 806 Bytes
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
{
"name": "poeditor-utils",
"version": "0.4.0",
"description": "higher-level POEditor utilities for Node.js",
"keywords": [
"POEditor",
"localization",
"utils"
],
"repository": {
"type": "git",
"url": "https://github.com/smartsupp/node-poeditor-utils"
},
"license": "MIT",
"author": "Ján Dzurek <famousgarkin@outlook.com>",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"/lib"
],
"scripts": {
"test": "make build test"
},
"engines": {
"node": ">=8"
},
"dependencies": {
"json-stable-stringify": "^1.0.0",
"poeditor-client": "0.0.4"
},
"devDependencies": {
"@types/jasmine": "^3.3.9",
"@types/node": "^11.11.3",
"jasmine": "^3.3.1",
"ts-node": "^8.0.3",
"typescript": "^3.3.3333"
}
}