-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
90 lines (90 loc) · 3.03 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
{
"name": "react-photostory",
"description": "A mobile optimised lighweight gallery component written in React",
"main": "dist/index.j",
"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": "concurrently \"babel --watch components --out-dir dist\" \"node-sass --watch components --output dist\"",
"docs": "build-storybook -o docs"
},
"repository": {
"type": "git",
"url": "https://github.com/housinghq/react-photostory"
},
"keywords": [
"react-swipe",
"react-photostory"
],
"author": "Ritesh Kumar",
"license": "MIT",
"bugs": {
"url": "https://github.com/housinghq/react-photostory/issues"
},
"homepage": "https://github.com/housinghq/react-photostory",
"devDependencies": {
"@storybook/addon-actions": "3.1.8",
"@storybook/addon-knobs": "3.1.8",
"@storybook/addon-options": "3.1.6",
"@storybook/react": "3.1.8",
"autoprefixer": "^7.1.2",
"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.2",
"chai-enzyme": "^0.8.0",
"codecov.io": "^0.1.6",
"commitizen": "^2.8.6",
"concurrently": "^3.1.0",
"cz-conventional-changelog": "^2.0.0",
"enzyme": "^2.4.1",
"eslint": "^3.7.1",
"eslint-config-standard": "^6.2.0",
"eslint-config-standard-react": "^4.2.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-react": "^6.3.0",
"eslint-plugin-standard": "^2.0.1",
"eventsource-polyfill": "^0.9.6",
"extract-text-webpack-plugin": "^1.0.1",
"isparta": "^4.0.0",
"istanbul": "^1.1.0-alpha.1",
"jsdom": "^9.6.0",
"mocha": "^3.1.0",
"node-sass": "^4.5.3",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.4.1",
"react-lazy-card": "^0.1.5",
"rimraf": "^2.5.4",
"sass-loader": "^6.0.6",
"semantic-release": "^6.3.6",
"sinon": "^2.3.7"
},
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.5.10",
"react": "^15.x.x",
"react-auto-bind": "^0.4.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}