-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
144 lines (144 loc) · 3.91 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "nanoclamp",
"description": "Responsive text clamping component for React",
"homepage": "https://github.com/microlinkhq/nanoclamp",
"version": "2.0.12",
"types": "dist/index.d.ts",
"main": "dist/nanoclamp.js",
"module": "dist/nanoclamp.mjs",
"author": {
"name": "Brad Adams"
},
"contributors": [
{
"name": "Kiko Beats",
"email": "josefrancisco.verdu@gmail.com"
},
{
"name": "Brad Adams",
"email": "hi@breadadams.com"
},
{
"name": "Zoltan Toth",
"email": "ztoth@indigo.ca"
},
{
"name": "Axel Hernández Ferrera",
"email": "axelhzf@gmail.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/microlinkhq/nanoclamp.git"
},
"bugs": {
"url": "https://github.com/microlinkhq/nanoclamp/issues"
},
"keywords": [
"clamp",
"clamping",
"components",
"ellipsis",
"lines",
"react"
],
"devDependencies": {
"@babel/eslint-parser": "latest",
"@babel/plugin-transform-react-constant-elements": "latest",
"@babel/plugin-transform-runtime": "latest",
"@babel/preset-env": "latest",
"@babel/preset-react": "latest",
"@babel/runtime": "latest",
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@ksmithut/prettier-standard": "latest",
"@rollup/plugin-babel": "latest",
"@rollup/plugin-terser": "latest",
"@rollup/plugin-typescript": "latest",
"@storybook/addons": "latest",
"@storybook/builder-webpack5": "latest",
"@storybook/manager-webpack5": "latest",
"@storybook/react": "latest",
"@storybook/theming": "latest",
"@types/react": "^19",
"babel-loader": "latest",
"ci-publish": "latest",
"finepack": "latest",
"git-authors-cli": "latest",
"github-generate-release": "latest",
"nano-staged": "latest",
"npm-check-updates": "latest",
"prop-types": "latest",
"react": "^19",
"react-dom": "^19",
"rollup": "latest",
"rollup-plugin-filesize": "latest",
"rollup-plugin-peer-deps-external": "latest",
"rollup-plugin-visualizer": "latest",
"simple-git-hooks": "latest",
"standard-markdown": "latest",
"standard-version": "latest",
"ts-standard": "latest",
"typescript": "latest"
},
"engines": {
"node": ">= 8"
},
"files": [
"dist",
"typings"
],
"scripts": {
"build": "NODE_ENV=production rollup -c rollup.config.js --bundleConfigAsCjs",
"build-storybook": "NODE_ENV=production build-storybook",
"contributors": "(npx git-authors-cli && npx finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
"dev": "start-storybook -p 6006",
"lint": "standard-markdown && ts-standard src && ts-standard stories",
"postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
"prebuild": "rm -rf dist",
"prepare": "npx simple-git-hooks",
"prepublishOnly": "npm run build",
"prerelease": "npm run update:check && [[ -z \"${CI}\" ]] && npm run contributors || exit 0",
"pretest": "npm run lint",
"release": "standard-version -a",
"release:github": "github-generate-release",
"release:tags": "git push --follow-tags origin HEAD:master",
"test": "exit 0",
"update": "ncu -u",
"update:check": "ncu -- --error-level 2"
},
"license": "MIT",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"nano-staged": {
"*.js": [
"prettier-standard",
"standard --fix"
],
"*.md": [
"standard-markdown"
],
"package.json": [
"finepack"
]
},
"peerDependencies": {
"react": "^19"
},
"simple-git-hooks": {
"commit-msg": "npx commitlint --edit",
"pre-commit": "npx nano-staged"
},
"ts-standard": {
"globals": [
"React"
],
"ignore": [
"/dist/"
],
"parser": "@babel/eslint-parser"
}
}