-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.57 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
{
"name": "read-more-more",
"version": "2.0.2",
"description": "Read-More-More is a simple package for react that helps to implement 'read more' or 'read less' feature to any given text",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"source": "src/index.js",
"scripts": {
"build": "rollup -c",
"build-watch": "rollup -c -w",
"start-playground": "cd playground && npm run start",
"i-all": "npm i && cd playground && npm i",
"dev": "npm-run-all --parallel build-watch start-playground"
},
"keywords": [
"readmore",
"read-more",
"read-more-more"
],
"author": "Bhargab Kalita",
"license": "AGPL-3.0",
"dependencies": {
"html-react-parser": "^1.2.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/the-wrong-guy/read-more-more.git"
},
"bugs": {
"url": "https://github.com/the-wrong-guy/read-more-more/issues"
},
"homepage": "https://github.com/the-wrong-guy/read-more-more#readme",
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.13.16",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@rollup/plugin-babel": "^5.3.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.10",
"rollup": "^2.45.2",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-scss": "^2.6.1",
"node-sass": "^5.0.0",
"prop-types": "^15.7.2",
"react-scripts": "^4.0.3"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}