-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.46 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
{
"name": "har2ammo",
"description": "HAR to ammo.txt",
"keywords": "yandex-tank, har2ammo, ammo.txt, har",
"version": "0.4.3",
"homepage": "https://github.com/banzalik/har2ammo",
"author": "Aleksandr Boichenko <[email protected]> (http://github.com/banzalik)",
"maintainers": [],
"contributors": [],
"bin": {
"har2ammo": "./index.js"
},
"bugs": {
"url": "https://github.com/banzalik/har2ammo/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/banzalik/har2ammo.git"
},
"scripts": {
"test": "npm run-script jscs && npm run-script jshint && npm run-script grammar && npm run-script mocha",
"mocha": "node_modules/.bin/mocha --reporter spec --bail --check-leaks test/",
"jshint": "node_modules/.bin/jshint index.js test/ examplesConfigs/",
"jscs": "node_modules/.bin/jscs index.js test/ examplesConfigs/",
"grammar": "node_modules/.bin/yaspeller README.md",
"publish": "npm publish ./"
},
"dependencies": {
"chance": ">= 0.7.5",
"colors": ">= 1.1.0",
"commander": ">= 2.8.1",
"lodash": ">= 3.8.0"
},
"files": [
"index.js"
],
"engines": {
"node": ">= 0.11.0"
},
"licenses": [
{
"type": "GNU GENERAL PUBLIC LICENSE",
"url": "https://raw.github.com/banzalik/har2ammo/master/LICENSE"
}
],
"optionalDependencies": {},
"devDependencies": {
"jscs": ">= 1.13.1",
"jshint": ">= 2.7.0",
"mocha": "2.x",
"yaspeller": "^2.2.0"
}
}