-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.5 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
{
"name": "react-text-more-less",
"version": "0.4.2",
"gtScaffoldVersion": "0.1.0",
"description": "gt scaffold for npm packages",
"main": "./build/index.js",
"scripts": {
"build": "babel src --out-dir build",
"release": "npm run build && standard-version && git push --follow-tags && npm publish",
"dev": "cd demo && npm run dev",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"repository": {
"type": "git",
"url": "git@github.com:vivaxy/react-text-more-less.git"
},
"keywords": [
"gt",
"react",
"reac component",
"truncate",
"truncate text",
"show more",
"shave"
],
"author": "vivaxy",
"license": "MIT",
"dependencies": {
"prop-types": "^15.5.10",
"shave": "^2.4.0"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@babel/register": "^7.12.1",
"@vivaxy/babel-folder": "^0.1.1",
"execa": "^5.0.0",
"husky": "6",
"lint-staged": "^11.0.0",
"listr": "^0.14.0",
"pinst": "^2.1.4",
"prettier": "^2.0.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"standard-version": "^9.0.0"
},
"lint-staged": {
"**/**.{js,json,md}": [
"prettier --write"
]
}
}