This repository has been archived by the owner on Jul 8, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
85 lines (85 loc) · 2.27 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",
"version": "4.1.4",
"description": "A single parent component for building forms in React",
"main": "dist/form.js",
"scripts": {
"precommit": "echo 'Running pre-commit hooks...' && npm test",
"prepare": "npm run build",
"prebuild": "npm test",
"build": "node_modules/.bin/babel src -d dist --ignore spec.js,test.js",
"pretest": "npm run lint",
"test": "./bin/test.sh",
"test-watch": "`npm bin`/jest --watch",
"lint": "node_modules/.bin/eslint src/**/*.js test/**/*.js",
"start": "NODE_ENV=development node ./example/server.js"
},
"pre-commit": [
"precommit"
],
"jest": {
"setupFiles": [
"./test/setup.js",
"./test/types.js"
],
"snapshotSerializers": [
"<rootDir>/node_modules/enzyme-to-json/serializer"
]
},
"repository": {
"type": "git",
"url": "https+git://github.com/pburtchaell/react-input.git"
},
"keywords": [
"react",
"react-component",
"component",
"components",
"ui",
"input",
"forms",
"form",
"label",
"field"
],
"author": "Patrick Burtchaell <[email protected]> (pburtchaell.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pburtchaell/react-input/issues"
},
"homepage": "https://github.com/pburtchaell/react-input",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.0.0",
"babel-eslint": "^7.2.2",
"babel-jest": "^19.0.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"coveralls": "^2.13.0",
"enzyme": "^2.8.2",
"enzyme-to-json": "^1.5.1",
"eslint": "^3.10.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.10.3",
"express": "^4.15.2",
"html-webpack-plugin": "^2.10.0",
"jest": "^19.0.2",
"pre-commit": "^1.2.2",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"webpack": "^1.12.3",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.18.0"
},
"dependencies": {
"prop-types": "^15.5.8"
}
}