-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.37 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": "@hellotext/hellotext",
"version": "1.8.4",
"description": "Hellotext JavaScript Client",
"source": "src/index.js",
"main": "lib/index.js",
"author": "Hellotext",
"license": "MIT",
"homepage": "https://github.com/hellotext/hellotext.js",
"exports": {
".": "./lib/index.js",
"./vanilla": "./lib/vanilla.js"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"@babel/plugin-proposal-export-default-from": "^7.20.0",
"@testing-library/jest-dom": "^5.16.5",
"babel-loader": "^9.1.2",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"prettier": "2.8.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"style-loader": "^3.3.1",
"css-loader": "^6.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hellotext/hellotext.js.git"
},
"keywords": [
"hellotext",
"javascript"
],
"scripts": {
"test": "NODE_ENV=test jest",
"build": "npm run build:babel && npm run build:webpack",
"build:babel": "babel src -d lib",
"build:webpack": "webpack"
},
"bugs": {
"url": "https://github.com/hellotext/hellotext.js/issues"
},
"dependencies": {
"core-js": "3.27.2",
"whatwg-fetch": "^3.6.2",
"@hotwired/stimulus": "^3.0.0"
}
}