-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.91 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.91 KB
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
{
"name": "react-card-scroll",
"version": "0.0.0-semantically-released",
"description": "A React component to navigate horizontally between cards of same width",
"main": "lib/index.js",
"scripts": {
"test": "nyc babel-tape-runner test/**.js",
"posttest": "nyc report --reporter=lcov",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"build": "BABEL_DISABLE_CACHE=1 NODE_ENV=LIB babel -d lib/ src",
"dev": "BABEL_DISABLE_CACHE=1 NODE_ENV=LIB babel -d lib/ src -w",
"example": "node webpack.example.js",
"prepublish": "BABEL_DISABLE_CACHE=1 NODE_ENV=LIB babel -d lib/ src",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"keywords": [
"react-component",
"navigation",
"scroll",
"horizontal",
"cards"
],
"author": "Florian Bernard",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/webcom-components/react-card-scroll"
},
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-core": "^6.7.6",
"babel-loader": "^6.2.4",
"babel-plugin-webpack-loaders": "^0.4.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"babel-tape-runner": "^2.0.1",
"bootstrap": "^4.0.0-alpha.2",
"codecov.io": "^0.1.6",
"css-loader": "^0.23.1",
"cz-conventional-changelog": "^1.1.6",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^2.16.0",
"istanbul": "^0.4.4",
"node-sass": "^3.6.0",
"nyc": "^7.0.0",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"sass-loader": "^3.2.0",
"semantic-release": "^4.3.5",
"style-loader": "^0.13.1",
"tape": "^4.5.1",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"lodash": "^4.11.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}