@webjet/react-icons 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -5
- package/package.json +67 -67
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
3
|
-
## Getting started
|
|
4
|
-
>`> npm i`
|
|
5
|
-
|
|
1
|
+
# React Icons
|
|
2
|
+
|
|
3
|
+
## Getting started
|
|
4
|
+
>`> npm i`
|
|
5
|
+
|
|
6
6
|
>`> npm start `
|
package/package.json
CHANGED
|
@@ -1,67 +1,67 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@webjet/react-icons",
|
|
3
|
-
"sideEffects": false,
|
|
4
|
-
"version": "0.0.
|
|
5
|
-
"description": "React Icons",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"start": "webpack serve --env env=library --port 9020 --open",
|
|
8
|
-
"build": "npm run build:library",
|
|
9
|
-
"build:library": "npm run clean && webpack --env env=library",
|
|
10
|
-
"publish:build": "npm run clean && webpack --env env=icons",
|
|
11
|
-
"publish:pack": "npm run publish:build && npm pack ./build/icons/",
|
|
12
|
-
"publish:test": "npm run publish:build && npm publish --dry-run ./build/icons/",
|
|
13
|
-
"publish:public": "npm run publish:build && npm publish ./build/icons/ --access public",
|
|
14
|
-
"clean": "rimraf build",
|
|
15
|
-
"standard-check": "standard",
|
|
16
|
-
"standard-fix": "standard --fix",
|
|
17
|
-
"pre-commit": "npm run standard-check"
|
|
18
|
-
},
|
|
19
|
-
"peerDependencies": {
|
|
20
|
-
"react": "^16.8.0 || ^17.0.0",
|
|
21
|
-
"react-dom": "^16.8.0 || ^17.0.0",
|
|
22
|
-
"prop-types": "^15.8.1"
|
|
23
|
-
},
|
|
24
|
-
"dependencies": {
|
|
25
|
-
"prismjs": "^1.28.0",
|
|
26
|
-
"styled-components": "^5.1.1"
|
|
27
|
-
},
|
|
28
|
-
"devDependencies": {
|
|
29
|
-
"@babel/core": "^7.17.0",
|
|
30
|
-
"@babel/plugin-transform-runtime": "^7.17.0",
|
|
31
|
-
"@babel/preset-env": "^7.16.11",
|
|
32
|
-
"@babel/preset-react": "^7.16.7",
|
|
33
|
-
"@svgr/webpack": "^6.2.1",
|
|
34
|
-
"@testing-library/jest-dom": "^5.16.2",
|
|
35
|
-
"@testing-library/react": "^12.1.2",
|
|
36
|
-
"@testing-library/user-event": "^13.5.0",
|
|
37
|
-
"babel-loader": "^8.2.3",
|
|
38
|
-
"babel-plugin-styled-components": "^2.0.2",
|
|
39
|
-
"clean-webpack-plugin": "^3.0.0",
|
|
40
|
-
"copy-webpack-plugin": "^11.0.0",
|
|
41
|
-
"core-js": "^3.14.0",
|
|
42
|
-
"css-loader": "^5.1.1",
|
|
43
|
-
"glob": "^7.2.0",
|
|
44
|
-
"html-webpack-plugin": "^5.3.2",
|
|
45
|
-
"husky": "^7.0.4",
|
|
46
|
-
"less": "^3.11.1",
|
|
47
|
-
"less-loader": "^5.0.0",
|
|
48
|
-
"mini-css-extract-plugin": "^1.6.2",
|
|
49
|
-
"react": "^16.13.1",
|
|
50
|
-
"react-dom": "^16.13.1",
|
|
51
|
-
"rimraf": "^3.0.2",
|
|
52
|
-
"standard": "^16.0.4",
|
|
53
|
-
"style-loader": "^1.2.1",
|
|
54
|
-
"webpack": "^5.73.0",
|
|
55
|
-
"webpack-cli": "^4.9.2",
|
|
56
|
-
"webpack-dev-server": "^4.9.2"
|
|
57
|
-
},
|
|
58
|
-
"keywords": [
|
|
59
|
-
"react",
|
|
60
|
-
"svg-icons"
|
|
61
|
-
],
|
|
62
|
-
"husky": {
|
|
63
|
-
"hooks": {
|
|
64
|
-
"pre-commit": "npm run pre-commit"
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@webjet/react-icons",
|
|
3
|
+
"sideEffects": false,
|
|
4
|
+
"version": "0.0.2",
|
|
5
|
+
"description": "React Icons",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"start": "webpack serve --env env=library --port 9020 --open",
|
|
8
|
+
"build": "npm run build:library",
|
|
9
|
+
"build:library": "npm run clean && webpack --env env=library",
|
|
10
|
+
"publish:build": "npm run clean && webpack --env env=icons",
|
|
11
|
+
"publish:pack": "npm run publish:build && npm pack ./build/icons/",
|
|
12
|
+
"publish:test": "npm run publish:build && npm publish --dry-run ./build/icons/",
|
|
13
|
+
"publish:public": "npm run publish:build && npm publish ./build/icons/ --access public",
|
|
14
|
+
"clean": "rimraf build",
|
|
15
|
+
"standard-check": "standard",
|
|
16
|
+
"standard-fix": "standard --fix",
|
|
17
|
+
"pre-commit": "npm run standard-check"
|
|
18
|
+
},
|
|
19
|
+
"peerDependencies": {
|
|
20
|
+
"react": "^16.8.0 || ^17.0.0",
|
|
21
|
+
"react-dom": "^16.8.0 || ^17.0.0",
|
|
22
|
+
"prop-types": "^15.8.1"
|
|
23
|
+
},
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"prismjs": "^1.28.0",
|
|
26
|
+
"styled-components": "^5.1.1"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@babel/core": "^7.17.0",
|
|
30
|
+
"@babel/plugin-transform-runtime": "^7.17.0",
|
|
31
|
+
"@babel/preset-env": "^7.16.11",
|
|
32
|
+
"@babel/preset-react": "^7.16.7",
|
|
33
|
+
"@svgr/webpack": "^6.2.1",
|
|
34
|
+
"@testing-library/jest-dom": "^5.16.2",
|
|
35
|
+
"@testing-library/react": "^12.1.2",
|
|
36
|
+
"@testing-library/user-event": "^13.5.0",
|
|
37
|
+
"babel-loader": "^8.2.3",
|
|
38
|
+
"babel-plugin-styled-components": "^2.0.2",
|
|
39
|
+
"clean-webpack-plugin": "^3.0.0",
|
|
40
|
+
"copy-webpack-plugin": "^11.0.0",
|
|
41
|
+
"core-js": "^3.14.0",
|
|
42
|
+
"css-loader": "^5.1.1",
|
|
43
|
+
"glob": "^7.2.0",
|
|
44
|
+
"html-webpack-plugin": "^5.3.2",
|
|
45
|
+
"husky": "^7.0.4",
|
|
46
|
+
"less": "^3.11.1",
|
|
47
|
+
"less-loader": "^5.0.0",
|
|
48
|
+
"mini-css-extract-plugin": "^1.6.2",
|
|
49
|
+
"react": "^16.13.1",
|
|
50
|
+
"react-dom": "^16.13.1",
|
|
51
|
+
"rimraf": "^3.0.2",
|
|
52
|
+
"standard": "^16.0.4",
|
|
53
|
+
"style-loader": "^1.2.1",
|
|
54
|
+
"webpack": "^5.73.0",
|
|
55
|
+
"webpack-cli": "^4.9.2",
|
|
56
|
+
"webpack-dev-server": "^4.9.2"
|
|
57
|
+
},
|
|
58
|
+
"keywords": [
|
|
59
|
+
"react",
|
|
60
|
+
"svg-icons"
|
|
61
|
+
],
|
|
62
|
+
"husky": {
|
|
63
|
+
"hooks": {
|
|
64
|
+
"pre-commit": "npm run pre-commit"
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|