-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.36 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "ionic-react-header-parallax",
"version": "0.3.1",
"description": "Easy to use hook to handle the parallax effect for IonHeader component in React Ionic",
"author": {
"name": "Ahmd Nouira",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ahmnouira/ionic-react-header-parallax.git"
},
"readme": "https://github.com/ahmnouira/ionic-react-header-parallax.git#redme",
"homepage": "https://github.com/ahmnouira/ionic-react-header-parallax",
"keywords": [
"ionic",
"parallax",
"ion-header",
"header"
],
"contributors": [
{
"name": "Ahmed Nouira",
"web": "http://twitter.com/AhmNouira"
}
],
"bugs": {
"url": "https://github.com/ahmnouira/ionic-react-header-parallax.git/issues"
},
"files": [
"dist/",
"types/index.d.ts"
],
"main": "dist/index.js",
"types": "types/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --passWithNoTests",
"test:update": "jest -u",
"test:ci": "jest --runInBand --detectOpenHandles",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"eslint:fix": "eslint src/**/*.ts --fix",
"format:fix": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"clean-install": "rimraf node_modules && yarn",
"docs:build": "yarn docs:clean",
"docs:clean": "rimraf docs",
"docs:serve": "serve docs",
"changelog": "auto-changelog -p",
"prepare": "rimraf dist && yarn build",
"release": "np --no-2fa"
},
"devDependencies": {
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@ionic/react": "6.0.5",
"@testing-library/react": "12.1.2",
"@types/jest": "27.4.0",
"@types/node": "17.0.14",
"@types/react": "17.0.38",
"auto-changelog": "2.4.0",
"babel-jest": "27.4.6",
"codecov": "3.8.3",
"eslint": "8.10.0",
"jest": "27.4.7",
"np": "7.6.1",
"prettier": "2.5.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"rimraf": "3.0.2",
"serve": "13.0.2",
"testing-library__dom": "7.29.4-beta.1",
"ts-jest": "27.1.4",
"ts-node": "10.5.0",
"typescript": "4.5.5"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"resolutions": {
"jest": "26.6.3"
}
}