forked from 40818419/react-code-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.46 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
{
"name": "react-code-input",
"version": "3.0.0",
"description": "React component for entering and validating numbers, text or password.",
"main": "lib/ReactCodeInput.js",
"scripts": {
"start": "gulp bluekit:build && webpack && webpack-dev-server --content-base example/",
"build": "gulp bluekit:build && webpack && cd styles && sass style.scss style.css",
"test": "NODE_ENV=test nyc --reporter=lcov --reporter=text ./node_modules/.bin/_mocha test/*.js && cat ./coverage/lcov.info | ./node_modules/.bin/codacy-coverage && rm -rf ./coverage"
},
"nyc": {
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/40818419/react-code-input.git"
},
"keywords": [
"react",
"react-component",
"react-code-input",
"code",
"input",
"chiffre",
"field",
"sipher",
"PIN",
"pin-code"
],
"author": "Konstantin Kulinicenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/40818419/react-code-input/issues"
},
"homepage": "https://github.com/40818419/react-code-input#readme",
"dependencies": {
"classnames": "^2.2.5",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-plugin-istanbul": "^3.1.2",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-3": "^6.22.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"chai-enzyme": "^1.0.0-beta.0",
"codacy-coverage": "^2.0.0",
"create-react-class": "^15.6.2",
"css-loader": "^0.25.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "^1.0.1",
"jsdom": "^9.9.1",
"jsdom-global": "2.1.1",
"json-loader": "^0.5.4",
"mocha": "^3.3.0",
"mocha-lcov-reporter": "^1.2.0",
"node-sass": "^3.11.3",
"nyc": "^10.0.0",
"postcss-loader": "^1.1.1",
"react-addons-test-utils": "^15.5.1",
"react-bluekit": "^0.4.4",
"react-hot-loader": "1.3.0",
"react-markdown": "^2.4.2",
"sass-loader": "^4.0.2",
"sinon": "^1.17.7",
"style-loader": "^0.13.1",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
},
"peerDependencies": {
"react": "^15.5.4 || ^16.2.0",
"react-dom": "^15.5.4 || ^16.2.0"
}
}