forked from phantombuster/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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
{
"name": "phantombuster-sdk",
"version": "0.4.0",
"description": "Phantombuster's SDK",
"main": "lib/sdk.js",
"scripts": {
"test": "echo \"Error: no tests exist\" && exit 1",
"prepublish": "coffee --bare -o lib/ -c src/*.coffee && sed -i '1s/^/\\#\\!\\/usr\\/bin\\/env node\\n/' lib/sdk.js",
"watch": "coffee --bare -w -o lib/ -c src/*.coffee"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phantombuster/sdk.git"
},
"keywords": [
"phantombuster",
"casperjs",
"phantomjs",
"sdk",
"headless",
"chrome",
"scraping"
],
"author": "Martin Tapia <martin@phantombuster.com> (https://phantombuster.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/phantombuster/sdk/issues",
"email": "martin@phantombuster.com"
},
"homepage": "https://github.com/phantombuster/sdk",
"preferGlobal": true,
"bin": {
"phantombuster": "lib/sdk.js"
},
"devDependencies": {
"coffee-script": "1.12.x"
},
"dependencies": {
"cson": "3.0.x",
"is-my-json-valid": "2.12.x",
"needle": "0.10.x",
"node-watch": "^0.6.2",
"yargs": "3.27.x"
}
}