-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
93 lines (93 loc) · 2.3 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@tonicpow/widget",
"version": "0.0.18",
"description": "TonicPow helps manage visitor sessions, loads any TonicPow Widgets, and fires events.",
"author": {
"name": "TonicPow",
"email": "support@tonicpow.com",
"url": "https://docs.tonicpow.com"
},
"contributors": [
{
"name": "Satchmo",
"url": "https://github.com/rohenaz/"
},
{
"name": "MrZ",
"url": "https://github.com/mrz1836/"
}
],
"bugs": {
"url": "https://github.com/tonicpow/widget/issues"
},
"homepage": "https://docs.tonicpow.com",
"scripts": {
"lint": "eslint src/*.ts --cache --fix && prettier src/*.ts --write && eslint test/*.ts --cache --fix && prettier test/*.ts --write",
"test": "mocha -r jsdom-global/register test/*.ts",
"clean": "rimraf ./dist/*",
"build": "yarn clean && webpack --config webpack.config.js",
"deploy": "npm publish --access public"
},
"license": "Open BSV",
"repository": {
"type": "git",
"url": "https://github.com/tonicpow/widget/"
},
"keywords": [
"tonic",
"tonicpow-js",
"tonicpow",
"embed",
"bitcoin",
"bsv"
],
"main": "./dist/tonicpow.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/expect": "^24.3.0",
"@types/mocha": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^7.1.1",
"chai": "^5.0.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-mocha": "^10.0.1",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.1",
"jsdom": "23.2.0",
"jsdom-global": "^3.0.2",
"lint-staged": "^15.0.1",
"mocha": "^10.0.0",
"prettier": "^3.0.0",
"pretty-quick": "^3.1.3",
"rimraf": "^5.0.0",
"ts-loader": "^9.0.0",
"ts-node": "^10.2.1",
"typescript": "5.3.3",
"webpack": "^5.65.0",
"webpack-cli": "^5.0.0"
},
"engines": {
"node": "*"
},
"prettier": {
"singleQuote": true,
"printWidth": 100,
"semi": false
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"files": [
"dist/*"
],
"lint-staged": {
"*.{ts,js}": "eslint --cache --fix",
"*.{ts,js,css,md}": "prettier --write"
}
}