-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
61 lines (61 loc) · 1.92 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
57
58
59
60
61
{
"name": "@apify/actor-templates",
"version": "0.1.5",
"description": "A manifest of Apify actor templates.",
"main": "src/index.js",
"types": "src/index.d.cts",
"exports": {
"import": {
"types": "./src/index.d.mts",
"default": "./src/index.js"
},
"require": {
"types": "./src/index.d.cts",
"default": "./src/index.js"
}
},
"files": [
"src/index.js",
"src/index.d.*"
],
"scripts": {
"lint": "eslint . --ext .js,.ts",
"test": "jest",
"test-without-templates": "npm run test -- --testPathIgnorePatterns=templates.test.js",
"test-templates": "npm run test -- --testPathPattern=templates.test.js",
"test-python-templates": "npm run test-templates -- --testNamePattern=python",
"test-node-templates": "npm run test-templates -- --testNamePattern=node",
"build": "node ./src/build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apify/actor-templates.git"
},
"author": "Jakub Drobnik <[email protected]>",
"contributors": [
"Jan Bárta <[email protected]>",
"Ondra Urban <[email protected]>"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/apify/actor-templates/issues"
},
"homepage": "https://github.com/apify/actor-templates#readme",
"devDependencies": {
"@apify/eslint-config": "^0.3.1",
"@apify/eslint-config-ts": "^0.2.3",
"@apify/tsconfig": "0.1.0",
"@types/jest": "^29.5.1",
"apify": "^3.1.4",
"crawlee": "^3.3.2",
"eslint": "^8.50.0",
"eslint-plugin-jest": "^27.4.0",
"globby": "^11.1.0",
"jest": "^29.5.0",
"json5": "^2.2.3",
"mustache": "^4.2.0",
"playwright": "^1.38.0",
"puppeteer": "^20.1.0",
"semver": "^7.5.4"
}
}