-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.41 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
{
"name": "@huckleberry-inc/valuecommerce-advertiser",
"version": "1.0.3",
"description": "ValueCommerce node client for advertiser",
"author": "Huckleberry, inc. <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/huckleberry-inc/valuecommerce-advertiser",
"bugs": {
"url": "https://github.com/huckleberry-inc/valuecommerce-advertiser/issues"
},
"repository": "https://github.com/huckleberry-inc/valuecommerce-advertiser",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"test": "jest src/",
"build": "tsc",
"prepublishOnly": "npm run build",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint --fix 'src/**/*.{js,jsx,ts,tsx}'",
"precommit": "lint-staged"
},
"devDependencies": {
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@huckleberry-inc/eslint-config": "^0.0.13",
"@huckleberry-inc/prettier-config": "^0.0.6",
"@types/babel__preset-env": "^7.9.0",
"@types/jest": "^26.0.10",
"@types/nock": "^11.1.0",
"@types/node-fetch": "^2.5.7",
"jest": "^26.4.1",
"nock": "^13.0.4",
"typescript": "^3.8.3"
},
"dependencies": {
"node-fetch": "^2.6.0",
"query-string": "^6.13.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"git add"
]
}
}