-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
72 lines (72 loc) · 2.01 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
{
"name": "embla-carousel-react",
"version": "0.1.1",
"author": "David Cetinkaya",
"private": false,
"description": "A React.js component for Embla Carousel, written in TypeScript",
"keywords": [
"slider",
"carousel",
"lightweight",
"react",
"react-component",
"embla-carousel"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/davidcetinkaya/embla-carousel-react"
},
"bugs": {
"url": "https://github.com/davidcetinkaya/embla-carousel-react/issues"
},
"homepage": "https://github.com/davidcetinkaya/embla-carousel-react#readme",
"files": [
"lib/**/*"
],
"browserslist": "last 5 versions",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "webpack -p --config ./webpack/webpack.config",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@types/enzyme": "^3.9.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.13",
"@types/jest-diff": "^20.0.0",
"@types/react": "^16.8.19",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^1.0.1",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"jest": "^24.8.0",
"prettier": "^1.17.0",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.5",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1"
},
"dependencies": {
"embla-carousel": "^2.0.1",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
}
}