-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
57 lines (57 loc) · 2.02 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
{
"name": "disableautofill",
"version": "4.0.0",
"description": "The easiest solution for disabling Google Chrome auto-fill, auto-complete functions.",
"main": "dist/disableautofill.js",
"module": "dist/disableautofill.es.js",
"typings": "dist/disableautofill.d.ts",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"lint": "eslint . --ext .js,.ts",
"coverage": "vitest run --coverage",
"docker:image-build": "docker build -t disableautofill .",
"docker:image-remove": "docker rmi -f disableautofill",
"docker:run": "docker run -p 9527:9527 -v .:/app --name dafjs-dev disableautofill",
"docker:stop": "docker stop dafjs-dev",
"docker:remove": "docker stop dafjs-dev && docker rm dafjs-dev",
"docker:test": "npm run docker:run && docker exec -it dafjs-dev npm run test",
"docker:lint": "npm run docker:run && docker exec -it dafjs-dev npm run lint",
"docker:coverage": "npm run docker:run && docker exec -it dafjs-dev npm run coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/terrylinooo/disableautofill.js.git"
},
"keywords": [
"disable-autofill",
"disable-autocomplete"
],
"author": "Terry L. ( https:://terryl.in )",
"license": "MIT",
"bugs": {
"url": "https://github.com/terrylinooo/disableautofill.js/issues"
},
"homepage": "https://github.com/terrylinooo/disableautofill.js",
"devDependencies": {
"@testing-library/jest-dom": "^6.1.4",
"@types/graceful-fs": "^4.1.9",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"@vitest/coverage-v8": "^0.34.6",
"eslint": "^8.54.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^5.0.1",
"jsdom": "^22.1.0",
"prettier": "^3.1.0",
"typescript": "^5.3.2",
"vite": "^5.0.2",
"vite-plugin-dts": "^3.6.3",
"vitest": "^0.34.6"
}
}