-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
34 lines (34 loc) · 1.04 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
{
"name": "actor-testing",
"version": "2.0.0",
"private": true,
"description": "This is a boilerplate of an Apify actor.",
"dependencies": {
"apify": "^2.2.1",
"apify-client": "^2.0.7",
"moment": "^2.29.1",
"lodash": "^4.17.21",
"jasmine": "3.10.0",
"jasmine-expect": "^5.0.0",
"jasmine-spec-reporter": "^7.0.0",
"xxhash-addon": "^1.4.0",
"escape-string-regexp": "^4.0.0"
},
"devDependencies": {
"@types/jasmine": "^3.10.2",
"@types/lodash": "^4.14.176",
"@apify/eslint-config": "^0.1.4",
"eslint": "^7.32.0"
},
"scripts": {
"start": "node src/main.js",
"lint": "./node_modules/.bin/eslint ./src --ext .js,.jsx",
"lint:fix": "./node_modules/.bin/eslint ./src --ext .js,.jsx --fix",
"test": "echo \"Error: oops, the actor has no tests yet, sad!\" && exit 1"
},
"author": {
"name": "Paulo Cesar",
"url": "https://github.com/pocesar"
},
"license": "Apache-2.0"
}