forked from text-mask/text-mask
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 3.27 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "text-mask-all",
"version": "0.3.0",
"description": "Conforms string to given mask or pattern, and can be hooked up to input element",
"main": "index.js",
"babel": {
"presets": [
"env",
"stage-0"
],
"plugins": [
"transform-object-assign"
]
},
"scripts": {
"textMask:publish": "sh publish.sh",
"test": "npm run loud-lint && npm run core:test && npm run addons:test",
"build": "npm run core:build && npm run addons:build",
"verify": "npm run core:verify && npm run addons:verify",
"core:build": "./node_modules/.bin/webpack -p --config core/webpack.buildCore.js",
"core:test": "./node_modules/.bin/mocha --require babel-core/register core/test --require ./common/domSetup.js --recursive",
"core:tdd": "npm run core:test -- --watch",
"core:verify": "npm run core:test -- --verify",
"core:publish": "sh core/publish.sh",
"addons:build": "./node_modules/.bin/webpack -p --config addons/webpack.buildAddons.js",
"addons:test": "./node_modules/.bin/mocha --require babel-core/register addons/test --require ./common/domSetup.js --recursive",
"addons:tdd": "npm run addons:test -- --watch",
"addons:verify": "npm run addons:test -- --verify",
"addons:publish": "sh addons/publish.sh",
"angular2:ci": "cd angular2 && npm i && npm run ci",
"angular2:build": "cd angular2 && npm run build",
"angular2:publish": "sh angular2/publish.sh",
"angular2:test": "cd angular2 && npm run test",
"git:done": "git checkout gh-pages && git rebase master && git checkout master && git push origin master --tags && git push origin gh-pages",
"ci": "npm i && npm run test && npm run build && npm run verify",
"loud-lint": "./node_modules/.bin/eslint . --ext .js --ext .jsx",
"lint": "./node_modules/.bin/eslint . --ext .js --ext .jsx --fix || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NationalBankBelgium/text-mask.git"
},
"author": "M.K. Safi <[email protected]>",
"contributors": [
{
"email": "[email protected]",
"name": "Alexis Georges",
"url": "https://www.nbb.be"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/NationalBankBelgium/text-mask/issues"
},
"homepage": "https://github.com/NationalBankBelgium/text-mask#readme",
"greenkeeper": {
"ignore": [
"awesome-typescript-loader",
"ts-node"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.3",
"babel-loader": "^6.4.1",
"babel-plugin-rewire": "^1.2.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.2.0",
"eslint": "^7.7.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-mocha": "^7.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jsdom": "^14.1.0",
"lodash": "^4.17.19",
"mocha": "^7.2.0",
"mocha-dynamic-tests": "^2.0.0",
"sinon": "^1.17.3",
"stats-webpack-plugin": "^0.7.0",
"webpack": "^3.12.0"
},
"keywords": [
"text mask",
"input mask",
"string mask",
"input formatting",
"text formatting",
"string formatting"
]
}