Commit 0370a936 0370a936bfc7eb1d9e4c950ced0d7e1c7be2f098 by Nicolas Perriault

fixes #736 - fixed package.json

1 parent 5927a1a0
1 { 1 {
2 "name": "casperjs", 2 "name": "casperjs",
3 "description": "Navigation scripting & testing utility for PhantomJS", 3 "description": "A navigation scripting & testing utility for PhantomJS and SlimerJS",
4 "version": "1.1.0-DEV", 4 "version": "1.1.0-DEV",
5 "keywords": [ 5 "keywords": [
6 "phantomjs", 6 "phantomjs",
7 "javascript" 7 "slimerjs",
8 "test",
9 "testing",
10 "scraping"
8 ], 11 ],
9 "bin": "./bin/casperjs", 12 "bin": "./bin/casperjs",
10 "maintainers": [ 13 "author": {
11 {
12 "name": "Nicolas Perriault", 14 "name": "Nicolas Perriault",
13 "email": "nperriault@gmail.com", 15 "email": "nicolas@perriault.net",
14 "web": "https://nicolas.perriault.net/" 16 "web": "https://nicolas.perriault.net/"
15 } 17 },
16 ],
17 "dependencies": { 18 "dependencies": {
18 "phantomjs": "~1.9.1" 19 "phantomjs": ">=1.8.2"
19 }, 20 },
20 "bugs": { 21 "bugs": {
21 "url": "https://github.com/n1k0/casperjs/issues" 22 "url": "https://github.com/n1k0/casperjs/issues"
22 }, 23 },
23 "repositories": [ 24 "repository": {
24 {
25 "type": "git", 25 "type": "git",
26 "url": "git://github.com/n1k0/casperjs.git" 26 "url": "git://github.com/n1k0/casperjs.git"
27 } 27 },
28 ],
29 "licenses": [ 28 "licenses": [
30 { 29 {
31 "name": "MIT", 30 "type": "MIT",
32 "url": "http://www.opensource.org/licenses/mit-license.php" 31 "url": "http://www.opensource.org/licenses/mit-license.php"
33 } 32 }
34 ], 33 ],
......