-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.97 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
73
74
75
76
77
78
79
{
"name": "@potloc/spready",
"version": "1.0.0",
"private": false,
"license": "MIT",
"description": "Conditional spread operator for human.",
"author": "Mathieu Mazy <mathieu@potloc.com>",
"homepage": "https://github.com/potloc/spready#readme",
"repository": "https://github.com/potloc/spready",
"type": "module",
"files": [
"dist"
],
"main": "./dist/spready.umd.cjs",
"module": "./dist/spready.js",
"types": "dist/spready.d.ts",
"exports": {
".": {
"import": "./dist/spready.js",
"require": "./dist/spready.umd.cjs"
}
},
"maintainers": [
{
"name": "Gabriel Santerre",
"email": "gabriel.santerre@potloc.com"
},
{
"name": "Jérôme Parent-Lévesque",
"email": "jerome.parent-levesque@potloc.com"
}
],
"bugs": {
"url": "https://github.com/potloc/spready/issues"
},
"keywords": [
"potloc",
"spready",
"conditional",
"operator",
"helper",
"util"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"commit": "cz",
"commitlint": "commitlint",
"prepare": "husky install",
"release": "release-it",
"release:test": "release-it --dry-run",
"build": "vite build",
"coverage": "vitest run --coverage",
"lint": "eslint .",
"test": "vitest",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@commitlint/cz-commitlint": "17.1.2",
"@release-it/conventional-changelog": "5.1.0",
"@typescript-eslint/eslint-plugin": "5.33.0",
"@vitest/coverage-c8": "0.22.1",
"commitizen": "4.2.5",
"eslint": "8.22.0",
"eslint-config-100terres": "1.0.0-alpha.6",
"husky": "8.0.1",
"prettier": "2.7.1",
"release-it": "15.4.1",
"typescript": "4.7.4",
"vite": "3.0.9",
"vite-plugin-dts": "1.4.1",
"vitest": "0.22.1"
}
}