-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.62 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
{
"name": "directomatic",
"version": "2.1.0",
"description": "Redirect Generator and Transformer Robot",
"scripts": {
"format": "prettier --write '*.{json,js}' 'src/**/*.{js,ts}' 'test/**/*.{js,ts}'",
"lint": "eslint --max-warnings=0 src && prettier --check '*.{json,js}' 'src/**/*.{js,ts}' 'test/**/*.{js,ts}'",
"prettier": "prettier --write '*.{json,js}' 'src/**/*.{js,ts}' 'test/**/*.{js,ts}'",
"readme": "NODE_NO_WARNINGS=1 ts-node-esm src/index.ts readme",
"status": "NODE_NO_WARNINGS=1 ts-node-esm src/index.ts status",
"list": "NODE_NO_WARNINGS=1 ts-node-esm src/index.ts list",
"diff": "NODE_NO_WARNINGS=1 ts-node-esm src/index.ts diff",
"publish": "NODE_NO_WARNINGS=1 ts-node-esm src/index.ts publish",
"update": "NODE_NO_WARNINGS=1 ts-node-esm src/index.ts update",
"wipe": "NODE_NO_WARNINGS=1 ts-node-esm src/index.ts wipe",
"task": "ts-node-esm src/index.ts"
},
"author": "Taylor Smith <tsmith@cloudflare.com>",
"license": "Internal Use Only",
"eslintConfig": {
"root": true,
"extends": [
"typescript",
"prettier"
]
},
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-typescript": "^3.0.0",
"prettier": "^2.3.0",
"ts-loader": "^9.2.2",
"typescript": "^4.3.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0"
},
"dependencies": {
"chalk": "^4.1",
"dotenv": "^16.0.3",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"yesno": "^0.4.0"
}
}