-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
43 lines (43 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
43
{
"name": "format-to-jsx",
"description": "React (JS) string formatting",
"version": "0.0.0-development",
"license": "MIT",
"author": "Maciej Malkowski <monkey3310@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/agoda-com/react-handyman.git"
},
"keywords": [
"react",
"string formatting",
"formatting",
"jsx",
"string format",
"format"
],
"main": "lib/cjs/index.js",
"module": "lib/index.js",
"browser": "lib/formattojsx.umd.js",
"types": "lib/index.d.ts",
"peerDependencies": {
"react": "^16.13.1"
},
"devDependencies": {
"@types/react": "^16.9.43",
"react": "^16.13.1",
"semantic-release": "17.2.3",
"semantic-release-monorepo": "7.0.3"
},
"files": [
"lib"
],
"scripts": {
"semantic-release": "semantic-release -e semantic-release-monorepo",
"prebuild": "rimraf lib",
"build": "rollup -c && yarn emit-declarations",
"watch": "rollup -c -w",
"typecheck": "tsc",
"emit-declarations": "tsc -p tsconfig.build.json -d --noEmit false --emitDeclarationOnly --isolatedModules false --declarationDir \"./lib/\""
}
}