forked from couetilc/react-social-icons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.73 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
{
"name": "react-social-icons",
"version": "5.13.0",
"description": "beautiful, easy svg social icons in react",
"main": "./build/react-social-icons.js",
"types": "./build/react-social-icons.d.ts",
"scripts": {
"build": "babel --copy-files -d ./build ./src",
"build:watch": "npm run build -- --watch",
"examples:serve": "parcel examples/index.html",
"examples:build": "parcel build examples/index.html",
"lint": "eslint src",
"prepublish": "NODE_ENV=production npm run build",
"start": "npm run examples:serve",
"test": "npm run lint && npm run test:js && npm run test:ts",
"test:watch": "npm run test:js -- --watch",
"test:ts": "npx tsc --jsx react --noEmit --strict --esModuleInterop test/SocialIcon.tsx",
"test:js": "mocha",
"bundlesize": "npm run prepublish && tar -c build | gzip > build.tar.gz && du -h build build.tar.gz"
},
"author": "jaketrent",
"license": "MIT",
"contributors": [
"Vitaly Aminev <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/jaketrent/react-social-icons"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@types/react": "^17.0.4",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint": "^7.26.0",
"eslint-plugin-react": "^7.23.2",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.11.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"should": "^13.2.3",
"typescript": "^4.2.4"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": "15.x.x || 16.x.x || 17.x.x"
}
}