forked from sanniassin/react-input-mask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.33 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
{
"name": "react-input-mask",
"description": "Masked input component for React",
"version": "0.7.2",
"homepage": "https://github.com/sanniassin/react-input-mask",
"license": "MIT",
"author": "Nikita Lobachev <[email protected]>",
"keywords": [
"react",
"input",
"mask",
"masked",
"react-component"
],
"peerDependencies": {
"react": ">=0.12.0"
},
"devDependencies": {
"assert": "^1.3.0",
"babel": "^5.8.34",
"babel-core": "^5.8.38",
"babelify": "^6.4.0",
"browserify": "^13.0.1",
"console-polyfill": "^0.2.2",
"jasmine-core": "^2.3.4",
"karma": "^0.13.15",
"karma-browserify": "^5.0.5",
"karma-browserstack-launcher": "^1.0.1",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"mocha": "^2.4.5",
"phantomjs-prebuilt": "^2.1.7",
"react": "^0.14.3",
"react-addons-test-utils": "^0.14.3",
"react-dom": "^0.14.3",
"watchify": "^3.7.0"
},
"main": "build/InputElement.js",
"scripts": {
"build": "babel InputElement.js -d build",
"prepublish": "npm test && npm run build",
"test": "npm run test:karma && npm run test:mocha",
"test:karma": "karma start",
"test:mocha": "mocha ./tests_prerender"
},
"repository": {
"type": "git",
"url": "https://github.com/sanniassin/react-input-mask.git"
}
}