forked from uNmAnNeR/imaskjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.81 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
72
73
74
75
{
"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/core": "^7.14.6",
"@babel/eslint-parser": "^7.16.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/preset-env": "^7.14.7",
"@babel/preset-flow": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@babel/register": "^7.14.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-eslint": "^8.0.1",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-replace": "^4.0.0",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"babel-plugin-istanbul": "^6.1.1",
"chai": "^4.3.4",
"core-js": "^3.25.1",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"documentation": "^12.3.0",
"eslint": "^8.7.0",
"eslint-plugin-flowtype": "^8.0.3",
"flow-bin": "^0.170.0",
"lerna": "^5.5.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"opencollective-postinstall": "^2.0.3",
"rimraf": "^3.0.2",
"rollup": "^2.52.7",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-multi-input": "^1.3.1",
"rollup-plugin-polyfill": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"sinon": "^14.0.0",
"typescript": "^4.8.3"
},
"engines": {
"npm": ">=4.0.0",
"node": ">=8.0.0"
},
"scripts": {
"postinstall": "lerna bootstrap --hoist && opencollective-postinstall",
"doc": "node ./node_modules/documentation/bin/documentation.js build packages/imask/src/imask.js -f html -o docs/api",
"lerna": "lerna",
"flow": "lerna run flow -- check",
"clean": "lerna clean",
"build": "npm run build:core && npm run build:plugins",
"build:core": "rimraf \"packages/imask/{dist,esm}\" && lerna run build --scope=imask",
"build:react": "rimraf \"packages/react-imask/{dist,esm}\" && lerna run build --scope=react-imask",
"build:plugins": "rimraf \"packages/!(imask)/{dist,esm}\" && lerna run build --ignore=imask",
"test": "lerna run test --parallel",
"make": "npm run test && npm run build",
"release": "npm run doc && npm run make && lerna publish",
"coverage": "lerna run coveralls --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": "bundle exec jekyll serve --livereload --source docs --destination docs/_site"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/imask"
}
}