-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.67 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
{
"name": "react-appear-in",
"version": "2.1.0",
"description": "Make react components appear sometime in the future",
"main": "dist/react-appear-in.js",
"types": "types/react-appear-in.d.ts",
"scripts": {
"format": "prettier --write './**/*.tsx' 'webpack.config.js'",
"test": "jest test",
"test:watch": "jest test --watch",
"build": "webpack --mode production",
"preversion": "npm test",
"version": "npm run build",
"postversion": "git push --tags"
},
"author": {
"name": "Maroun Baydoun",
"url": "https://maroun-baydoun.com/"
},
"repository": {
"type": "git",
"url": "git@github.com:maroun-baydoun/react-appear-in.git"
},
"bugs": {
"url": "https://github.com/maroun-baydoun/react-appear-in/issues"
},
"homepage": "https://dev.maroun-baydoun.com/react-appear-in/",
"keywords": [
"react",
"appear",
"typescript"
],
"files": [
"LICENSE",
"README.md",
"types"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "26.0.23",
"@types/react": "16.8.0",
"@types/react-test-renderer": "16.8.1",
"clean-webpack-plugin": "3.0.0",
"jest": "27.0.4",
"prettier": "2.3.1",
"react": "16.8.0",
"react-test-renderer": "16.8.0",
"ts-jest": "27.0.3",
"ts-loader": "9.2.3",
"typescript": "4.3.2",
"webpack": "5.38.1",
"webpack-cli": "4.7.2"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}