-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
{
"name": "@intuita-inc/filemod",
"version": "2.0.2",
"description": "The filemod by Intuita",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist",
"!**/*.test.js",
"!**/*.test.d.ts",
"LICENSE",
"README.md",
"tsconfig.json"
],
"scripts": {
"build": "tsc",
"lint:eslint:check": "eslint . --no-color",
"lint:prettier:check": "prettier . --check --no-color ",
"lint:eslint:write": "eslint . --fix",
"lint:prettier:write": "prettier --write .",
"test": "vitest run",
"coverage": "vitest run --coverage"
},
"keywords": [],
"author": "Caartaa, Inc.",
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "20.8.5",
"@typescript-eslint/eslint-plugin": "6.7.5",
"@typescript-eslint/parser": "6.7.5",
"memfs": "4.6.0",
"eslint": "8.51.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.1",
"fast-glob": "3.3.2",
"prettier": "3.0.3",
"ts-node": "10.9.1",
"typescript": "5.2.2",
"vitest": "^1.0.1",
"@vitest/coverage-v8": "^1.0.1"
}
}