-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.15 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
{
"name": "purge-fastly",
"version": "0.0.2",
"packageManager": "[email protected]",
"homepage": "https://github.com/sadnessOjisan/purge-fastly",
"bugs": "https://github.com/sadnessOjisan/purge-fastly/issues",
"repository": "https://github.com/sadnessOjisan/purge-fastly",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"devDependencies": {
"@tsconfig/strictest": "^2.0.1",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"can-npm-publish": "^1.3.6",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
},
"scripts": {
"build": "yarn tsc",
"typecheck": "tsc --noEmit",
"_eslint": "eslint -c .eslintrc.js --ext .js,.ts src",
"lint:check": "yarn run _eslint",
"lint:fix": "yarn run _eslint -- --fix",
"_prettier": "prettier 'src/**/*.{js,jsx,ts,tsx,html,css,json,yaml,yml}'",
"format:fix": "npm run _prettier -- --write",
"format:check": "npm run _prettier -- --check",
"test": "echo ok"
},
"files": [
"README.md",
"package.json",
"dist"
]
}