-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 1.01 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
{
"name": "piqure",
"version": "2.1.1",
"description": "A library to provide and inject for JavaScript and TypeScript",
"main": "dist/Piqure.js",
"typings": "src/Piqure.ts",
"scripts": {
"build": "tsc",
"test": "vitest",
"test:ci": "tsc --noEmit && vitest run --coverage",
"test:coverage": "vitest --coverage",
"eslint:ci": "eslint \"./**/*.{ts,js}\"",
"eslint": "eslint \"./**/*.{ts,js}\" --fix"
},
"repository": "github:Gnuk/piqure",
"bugs": {
"url": "https://github.com/Gnuk/piqure/issues"
},
"homepage": "https://github.com/Gnuk/piqure#readme",
"author": "Anthony REY",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"@vitest/coverage-v8": "^2.0.4",
"eslint": "^8.19.0",
"eslint-import-resolver-typescript": "^3.2.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"typescript": "^5.1.6",
"vitest": "^2.0.4"
}
}