-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.69 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
{
"author": "Libor Zoubek <[email protected]>",
"bugs": {
"url": "https://github.com/IntelStudios/text-utils/issues"
},
"dependencies": {
"esbuild": "^0.24.0",
"iban": "0.0.12",
"text-mask-addons": "^3.8.0",
"text-mask-core": "^5.1.2"
},
"description": "JavaScript function that makes input HTML element accept mask pattern",
"devDependencies": {
"@types/chai": "^4.2.5",
"@types/expect": "^1.20.4",
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.7",
"antlr4-cli": "^4.5.3",
"antlr4-tool": "^1.0.26",
"chai": "^4.2.0",
"csv-reader": "^1.0.3",
"minimist": "^1.2.0",
"mocha": "^6.1.4",
"mocha-junit-reporter": "^1.22.0",
"mocha-multi-reporters": "^1.1.7",
"ts-loader": "^5.3.3",
"ts-mocha": "^6.0.0",
"ts-node": "^8.1.0",
"typescript": "^3.4.4",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"homepage": "https://github.com/IntelStudios/text-utils",
"keywords": [
"text mask",
"input mask",
"string mask",
"input formatting",
"text formatting",
"string formatting"
],
"license": "Unlicense",
"main": "dist/is-text-utils.js",
"name": "@intelstudios/text-utils",
"type": "module",
"typings": "src/index.ts",
"repository": {
"type": "git",
"url": "https://github.com/IntelStudios/text-utils.git"
},
"scripts": {
"build": "node ./build.mjs",
"build.package": "npm run test && npm run build && npm pack",
"build.publish": "npm run test && npm run build && npm publish",
"test": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' ts-mocha -p tsconfig.test.json src/**.spec.ts"
},
"version": "2.0.1",
"volta": {
"node": "18.20.4"
}
}