UNPKG

1.77 kBJSONView Raw
1{
2 "name": "react-social-icons",
3 "version": "5.4.0",
4 "description": "beautiful, easy svg social icons in react",
5 "main": "./build/react-social-icons.js",
6 "types": "./build/react-social-icons.d.ts",
7 "scripts": {
8 "build": "babel --copy-files -d ./build ./src",
9 "build:watch": "npm run build -- --watch",
10 "examples:serve": "parcel examples/index.html",
11 "examples:build": "parcel build examples/index.html",
12 "lint": "eslint src",
13 "prepublish": "NODE_ENV=production npm run build",
14 "start": "npm run examples:serve",
15 "test": "npm run lint && npm run test:js && npm run test:ts",
16 "test:watch": "npm run test:js -- --watch",
17 "test:ts": "npx tsc --jsx react --noEmit --strict --esModuleInterop test/SocialIcon.tsx",
18 "test:js": "mocha",
19 "bundlesize": "npm run prepublish && tar -c build | gzip > build.tar.gz && du -h build build.tar.gz"
20 },
21 "author": "jaketrent",
22 "license": "MIT",
23 "contributors": [
24 "Vitaly Aminev <v@makeomatic.ru>"
25 ],
26 "repository": {
27 "type": "git",
28 "url": "https://github.com/jaketrent/react-social-icons"
29 },
30 "devDependencies": {
31 "@babel/cli": "^7.2.3",
32 "@babel/core": "^7.2.2",
33 "@babel/preset-env": "^7.2.3",
34 "@babel/preset-react": "^7.0.0",
35 "@babel/register": "^7.0.0",
36 "@types/react": "^17.0.4",
37 "enzyme": "^3.8.0",
38 "enzyme-adapter-react-16": "^1.7.1",
39 "eslint": "^7.26.0",
40 "eslint-plugin-react": "^7.23.2",
41 "mocha": "^5.2.0",
42 "npm-run-all": "^4.1.5",
43 "parcel-bundler": "^1.11.0",
44 "react": "^16.7.0",
45 "react-dom": "^16.7.0",
46 "should": "^13.2.3",
47 "typescript": "^4.2.4"
48 },
49 "dependencies": {
50 "prop-types": "^15.7.2"
51 },
52 "peerDependencies": {
53 "react": "15.x.x || 16.x.x || 17.x.x"
54 }
55}