-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.66 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
54
55
56
{
"name": "phantom-crawler-server",
"version": "2.0.13",
"description": "Crawl websites with PhantomJS or Puppeteer",
"main": "lib/app.js",
"typings": "lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node lib/app.js",
"clean": "rimraf lib",
"build": "webpack",
"watch": "webpack --watch",
"dev": "cross-env DEBUG=true ts-node-dev src/index.ts",
"prod": "ts-node-dev src/index.ts",
"prepublish": "npm run clean && npm run build"
},
"repository": "https://github.com/kevupton/phantom-crawler",
"author": "Kevin Upton",
"license": "ISC",
"devDependencies": {
"babel-cli": "7.0.0-beta.3",
"babel-core": "7.0.0-beta.3",
"babel-loader": "7.1.2",
"babel-node": "7.0.0-beta.3",
"babel-plugin-transform-class-properties": "7.0.0-beta.3",
"babel-plugin-transform-runtime": "7.0.0-beta.3",
"babel-polyfill": "6.26.0",
"babel-preset-env": "7.0.0-beta.3",
"babel-preset-typescript": "7.0.0-alpha.19",
"cross-env": "5.1.3",
"rimraf": "2.6.2",
"ts-loader": "3.1.1",
"ts-node-dev": "1.0.0-pre.5",
"typescript": "2.6.1",
"webpack": "3.8.1",
"webpack-node-externals": "1.6.0"
},
"dependencies": {
"@types/argparse": "1.0.33",
"@types/express": "4.0.39",
"@types/node": "8.0.53",
"@types/phantom": "3.2.3",
"@types/phantomjs": "1.9.29",
"@types/puppeteer": "1.3.2",
"argparse": "1.0.9",
"babel-polyfill": "6.26.0",
"express": "4.16.2",
"phantom": "4.0.8",
"puppeteer": "1.10.0",
"source-map-support": "^0.5.9"
},
"preferGlobal": true,
"bin": {
"phantom-server": "./bin/phantom-server.js"
}
}