forked from lucaskatayama/react-weathericons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.4 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
{
"name": "react-weathericons",
"version": "1.0.3",
"description": "A React component for the weather-icons icon library.",
"repository": {
"type": "git",
"url": "git+https://github.com/lucaskatayama/react-weathericons.git"
},
"config": {
"entry": "src",
"output": "lib",
"mainFile": "src/index.js"
},
"bugs": {
"url": "https://github.com/lucaskatayama/react-weathericons/issues"
},
"main": "lib/index.js",
"scripts": {
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"commit": "./node_modules/.bin/git-cz",
"build": "./node_modules/.bin/babel $npm_package_config_entry --out-dir $npm_package_config_output",
"build:watch": "npm run build -- --watch",
"dist": "npm run lint && npm test && npm run build",
"lint": "./node_modules/.bin/eslint .",
"test": "./node_modules/.bin/jest",
"coverage": "./node_modules/.bin/jest --coverage",
"test:watch": "./node_modules/.bin/jest --watch"
},
"keywords": [
"react",
"weather-icons",
"weathericons",
"bootstrap",
"icons",
"fonts",
"icon",
"lucaskatayama",
"big",
"style",
"jsx",
"react-component",
"component"
],
"author": {
"name": "Lucas Katayama",
"email": "[email protected]",
"url": "lucaskatayama.com"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.0",
"babel-jest": "^17.0.2",
"babel-loader": "^6.2.7",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"chai": "^3.2.0",
"codecov": "^1.0.1",
"commitizen": "^2.8.6",
"enzyme": "^2.6.0",
"eslint": "^3.10.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "^6.7.1",
"jest": "^17.0.3",
"jsdoc-to-markdown": "^1.1.1",
"react": "^15.4.1",
"react-dom": "^15.4.0",
"rimraf": "^2.5.4"
},
"homepage": "",
"engines": {
"node": ">=0.10.0"
},
"peerDependencies": {
"react": ">=0.12.0"
},
"dependencies": {
"chai-enzyme": "^0.6.1",
"react-addons-test-utils": "^15.4.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"src"
],
"coverageReporters": [
"json",
"html",
"text"
]
}
}