-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.09 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.09 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@code-expert/antd-fa-icons",
"version": "5.0.0",
"description": "",
"main": "./es/icons/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"createTemplates": "node ./scripts/generateIconTemplates.js",
"build": "npm run clean-build && npm run createTemplates && babel ./icons -d . && npm run copy-prepublish && npm run clean-prepublish && npm run clean-build",
"copy-prepublish": "cp -f ./*.js ./es/icons/",
"clean-build": "rm -rf ./*.js",
"clean-prepublish": "rm -rf ./icons/*.*"
},
"keywords": [],
"author": "",
"license": "ISC",
"peerDependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-brands-svg-icons": "^6.2.1",
"@fortawesome/free-regular-svg-icons": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"react-fontawesome-svg-icon": "^1.1.2"
},
"dependencies": {
"classnames": "^2.3.2"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"babel-plugin-transform-imports": "^2.0.0",
"csv-parser": "^3.0.0",
"lodash.template": "^4.5.0"
},
"eslintConfig": {
"extends": "airbnb",
"rules": {
"import/no-named-as-default": "off",
"import/no-named-as-default-member": "off",
"import/named": "off",
"prefer-destructuring": "off",
"no-underscore-dangle": "off",
"import/prefer-default-export": "off",
"class-methods-use-this": "off",
"object-curly-newline": [
"error",
{
"consistent": true
}
],
"function-paren-newline": [
"error",
"consistent"
]
}
},
"eslintIgnore": [
"/dist"
],
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeExpertETH/antd-fa-icons.git"
},
"bugs": {
"url": "https://github.com/CodeExpertETH/antd-fa-icons/issues"
},
"homepage": "https://github.com/CodeExpertETH/antd-fa-icons#readme"
}