forked from react-icons/react-icons
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.45 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "react-icons2",
"version": "2.5.0",
"description": "svg react icons of popular icon packs using ES6 imports",
"scripts": {
"docs": "babel-node ./bin/generate-docs",
"release": "DEBUG=0 npm run build && npm publish dist",
"build": "rm -rf dist && npm run create-es6 && mkdir dist && cp {package.json,yarn.lock,README.md} dist/ && babel es6 --out-dir dist --source-maps inline --copy-files",
"create-es6": "rm -rf es6 && mkdir es6 && node ./bin/create && cp IconBase.js es6/IconBase.js",
"eslint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/gorangajic/react-icons.git"
},
"keywords": [
"react",
"icons",
"inline",
"svg",
"font",
"awesome",
"material",
"design"
],
"author": "Goran Gajic",
"license": "MIT",
"bugs": {
"url": "https://github.com/gorangajic/react-icons/issues"
},
"homepage": "https://github.com/gorangajic/react-icons#readme",
"devDependencies": {
"babel": "6.5.2",
"babel-cli": "6.7.5",
"babel-eslint": "5.0.0-beta6",
"babel-plugin-add-module-exports": "0.1.2",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-0": "6.5.0",
"camelcase": "2.0.1",
"capitalize": "1.0.0",
"cheerio": "0.19.0",
"classnames": "2.2.6",
"commitizen": "2.8.2",
"cz-conventional-changelog": "1.1.6",
"decamelize": "1.1.2",
"eslint": "1.10.3",
"eslint-config-airbnb": "3.1.0",
"eslint-plugin-react": "3.15.0",
"ghooks": "1.3.2",
"glob": "6.0.4",
"gulp": "3.9.0",
"marky-markdown": "https://github.com/npm/marky-markdown",
"material-design-lite": "1.0.6",
"mkdir-recursive": "0.4.0",
"svg-scaler": "gorangajic/svg-scaler#take-size-viewbox",
"underscore": "1.8.3",
"validate-commit-msg": "2.6.1"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0",
"react-dom": "^0.14.0 || ^15.0.0 || ^16.0.0"
},
"dependencies": {
"react-icon-base": "2.1.2"
},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg"
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"types": [
"issue",
"master",
"revert"
],
"warnOnFail": false,
"maxSubjectLength": 100,
"subjectPattern": ".+",
"subjectPatternErrorMsg": "subject does not match subject pattern!",
"helpMessage": ""
}
}
}