-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.54 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
{
"author": "seven communications GmbH & Co. KG <[email protected]> (https://www.seven.io/)",
"homepage": "https://github.com/seven-io/sms-counter",
"keywords": [
"sms",
"characters",
"count",
"gsm7",
"ucs2"
],
"description": "Counts the SMS character usage in browser as well as NodeJS environments.",
"devDependencies": {
"@babel/preset-env": "^7.25.7",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.13",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-runner-groups": "^2.2.0",
"rimraf": "^5.0.10",
"rollup": "^4.24.0",
"ts-jest": "^29.2.5",
"tslib": "^2.7.0",
"typescript": "^5.6.3"
},
"license": "MIT",
"main": "dist/index.js",
"name": "@seven.io/counter",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seven-io/sms-counter.git"
},
"scripts": {
"build": "cross-env rimraf dist && npm run bundle",
"bundle": "cross-env NODE_ENV=prod rollup -c --bundleConfigAsCjs",
"dev": "rollup -c -w --bundleConfigAsCjs",
"prepublishOnly": "npm run build",
"test": "npx jest"
},
"types": "dist/index.d.ts",
"version": "1.11.0"
}