-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
136 lines (136 loc) · 4.38 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "react-devicon",
"version": "0.1.9",
"description": "React Devicon is a React implementation of the Devicon package, a library that contains the logos of several programming languages and libraries, as well as of different design and development tools.",
"main": "lib/index.js",
"author": "Fernando Poumián",
"homepage": "http://fpoumian.github.io/react-devicon",
"license": "MIT",
"private": true,
"keywords": [
"react",
"icons",
"icon",
"devicon",
"devicons",
"svg",
"components"
],
"bugs": {
"url": "https://github.com/fpoumian/react-devicon/issues"
},
"repository": "fpoumian/react-devicon",
"scripts": {
"test": "node scripts/test.js --env=jsdom",
"test:sample": "npm run test -- src/components/android/*",
"generate:components": "node scripts/generateComponents.js",
"docs:copy-devicon-files": "node scripts/copyDeviconFiles.js",
"docs:deploy": "cd docs && yarn build && cd .. && gh-pages -d docs/public",
"prebuild": "rimraf lib",
"build": "npm-run-all --parallel build:commonjs build:copy-files",
"build:copy-files": "node scripts/copyBuildFiles.js",
"build:commonjs": "cross-env NODE_ENV=production babel ./src/components --out-dir ./lib --ignore __tests__/*.js",
"format-all": "prettier --trailing-comma es5 --no-semi --single-quote --write './src/**/*.js' './scripts/**/*.js' './config/**/*.js' './docs/**/*.js' '!./docs/.cache/**/*.js' '!./docs/node_modules/**/*.js' '!./docs/public/**/*.js'",
"lint": "eslint .",
"eslint-check": "eslint --print-config .eslintrc | eslint-config-prettier-check",
"patch": "npm version patch && npm run publish:lib",
"minor": "npm version minor && npm run publish:lib",
"major": "npm version major && npm run publish:lib",
"precommit": "lint-staged",
"prepublish:lib": "npm run lint && jest --env=jsdom && npm run build",
"publish:lib": "cd lib && npm publish"
},
"lint-staged": {
"*.js": [
"prettier --trailing-comma es5 --no-semi --single-quote --write",
"git add"
]
},
"dependencies": {
"prop-types": "^15.3.0",
"react-svg-inline": "^2.0.0",
"normalize-css-unit": "^1.0.0"
},
"peerDependencies": {
"react": ">= 15.3.0 < 16 || 16.x",
"react-dom": ">= 15.3.0 < 16 || 16.x"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "7.2.3",
"babel-jest": "^21.2.0",
"babel-plugin-transform-export-default": "^7.0.0-alpha.20",
"babel-preset-react-app": "^3.0.3",
"chalk": "^2.1.0",
"chokidar": "^1.6.1",
"cross-env": "^5.0.5",
"devicon-2.2": "^2.2.0",
"enzyme": "^2.8.2",
"escape-quotes": "^1.0.2",
"eslint": "3.19.0",
"eslint-config-prettier": "^2.3.0",
"eslint-config-react-app": "^1.0.4",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "5.0.3",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-standard": "^3.0.1",
"fs-extra": "^4.0.2",
"gh-pages": "^1.0.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"judex-component-generator": "^0.1.0",
"lint-staged": "^4.2.3",
"lodash.isnumber": "^3.0.3",
"lodash.isstring": "^4.0.1",
"npm-run-all": "4.0.2",
"nunjucks": "^3.0.1",
"pascal-case": "^2.0.1",
"prettier": "^1.7.2",
"react": "15.5.4",
"react-addons-test-utils": "^15.6.2",
"react-docgen": "2.14.0",
"react-dom": "15.5.4",
"react-test-renderer": "^15.0.0",
"recursive-copy": "^2.0.6",
"standard": "^10.0.3",
"svgo": "^0.7.2"
},
"babel": {
"plugins": [
"transform-export-default"
],
"presets": [
[
"env",
{
"modules": "commonjs"
}
],
"react-app"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.js?(x)",
"<rootDir>/src/**/?(*.)(spec|test).js?(x)",
"<rootDir>/scripts/**/__tests__/**/*.js"
],
"testEnvironment": "node",
"testURL": "http://localhost",
"transform": {
"^.+\\.(js|jsx)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.(svg)$": "<rootDir>/config/jest/svgTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
]
}
}