-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.55 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
{
"name": "@behavior/carousel",
"version": "1.0.0",
"description": "React component that takes care of carousel behavior and uses UI that you define",
"scripts": {
"clean": "rimraf esm",
"build": "rollup -c",
"watch": "rollup -cw",
"prepublish": "npm run clean && npm run build"
},
"module": "esm/index.mjs",
"main": "esm/index.mjs",
"directories": {
"example": "examples"
},
"files": [
"esm",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nckcol/carousel-behavior.git"
},
"keywords": [
"carousel",
"react",
"component",
"behavior",
"primitive"
],
"author": "Nick Popov <[email protected]> (http://nckcol.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/nckcol/carousel-behavior/issues"
},
"homepage": "https://github.com/nckcol/carousel-behavior#readme",
"peerDependencies": {
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.1",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"@babel/preset-react": "^7.0.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"rimraf": "^2.6.3",
"rollup": "^1.16.6",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-size-snapshot": "^0.9.0",
"rollup-plugin-terser": "^5.1.1"
},
"dependencies": {
"@babel/runtime": "^7.5.1",
"react": "^16.8.6"
}
}