-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
37 lines (37 loc) · 1006 Bytes
/
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
{
"name": "react-collapsible-paragraph",
"version": "1.0.9",
"description": "A collapsible paragraph component for reactjs projects",
"keywords": [
"react",
"components",
"collapsible",
"layout"
],
"main": "dist/index.js",
"repository": "https://github.com/cyphernull/react-collapsible-paragraph",
"author": "cyphernull <eric.choo1997@yahoo.com>",
"license": "MIT",
"private": false,
"types": "index.d.ts",
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"scripts": {
"build": "rollup -c && cp package.json dist/ && cp README.md dist/ && cp LICENSE dist/",
"start": "rollup -c -w"
},
"devDependencies": {
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.42.4",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.2.3"
}
}