-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
95 lines (95 loc) · 3.12 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
{
"name": "react-lazy-card",
"version": "0.1.8",
"description": "A lighweight image lazy-loading component written in React",
"main": "dist/index.js",
"jsnext:main": "components/index.js",
"module": "components/index.js",
"files": [
"components",
"dist",
"README"
],
"scripts": {
"lint": "eslint components/**/*.js tests/**/*.js",
"lintfix": "eslint --fix components/**/*.js tests/**/*.js",
"prepublish": "npm run lint && npm run test && npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"storybook": "start-storybook -p 9002",
"test": "mocha --require tests/config/setup 'tests/**/*.test.js'",
"test:watch": "mocha --require tests/config/setup 'tests/**/*.test.js' --watch",
"test:cover": "istanbul cover -x *.test.js _mocha -- -R spec --require tests/config/setup 'tests/**/*.test.js'",
"test:report": "cat ./coverage/lcov.info | codecov && rm -rf ./coverage",
"build": "rm -rf dist && babel components --out-dir dist && npm run build:styles",
"build:styles": "node-sass components --output dist",
"build:watch": "babel --watch components --out-dir dist",
"docs": "build-storybook -o docs"
},
"repository": {
"type": "git",
"url": "https://github.com/housinghq/react-lazy-card"
},
"keywords": [
"react-swipe",
"react-photostory",
"react-lazy-card",
"lazy-load",
"lazy-image",
"image"
],
"author": "Ritesh Kumar",
"license": "MIT",
"bugs": {
"url": "https://github.com/housinghq/react-lazy-card/issues"
},
"homepage": "https://github.com/housinghq/react-lazy-card",
"devDependencies": {
"@kadira/react-storybook-decorator-centered": "^1.0.0",
"@kadira/storybook": "^2.24.0",
"@kadira/storybook-addon-actions": "^1.1.1",
"@kadira/storybook-addon-options": "^1.0.1",
"autoprefixer": "^7.1.1",
"babel-cli": "^6.16.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"chai": "^4.0.1",
"chai-enzyme": "^0.7.1",
"codecov.io": "^0.1.6",
"commitizen": "^2.8.6",
"cz-conventional-changelog": "^2.0.0",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.4",
"eslint": "^3.7.1",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-node": "^5.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.0.1",
"eslint-plugin-standard": "^3.0.1",
"eventsource-polyfill": "^0.9.6",
"extract-text-webpack-plugin": "^2.1.0",
"isparta": "^4.0.0",
"istanbul": "^1.1.0-alpha.1",
"jsdom": "9.6.0",
"mocha": "^3.1.0",
"node-sass": "^4.5.3",
"react-dom": "^15.4.1 || ^16.0.0",
"rimraf": "^2.5.4",
"sass-loader": "^6.0.5",
"semantic-release": "^6.3.6",
"sinon": "^2.3.2"
},
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.5.10",
"react": "^15.x.x || ^16.0.0",
"react-auto-bind": "^0.3.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}