-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.51 KB
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
{
"name": "react-editmask",
"version": "4.0.3",
"description": "A masked input component for react",
"author": "Andy Krumel",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/akrumel/react-editmask"
},
"main": "lib/index.js",
"dependencies": {
"akutils": "^1.0.0",
"lodash.clone": "^4.5.0",
"lodash.defaults": "^4.2.0",
"lodash.isplainobject": "^4.0.4",
"lodash.isundefined": "^3.0.1",
"lodash.omit": "^4.5.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.7.2",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.7.7",
"babel-plugin-transform-es2015-spread": "^6.6.5",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.24.1",
"cross-env": "^1.0.7",
"gh-pages": "^0.12.0",
"jest-cli": "^17.0.3",
"rimraf": "^2.5.2"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0",
"react-dom": "^0.14.0 || ^15.0.0-0"
},
"scripts": {
"build": "npm run build:commonjs",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"clean": "rimraf lib dist es coverage",
"deploy": "gh-pages -d example/editmask-demo/build",
"test": "jest"
},
"jest": {
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules"
]
}
}