-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.8 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
{
"name": "@moxy/react-carousel",
"version": "0.1.10",
"description": "Fully stylable, CSS oriented carousel",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"lib",
"es",
"dist"
],
"scripts": {
"lint": "eslint . --ignore-path .gitignore",
"test": "jest src",
"prebuild": "node prebuild.js",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src -d lib --delete-dir-on-start",
"build:es": "cross-env BABEL_ENV=es babel src -d es --delete-dir-on-start",
"build": "npm run build:commonjs && npm run build:es",
"postbuild": "node postbuild.js",
"prerelease": "npm t && npm run lint && npm run build",
"release": "standard-version",
"postrelease": "git push --follow-tags origin HEAD && npm publish"
},
"keywords": [
"react",
"carousel",
"slider"
],
"author": "João Gradim <joao.pereira@moxy.studio>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:moxystudio/react-carousel.git"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@moxy/babel-preset": "^3.2.4",
"@moxy/eslint-config": "^10.1.1",
"@moxy/jest-config": "^2.0.0",
"@testing-library/react": "^9.4.1",
"babel-preset-moxy": "^3.2.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-moxy": "^9.1.1",
"fs-extra": "^8.1.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.7",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"standard-version": "^8.0.1",
"terser": "^4.6.6"
}
}