-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1009 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1009 Bytes
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": "filejet-react",
"description": "React integration for FileJet",
"version": "0.1.1",
"homepage": "https://github.com/filejet/filejet-react",
"author": "Tomas Szabo <tomas.szabo@deftomat.com>",
"contributors": [
"Tomas Szabo <tomas.szabo@deftomat.com>"
],
"license": "MIT",
"keywords": [
"filejet",
"react"
],
"sideEffects": false,
"scripts": {
"checkup": "deftomat-opinionated --with-tsc",
"tsc": "tsc --noEmit",
"build": "tsc && tsc --build tsconfig.cjs.json",
"prepublishOnly": "rm -rf ./dist && yarn build"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"typings": "./dist/esm/index.d.ts",
"files": [
"dist"
],
"husky": {
"hooks": {
"pre-commit": "yarn checkup"
}
},
"peerDependencies": {
"react": ">=16"
},
"devDependencies": {
"@deftomat/opinionated": "0.4.3",
"@types/react": "^16.8.0",
"husky": "^1.3.1",
"prettier": "1.17.0",
"typescript": "^3.4.5"
}
}