-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.44 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
{
"name": "textmasks",
"version": "0.0.1-beta",
"description": "Generating text masks with typescript/javascript",
"homepage": "https://github.com/chrishanzlik/textmasks",
"repository": "github:chrishanzlik/textmasks",
"main": "dist/textmasks.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"bugs": {
"url": "https://github.com/chrishanzlik/textmasks/issues"
},
"files": [
"/dist"
],
"scripts": {
"pack": "tsc -p tsconfig.build.json && webpack --mode production",
"serve": "webpack-dev-server --mode development",
"test": "npm run lint && karma start",
"test:ci": "npm run lint && karma start --browsers=ChromeHeadless --progress=false --watch=false --code-coverage",
"lint": "eslint --ext .ts src/"
},
"author": "Christopher Hanzlik",
"license": "MIT",
"keywords": [
"textmask", "inputmask", "stringmask", "mask"
],
"devDependencies": {
"@types/jasmine": "^4.0.3",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.17.0",
"jasmine-core": "^4.1.1",
"karma": "^6.3.20",
"karma-chrome-launcher": "^3.1.1",
"karma-jasmine": "^5.0.1",
"karma-spec-reporter": "^0.0.34",
"karma-typescript": "^5.5.3",
"ts-loader": "^9.3.0",
"tslib": "^2.4.0",
"typescript": "^4.7.3",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.2"
}
}