-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathpackage.json
81 lines (81 loc) · 2.2 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
{
"name": "react-ideal-image",
"version": "0.0.0-semantically-released",
"description": "Adaptive image component",
"main": "dist/index.js",
"typings": "index.d.ts",
"engines": {
"node": "> 4",
"npm": "> 3"
},
"scripts": {
"add-contributor": "kcd-scripts contributors add",
"build": "kcd-scripts build",
"lint": "kcd-scripts lint",
"test": "kcd-scripts test",
"test:update": "npm test -- --updateSnapshot --coverage",
"test:ts": "tsc --noEmit -p ./tsconfig.json",
"validate": "npm run test:ts && kcd-scripts validate",
"setup": "npm install && npm run validate -s",
"precommit": "kcd-scripts precommit",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"predeploy": "styleguidist build",
"deploy": "gh-pages -d styleguide"
},
"files": [
"dist"
],
"keywords": [],
"author": "stereobooster <stereobooster@gmail.com>",
"license": "MIT",
"peerDependencies": {
"prop-types": ">=15",
"react": ">=0.14.x",
"react-waypoint": ">=8.0.0"
},
"devDependencies": {
"@types/react": "16.4.18",
"babel-loader": "7.1.5",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-proposal-object-rest-spread": "7.0.0",
"@babel/preset-env": "7.1.0",
"@babel/preset-react": "7.0.0",
"gh-pages": "2.0.1",
"jest-canvas-mock": "1.1.0",
"kcd-scripts": "0.45.0",
"prop-types": "15.6.2",
"react": "16.6.0",
"react-dom": "16.6.0",
"react-styleguidist": "8.0.2",
"react-test-renderer": "16.6.0",
"react-testing-library": "5.2.3",
"react-waypoint": "8.0.3",
"typescript": "3.1.5",
"webpack": "4.24.0"
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js",
"rules": {
"complexity": [
"error",
12
],
"no-case-declarations": "off"
}
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist",
"styleguide"
],
"repository": {
"type": "git",
"url": "https://github.com/stereobooster/react-ideal-image.git"
},
"bugs": {
"url": "https://github.com/stereobooster/react-ideal-image/issues"
},
"homepage": "https://github.com/stereobooster/react-ideal-image#readme"
}