-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 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": "@boldcommerce/checkout-frontend-library",
"version": "0.52.2",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"scripts": {
"build": "ttsc",
"test": "jest",
"cover-test": "jest --coverage --colors",
"lint": "eslint .",
"tsc": "tsc",
"lint-ci": "yarn lint",
"test-ci": "yarn cover-test --ci --bail --verbose",
"lint-staged": "lint-staged",
"docs": "npx typedoc --plugin typedoc-plugin-markdown --disableSources --hideBreadcrumbs --out docs",
"prepare": "husky install"
},
"devDependencies": {
"@types/jest": "^27.0.0",
"@types/node-fetch": "^2.5.10",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.27.0",
"husky": "^7.0.1",
"jest": "^27.4.7",
"lint-staged": "^11.1.2",
"node-fetch": "^2.6.7",
"ts-jest": "^27.0.3",
"ttypescript": "^1.5.12",
"typedoc": "^0.22.18",
"typedoc-plugin-markdown": "^3.13.6",
"typescript": "^4.3.2",
"typescript-transform-paths": "^3.3.1"
},
"files": [
"lib/**/*"
],
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix --max-warnings 0"
}
}