-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.72 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
{
"name": "inferno-carousel",
"version": "2.3.3",
"description": "Carousel component for InfernoJS.",
"main": "lib/index.js",
"files": [
"lib/*",
"package.json",
"LICENSE",
"README.md"
],
"scripts": {
"reinstallNodeModules": "rm -rf node_modules package-lock.json && npm i",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run lint && node build.js && npm run copy-over",
"copy-over": "cp lib/index.js example/src/lib/index.js",
"prettier": "prettier \"src/**/*.js\" --write",
"eslint": "eslint \"src/**/*.js\" --fix",
"lint": "npm run prettier && npm run eslint",
"precommit": "lint-staged"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"eslint --fix",
"git add"
],
"example/**/*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "[email protected]:aprilmintacpineda/inferno-carousel.git"
},
"keywords": [
"infernojs",
"inferno",
"carousel",
"component"
],
"author": "April Mintac Pineda",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-syntax-jsx": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-flow": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-plugin-inferno": "^6.0.2",
"babel-preset-minify": "^0.5.0",
"eslint": "^5.8.0",
"eslint-config-inferno-app": "^7.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-inferno": "^7.11.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"husky": "^1.1.3",
"lint-staged": "^8.0.4",
"prettier": "^1.14.3"
},
"peerDependencies": {
"inferno": "^7.0.2",
"js-carousel": "^1.3.7"
}
}