-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.76 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
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "scrapty",
"version": "0.0.2",
"description": "A quick and dirty way to run an ordered queue of tasks focused on cross OS command line processes.",
"main": "src/index.js",
"types": "./types/**/*.d.ts",
"volta": {
"node": "20.11.0",
"npm": "10.4.0",
"pnpm": "8.15.1"
},
"engines": {
"node": "20.11.0",
"npm": "10.4.0"
},
"scripts": {
"lint": "cross-env eslint -c ./config/.eslintrc --ignore-path ./config/.eslintignore",
"test": "cross-env jest --config=./config/jest.config.js --forceExit --detectOpenHandles --coverage",
"types": "tsc"
},
"keywords": [
"cli",
"scripts",
"task",
"queue",
"cmd",
"command",
"cross-env"
],
"author": {
"name": "Bruno Araujo",
"email": "bruno@komutilo.com",
"url": "https://github.comn/brunurd"
},
"contributors": [
{
"name": "Bruno Araujo",
"email": "bruno@komutilo.com",
"url": "https://github.comn/brunurd"
}
],
"homepage": "https://github.com/komutilo/scrapty#readme",
"bugs": {
"url": "https://github.com/komutilo/scrapty/issues",
"email": "bruno@komutilo.com"
},
"repository": {
"type": "git",
"url": "https://github.com/komutilo/scrapty.git"
},
"license": "MIT",
"dependencies": {
"chalk": "4.1.0",
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.3",
"promisify-child-process": "^4.1.1"
},
"devDependencies": {
"@types/node": "^18.11.15",
"eslint": "^8.29.0",
"eslint-plugin-security": "^1.5.0",
"jest": "^29.3.1",
"jest-junit": "^15.0.0",
"spawk": "^1.8.0",
"typescript": "^4.9.4"
},
"pnpm": {
"overrides": {
"word-wrap@<1.2.4": ">=1.2.4",
"@babel/traverse@<7.23.2": ">=7.23.2",
"semver@>=7.0.0 <7.5.2": ">=7.5.2"
}
}
}