-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·44 lines (44 loc) · 1.44 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
{
"name": "yandex-tank-ammo-generator",
"version": "1.1.6",
"description": "Cartridge generation for Yandex tank",
"main": "index.js",
"homepage": "https://github.com/Blynskyniki/yandex-tank-ammo-generator#readme",
"scripts": {
"copyData": "cp package.json ./dist/package.json && cp ./README.md ./dist/README.md ",
"executable": "chmod +x ./dist/*.js",
"build": "rm -rf ./dist && ./node_modules/.bin/tsc && cp package.json ./dist/package.json",
"pub": "npm run build && npm run copyData && cd ./dist && npm publish ",
"test": "echo \"Error: no test specified\" && exit 1",
"testInstall": "sudo npm uninstall yandex-tank-ammo-generator -g && sudo npm run build && cp ./node_modules ./dist/node_modules/ -r && sudo npm i -g ./dist/",
"testRm": "sudo npm rm -g ./dist"
},
"bin": {
"tank-create-ammo": "./createAmmo.js",
"tank-gen-test-data": "./getElasticData.js",
"tank-gen-ammo": "./getElasticDataAndCreateAmmo.js"
},
"keywords": [
"yandex",
"tank",
"yandex-tank",
"ammo",
"load testing",
"generate ammo"
],
"author": "[email protected]",
"license": "ISC",
"devDependencies": {
"@types/node": "^11.15.3",
"ts-node": "^7.0.0",
"typescript": "^3.7.2",
"@types/hapi__joi": "=15.0.2"
},
"dependencies": {
"@elastic/elasticsearch": "^7.5.0",
"@hapi/joi": "=15.1.0",
"commander": "^4.0.1",
"pino": "^5.14.0",
"pino-pretty": "^3.5.0"
}
}