-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.35 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.35 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@athoscommerce/beacon",
"version": "1.1.0",
"author": "athoscommerce",
"license": "MIT",
"description": "Javascript library for utilizing Athos Commerce beacon tracking.",
"main": "dist/cjs/src/index.js",
"module": "dist/esm/src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/AthosCommerce/beacon.js.git"
},
"prettier": "@searchspring/prettier",
"scripts": {
"build": "rm -rf ./dist && npm run generate && tsc && tsc -p tsconfig.cjs.json && npm run build:cdn",
"build:cdn": "webpack --config webpack.prod.js",
"dev": "tsc --watch & webpack serve --config webpack.dev.js",
"commit": "cz",
"test": "jest",
"test:watch": "jest --watch",
"generate": "rm -fr ./src/client && openapi-generator-cli generate -i ./beacon.v2.snap.types.oas.yaml -g typescript-fetch -o ./src/client && npm run format",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx}'",
"lint": "eslint src --ext .ts,.tsx",
"prepare": "husky",
"version": "standard-version -a",
"postpublish": "git push && git push --tags"
},
"dependencies": {
"uuid": "9.0.1"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/runtime": "^7.21.0",
"@openapitools/openapi-generator-cli": "^2.25.2",
"@searchspring/browserslist-config-snap": "^1.0.7",
"@searchspring/prettier": "1.0.2",
"@types/jest": "^29.5.14",
"@types/uuid": "^10.0.0",
"babel-loader": "^9.1.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "9.23.0",
"eslint-config-prettier": "10.1.1",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "26.0.0",
"lint-staged": "15.5.0",
"prettier": "3.5.3",
"standard-version": "9.5.0",
"ts-jest": "^29.3.0",
"ts-loader": "9.4.2",
"typedoc": "0.28.1",
"typescript": "5.8.2",
"typescript-eslint": "^8.55.0",
"webpack": "^5.77.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.2",
"webpack-merge": "^5.8.0",
"whatwg-fetch": "^3.6.20"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write",
"eslint"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"browserslist": {
"universal": "extends @searchspring/browserslist-config-snap/universal"
}
}