forked from sanniassin/react-input-mask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 3.06 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
{
"name": "react-input-mask",
"description": "Masked input component for React",
"version": "1.0.7",
"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.13.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.3.0",
"chai": "^4.1.0",
"console-polyfill": "^0.3.0",
"cross-env": "^5.0.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"html-webpack-plugin": "^2.29.0",
"karma": "^1.6.0",
"karma-browserify": "^5.0.5",
"karma-browserstack-launcher": "^1.3.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.0",
"mocha": "^3.4.2",
"phantomjs-prebuilt": "^2.1.7",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"rollup": "^0.45.2",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^2.0.1",
"watchify": "^3.9.0",
"webpack": "^3.2.0",
"webpack-dev-server": "^2.5.1"
},
"main": "dist/react-input-mask.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"files": [
"es",
"lib",
"dist"
],
"scripts": {
"clean": "rimraf lib dist es",
"build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:umd": "cross-env BABEL_ENV=es NODE_ENV=development rollup -c -i src/index.js -o dist/react-input-mask.js",
"build:umd:min": "cross-env BABEL_ENV=es NODE_ENV=production rollup -c -i src/index.js -o dist/react-input-mask.min.js",
"dev": "cross-env NODE_ENV=development webpack-dev-server",
"dev-ie8": "cross-env NODE_ENV=development webpack-dev-server --inline=false",
"prepare": "npm test && npm run clean && npm run build",
"test": "npm run build && npm run test:input && npm run test:server-render && npm run test:build",
"test:input": "cross-env BABEL_ENV=tests karma start",
"test:server-render": "cross-env BABEL_ENV=tests mocha --compilers js:babel-core/register ./tests/server-render",
"test:build": "cross-env BABEL_ENV=tests mocha --compilers js:babel-core/register ./tests/build"
},
"repository": {
"type": "git",
"url": "https://github.com/sanniassin/react-input-mask.git"
}
}