-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.17 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
{
"name": "react-innertext",
"version": "1.1.5",
"author": "Charles Stover (react-innertext@charlesstover.com)",
"description": "Returns the innerText of a React JSX object.",
"homepage": "https://github.com/CharlesStover/react-innertext#readme",
"license": "MIT",
"main": "index.js",
"repository": "github:CharlesStover/react-innertext",
"types": "index.d.ts",
"bugs": {
"email": "react-innertext@charlesstover.com",
"url": "https://github.com/CharlesStover/react-innertext/issues"
},
"directories": {
"lib": "src",
"test": "tests"
},
"files": [
"index.d.ts",
"index.js"
],
"keywords": [
"innerText",
"jsx",
"react",
"reactjs"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "tsc",
"test": "mocha -r ts-node/register tests/index.test.tsx"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.8",
"@types/react": "^16.8.0",
"chai": "^4.1.2",
"mocha": "^6.1.4",
"react": "^16.0.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.0"
},
"peerDependencies": {
"@types/react": ">=0.0.0 <=99",
"react": ">=0.0.0 <=99"
}
}