-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 1.08 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
{
"name": "linkedin-certification-plugin",
"private": true,
"description": "A react plugin to add certifications to Linkedin",
"keywords": [
"linkedin",
"plugin",
"react"
],
"author": "Suvin Nimnaka",
"license": "Apache-2.0",
"workspaces": [
"example/*",
"lib"
],
"scripts": {
"build": "lerna run build --scope linkedin-certification",
"watch": "lerna run watch --scope linkedin-certification",
"package": "lerna exec --scope linkedin-certification -- npm pack",
"bump-patch-version": "lerna version patch --yes",
"bump-minor-version": "lerna version minor --yes",
"bump-major-version": "lerna version major --yes"
},
"devDependencies": {
"lerna": "^6.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"prop-types": "^15.8.1"
},
"homepage": "https://github.com/Suvink/linkedin-certification.git&readme",
"repository": {
"type": "git",
"url": "https://github.com/Suvink/linkedin-certification.git"
}
}