-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.53 KB
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": "@professionallyevil/cookie-monster-exfil",
"version": "2.0.3",
"license": "MIT",
"bin": {
"cookie-monster": "dist/cli.js"
},
"engines": {
"node": ">=14"
},
"scripts": {
"build": "tsc && chmod +x dist/cli.js",
"start": "npm run build && dist/cli.js",
"pretest": "npm run build",
"test": "jest",
"test-coverage": "jest --coverage",
"format": "prettier --write ."
},
"files": [
"dist/**/*"
],
"dependencies": {
"concatifier": "^1.0.2",
"configstore": "^6.0.0",
"cookie-parser": "^1.4.6",
"express": "^4.18.1",
"ink": "^3.2.0",
"ink-text-input": "^4.0.3",
"meow": "^9.0.0",
"react": "^17.0.2",
"unidecode": "^0.1.8"
},
"ava": {
"typescript": {
"extensions": [
"tsx"
],
"rewritePaths": {
"source/": "dist/"
}
}
},
"xo": {
"extends": "xo-react",
"rules": {
"react/prop-types": "off"
}
},
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@sindresorhus/tsconfig": "^3.0.1",
"@types/configstore": "^6.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.0",
"@types/react": "^18.0.15",
"ava": "^4.3.1",
"chalk": "^4.1.2",
"concurrently": "^7.3.0",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"ink-testing-library": "^2.1.0",
"jest": "^28.1.3",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"tsc-hooks": "^1.1.1",
"typescript": "^4.7.4",
"xo": "^0.39.1"
}
}