-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.3 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "node-lokalise-api",
"version": "1.0.0",
"description": "Lokalise API",
"keywords": [
"Lokalise",
"API",
"node",
"library",
"TypeScript",
"Client"
],
"author": {
"name": "Andrey Kuznetsov",
"email": "[email protected]"
},
"homepage": "https://tormozz48.github.io/node-lokalise-api/index.html",
"repository": {
"type": "git",
"url": "https://github.com/tormozz48/node-lokalise-api.git"
},
"bugs": {
"url": "https://github.com/tormozz48/node-lokalise-api/issues",
"email": "[email protected]"
},
"license": "Apache-2.0",
"private": false,
"engines": {
"node": ">=8.0.0"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "npm run clean-build && tsc --experimentalDecorators",
"docs": "node_modules/.bin/typedoc --target ES6 --out ./docs ./src --exclude ./test/**/*.ts --name node-lokalise-api --mode file",
"docs-deploy": "gh-pages -d docs",
"doctoc": "doctoc README.md",
"clean-build": "rm -rf build",
"clean-coverage": "rm -rf coverage",
"lint": "tslint -c tslint.json src/**/*.ts",
"check": "npm outdated",
"pretest": "npm run lint && npm run build",
"test": "mocha --opts mocha.opts",
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha -- --opts mocha.opts",
"precommit": "npm run lint && npm run doctoc",
"prepush": "npm test",
"prepublish": "publish-please guard",
"watch": "tsc -w",
"publish-please": "publish-please"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/circular-json": "^0.4.0",
"@types/mocha": "^5.2.5",
"@types/nock": "^9.3.0",
"@types/node": "^10.12.5",
"@types/semver": "^5.4.0",
"chai": "^4.1.7",
"coveralls": "^3.0.0",
"cross-env": "^5.1.0",
"doctoc": "^1.3.1",
"gh-pages": "^2.0.1",
"husky": "^1.1.3",
"install": "^0.12.2",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"nock": "^10.0.2",
"npm": "^6.4.1",
"publish-please": "^5.2.0",
"remap-istanbul": "^0.12.0",
"sinon": "^7.1.1",
"tslint": "^5.7.0",
"typedoc": "^0.13.0",
"typescript": "^3.1.6"
},
"dependencies": {
"debug": "^4.1.0",
"got": "^9.3.2",
"joi": "^14.0.6",
"reflect-metadata": "^0.1.12"
},
"standard": {
"env": [
"mocha"
]
}
}