-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.68 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": "react-random-reveal",
"version": "2.0.1",
"description": "React component/hook to add a little thrill before revealing the truth via random character animation",
"main": "./lib/index.js",
"module": "./lib/index.module.js",
"source": "./src/index.ts",
"types": "./lib/index.d.ts",
"author": "Vasil Dimitrov",
"license": "MIT",
"files": [
"lib"
],
"scripts": {
"start": "node scripts/serve.js",
"ts-declaration": "tsc --declaration --emitDeclarationOnly --outDir lib",
"build": "yarn ts-declaration && node scripts/build.js",
"test": "jest --collectCoverage --coverageDirectory=\"coverage\"",
"test-watch": "jest --watch",
"prepublish": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vydimitrov/react-random-reveal.git"
},
"keywords": [
"React",
"component",
"hook",
"random",
"reveal",
"text",
"character",
"animation",
"ios",
"android",
"react-native"
],
"bugs": {
"url": "https://github.com/vydimitrov/react-random-reveal/issues"
},
"homepage": "https://github.com/vydimitrov/react-random-reveal#readme",
"dependencies": {
"use-elapsed-time": "3.0.2"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@testing-library/jest-dom": "5.15.1",
"@testing-library/react": "12.1.2",
"@types/jest": "27.0.3",
"@types/node": "16.11.10",
"@types/react": "17.0.36",
"@types/react-dom": "17.0.11",
"codecov": "3.8.3",
"esbuild": "0.13.15",
"jest": "27.3.1",
"prettier": "2.4.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"ts-jest": "27.0.7",
"typescript": "4.5.2"
}
}