-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.85 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "gift-exchange",
"version": "4.0.1",
"description": "A utility to generate pairs of names for a gift exchange.",
"keywords": [
"gift",
"exchange",
"secret",
"santa"
],
"author": "Brian Mitchell <bman4789@gmail.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/BrianMitchL/gift-exchange.git"
},
"main": "dist/giftexchange.cjs.js",
"module": "dist/giftexchange.esm.js",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/giftexchange.esm.js",
"require": "./dist/giftexchange.cjs.js",
"types": "./dist/index.d.ts"
}
},
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=16"
},
"scripts": {
"start": "rollup -c rollup.config.mjs --watch",
"build": "rollup -c rollup.config.mjs",
"lint": "eslint \"**/*.ts\"",
"prebuild": "rimraf dist",
"prettier": "prettier \"**/*.{js,mjs,ts,md,yml}\"",
"pretty-quick": "pretty-quick --staged",
"test": "vitest",
"test:coverage": "vitest --coverage"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@types/node": "^18.16.16",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"@vitest/coverage-v8": "^0.32.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"rimraf": "^5.0.1",
"rollup": "^3.23.1",
"rollup-plugin-typescript2": "^0.34.1",
"simple-git-hooks": "^2.8.1",
"typescript": "^4.9.5",
"vitest": "^0.32.0"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
]
},
"simple-git-hooks": {
"pre-commit": "npm run pretty-quick"
}
}