-
-
Notifications
You must be signed in to change notification settings - Fork 259
/
package.json
71 lines (71 loc) · 2.52 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
{
"private": true,
"name": "imask",
"author": "Alexey Kryazhev",
"license": "MIT",
"description": "vanilla javascript input mask",
"bugs": "https://github.com/uNmAnNeR/imaskjs/issues",
"homepage": "https://imask.js.org/",
"repository": "https://github.com/uNmAnNeR/imaskjs",
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.5",
"@babel/preset-typescript": "^7.24.1",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"c8": "^9.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-plugin-tsdoc": "^0.2.17",
"lerna": "^8.1.3",
"opencollective-postinstall": "^2.0.3",
"rimraf": "^5.0.7",
"rollup": "^4.17.2",
"rollup-plugin-multi-input": "^1.4.1",
"tsx": "3.12",
"typedoc": "^0.25.13",
"typescript": "^4.9.5"
},
"engines": {
"npm": ">=4.0.0",
"node": ">=20.0.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"postinstall": "opencollective-postinstall",
"docs": "typedoc",
"lerna": "lerna",
"clean": "lerna clean",
"build": "npm run build:core && npm run build:plugins",
"lint": "lerna run lint --stream",
"build:core": "lerna run build --scope=imask",
"build:react": "lerna run build --scope=react-imask",
"build:angular": "lerna run build --scope=angular-imask",
"build:solid": "lerna run build --scope=solid-imask",
"build:vue": "lerna run build --scope=vue-imask",
"build:svelte": "lerna run build --scope=@imask/svelte",
"build:plugins": "lerna run build --ignore=imask",
"test": "lerna run test --parallel",
"make": "npm run test && npm run build",
"release": "npm run docs && npm run make && lerna publish",
"release:next": "npm run release -- --dist-tag next",
"coverage": "lerna run coverage --scope imask",
"watch:core": "lerna run watch --scope imask --stream",
"watch:vue": "lerna run watch --scope vue-imask --stream",
"watch:react": "lerna run watch --scope react-imask --stream",
"watch:docs": "npm run docs && bundle exec jekyll serve --livereload --source docs --destination _site"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/imask"
}
}