-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
53 lines (53 loc) · 1.08 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
{
"name": "react-hubspot",
"version": "1.0.4",
"description": "A collection of React hooks for interacting with Hubspot APIs",
"main": "./dist/index.js",
"author": "Adam Soffer",
"scripts": {
"build": "babel src --out-dir dist",
"prepare": "npm run build"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"babel-preset-minify": "^0.5.0",
"husky": "^1.2.0",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3"
},
"dependencies": {
"axios": "^0.21.1",
"react": "^16.8.0-alpha.1"
},
"files": [
"dist"
],
"lint-staged": {
"*.{js,json}": [
"prettier --write --no-semi --single-quote --jsx-bracket-same-line",
"git add"
]
},
"repository": {
"type": "git",
"url": "git@github.com:adamsoffer/react-hubspot.git"
},
"keywords": [
"react",
"react-hooks",
"react-hook",
"form",
"forms",
"hubspot",
"hubspot-api",
"hubspot-form"
],
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}