forked from text-mask/text-mask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
140 lines (140 loc) · 6.54 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"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": [
"es2015",
"stage-0"
]
},
"scripts": {
"textMask:publish": "sh publish.sh",
"website": "node website/server.js",
"website:build": "./node_modules/.bin/webpack -p --config website/webpack.buildWebsite.js",
"test": "npm run loud-lint && npm run core:test && npm run react:test && npm run vanilla:test && npm run angular2:test && npm run addons:test",
"build": "npm run core:build && npm run react:build && npm run vanilla:build && npm run angular2:build && npm run website:build && npm run addons:build",
"verify": "npm run core:verify && npm run react:verify && npm run vanilla:verify && npm run angular2:verify && npm run addons:verify",
"core:build": "./node_modules/.bin/webpack -p --config core/webpack.buildCore.js",
"core:test": "./node_modules/.bin/mocha --compilers js: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 --compilers js: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",
"react:test": "./node_modules/.bin/mocha --compilers jsx:babel-core/register react/test --require ./common/domSetup.js --recursive",
"react:tdd": "npm run react:test -- --watch",
"react:verify": "npm run react:test -- --verify",
"react:watch": "./node_modules/.bin/webpack --watch --config react/webpack.buildReactIntegration.js",
"react:dev": "node react/example/server.js",
"react:build": "./node_modules/.bin/webpack -p --config react/webpack.buildReactIntegration.js",
"react:publish": "sh react/publish.sh",
"vanilla:watch": "./node_modules/.bin/webpack --watch --config vanilla/webpack.buildVanillaIntegration.js",
"vanilla:dev": "./node_modules/.bin/webpack-dev-server --content-base vanilla/example --port 3000 --config vanilla/example/webpack.runVanillaExample.js",
"vanilla:test": "./node_modules/.bin/mocha --compilers js:babel-core/register vanilla/test --require ./common/domSetup.js --recursive",
"vanilla:tdd": "npm run vanilla:test -- --watch",
"vanilla:verify": "npm run vanilla:test -- --verify",
"vanilla:build": "./node_modules/.bin/webpack -p --config vanilla/webpack.buildVanillaIntegration.js",
"vanilla:publish": "sh vanilla/publish.sh",
"angular2:build": "./node_modules/.bin/webpack -p --config angular2/webpack.buildAngular2Integration.js && mv angular2/dist/angular2/src/angular2TextMask.d.ts angular2/dist/ && rm -rf angular2/dist/angular2",
"angular2:test": "./node_modules/.bin/mocha --compilers js:babel-core/register angular2/test --require ./common/domSetup.js --recursive",
"angular2:tdd": "npm run angular2:test -- --watch",
"angular2:verify": "npm run angular2:test -- --verify",
"angular2:publish": "sh angular2/publish.sh",
"angular2:dev": "./node_modules/.bin/webpack-dev-server --content-base angular2/example --port 3000 --config angular2/example/webpack.runAngular2Example.js",
"angular2:watch": "./node_modules/.bin/webpack --watch --config angular2/webpack.buildAngular2Integration.js",
"ember:publish": "sh ember/publish.sh",
"git:done": "git checkout gh-pages && git rebase master && git checkout master && git push origin master --tags && git push origin gh-pages",
"ci": "npm run test && npm run build && npm run verify",
"loud-lint": "./node_modules/.bin/eslint . --ext .js --ext .jsx && node_modules/.bin/tslint -c ./angular2/tslint.json ./angular2/src/*.ts ./angular2/test/**/*.ts ./angular2/example/**/*.ts",
"lint": "./node_modules/.bin/eslint . --ext .js --ext .jsx --fix && node_modules/.bin/tslint -c ./angular2/tslint.json ./angular2/src/*.ts ./angular2/test/**/*.ts ./angular2/example/**/*.ts || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/text-mask/text-mask.git"
},
"author": "M.K. Safi <[email protected]>",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/text-mask/text-mask/issues"
},
"homepage": "https://github.com/text-mask/text-mask#readme",
"greenkeeper": {
"ignore": [
"awesome-typescript-loader",
"ts-node"
]
},
"devDependencies": {
"@angular/common": "2.0.0-rc.5",
"@angular/compiler": "2.0.0-rc.5",
"@angular/core": "2.0.0-rc.5",
"@angular/forms": "0.3.0",
"@angular/platform-browser": "2.0.0-rc.5",
"@angular/platform-browser-dynamic": "2.0.0-rc.5",
"bootstrap": "^3.3.6",
"core-js": "^2.4.0",
"reflect-metadata": "^0.1.3",
"systemjs": "0.19.27",
"awesome-typescript-loader": "^1.0.0",
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-loader": "^6.2.1",
"babel-plugin-rewire": "^1.0.0-rc-3",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.5.0",
"bootstrap-sass": "^3.3.6",
"chai": "^3.4.1",
"classnames": "^2.2.3",
"css-loader": "^0.23.1",
"enzyme": "^2.3.0",
"es6-promise": "^3.0.2",
"es6-shim": "^0.35.0",
"eslint": "^3.3.1",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-mocha": "^4.0.0",
"eslint-plugin-promise": "^2.0.0",
"eslint-plugin-react": "^6.1.1",
"eslint-plugin-standard": "^2.0.0",
"file-loader": "^0.9.0",
"jsdom": "^9.2.1",
"lodash": "^4.0.0",
"mocha": "^3.0.0",
"mocha-dynamic-tests": "^2.0.0",
"node-sass": "^3.4.2",
"react": "^15.3.0",
"react-addons-test-utils": "^15.3.0",
"react-dom": "^15.1.0",
"react-hot-loader": "^1.3.0",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-actions": "^0.11.0",
"rxjs": "^5.0.0-beta.8",
"sass-loader": "^4.0.0",
"sinon": "^1.17.3",
"stats-webpack-plugin": "^0.4.0",
"style-loader": "^0.13.0",
"testdom": "^2.0.0",
"ts-node": "~1.2.0",
"tslint": "^3.13.0",
"typescript": "^1.8.10",
"typings": "^1.0.4",
"url-loader": "^0.5.7",
"webpack": "^1.12.12",
"webpack-dev-server": "^1.14.1",
"zone.js": "^0.6.13"
},
"keywords": [
"text mask",
"input mask",
"string mask",
"input formatting",
"text formatting",
"string formatting"
]
}