forked from aneurysmjs/uselazy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.06 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
{
"name": "uselazy",
"version": "0.0.0-semantically-released",
"repository": "[email protected]:aneurysmjs/uselazy.git",
"author": "jero <[email protected]>",
"license": "MIT",
"scripts": {
"clean": "./node_modules/.bin/rimraf dist es",
"build": "rollup -c",
"commit": "git-cz",
"test": "node scripts/test.js --env=jsdom",
"semantic-release": "semantic-release",
"lint": "eslint './src/**/*.{ts,tsx}'",
"pretest": "yarn build",
"prepare": "yarn clean clean && yarn lint && yarn test"
},
"keywords": [
"lazy loading",
"useLazy",
"lazy hook",
"react lazy hook"
],
"main": "dist/uselazy.js",
"unpkg": "dist/uselazy.js",
"module": "es/uselazy.js",
"files": [
"dist",
"lib",
"es"
],
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"dependencies": {},
"devDependencies": {
"@testing-library/react-hooks": "3.1.0",
"@types/jest": "24.0.19",
"@types/node": "12.11.1",
"@types/react": "16.9.9",
"@types/testing-library__react": "9.1.2",
"@typescript-eslint/eslint-plugin": "2.4.0",
"@typescript-eslint/parser": "2.4.0",
"chalk": "2.4.2",
"commitizen": "4.0.3",
"cross-env": "6.0.3",
"cz-conventional-changelog": "3.0.2",
"eslint": "6.5.1",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "6.4.0",
"eslint-plugin-class-property": "1.1.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-react": "7.16.0",
"eslint-plugin-react-hooks": "2.1.2",
"jest": "24.9.0",
"prettier": "1.18.2",
"react": "^16.9.0",
"react-test-renderer": "16.11.0",
"rimraf": "3.0.0",
"rollup": "1.25.2",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-terser": "5.1.2",
"rollup-plugin-typescript2": "0.24.3",
"semantic-release": "15.13.27",
"ts-jest": "24.1.0",
"typescript": "3.6.4"
},
"peerDependencies": {
"react": "^16.9.0"
}
}