-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
39 lines (39 loc) · 984 Bytes
/
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
{
"name": "actor-google-serp",
"version": "1.0.0",
"description": "This is a boilerplate of an Apify actor.",
"main": "main.js",
"dependencies": {
"apify": "^0.11.8",
"cheerio": "^1.0.0-rc.2",
"query-string": "^6.2.0",
"underscore": "^1.9.1"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.0.1",
"markdown-toc": "^1.2.0",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"sinon": "^6.0.0"
},
"scripts": {
"build-toc": "./node_modules/.bin/markdown-toc README.md -i",
"test": "nyc --reporter=html --reporter=text mocha --timeout 60000 --recursive",
"start": "node main",
"lint": "./node_modules/.bin/eslint ./src ./test"
},
"repository": {
"type": "git",
"url": ""
},
"author": "",
"license": "ISC",
"homepage": ""
}