-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.13 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
{
"name": "@avensia-oss/ts-transform-instrument-react-components",
"version": "0.0.2",
"description": "A TypeScript custom transformer that instruments React components to be able to detect which components aren't rendered",
"main": "index.js",
"types": "dist/src/index.d.ts",
"keywords": [
"TypeScript",
"transform",
"transformer",
"react",
"instrument"
],
"author": "Anders Ekdahl <anders.ekdahl@avensia.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/avensia-oss/ts-transform-instrument-react-components"
},
"homepage": "https://github.com/avensia-oss/ts-transform-instrument-react-components",
"private": false,
"scripts": {
"test": "jest",
"build": "tsc --version && tsc --project \"./\""
},
"files": [
"dist/src/**/*"
],
"devDependencies": {
"@types/jest": "^23.3.10",
"@types/node": "^10.12.18",
"jest": "^23.6.0",
"prettier": "^1.15.3",
"ts-jest": "^23.10.5",
"typescript": "^3.2.2"
},
"peerDependencies": {
"typescript": "*"
},
"dependencies": {
"@types/react": "^16.7.18"
}
}