-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·54 lines (54 loc) · 1.23 KB
/
package.json
File metadata and controls
executable file
·54 lines (54 loc) · 1.23 KB
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
{
"name": "restshooter",
"version": "1.12.0",
"description": "Tools to shoot a scenario on a server only using REST call",
"main": "src/shooter",
"scripts": {
"test": "for f in tests/*; do echo \"$f\";node \"$f\";done; echo 'passed';exhit 0"
},
"dependencies": {
"chalk": "^1.1.1",
"cli-spinner": "^0.2.1",
"https": "^1.0.0",
"lodash": "^3.10.1",
"mkdirp": "^0.5.1",
"path": "^0.12.7",
"xml2js": "0.4.4"
},
"repository": {
"type": "git",
"url": "https://github.com/krysalead/RestShooter"
},
"keywords": [
"REST",
"HTTP",
"call",
"POST",
"GET",
"Test",
"Integration",
"end2end",
"end to end test",
"e2e test"
],
"preferGlobal": true,
"bin": {
"restshooter": "src/shooter.js"
},
"author": "Olivier DAUMAS",
"license": "MIT",
"bugs": {
"url": "https://github.com/krysalead/RestShooter/issues"
},
"homepage": "https://github.com/krysalead/RestShooter",
"devDependencies": {
"browserify": "^13.0.0",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-browserify": "^5.0.4",
"karma-chrome-launcher": "^0.2.3",
"karma-jasmine": "^0.3.8",
"karma-phantomjs-launcher": "^1.0.0",
"watchify": "^3.7.0"
}
}