forked from nicolaslopezj/simple-react-form
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.76 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.76 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "simple-react-form",
"version": "2.6.1",
"license": "MIT",
"author": "Nicolás López <nicolaslopezj@me.com>",
"description": "A library to make reusable form components in React and React Native",
"main": "./lib",
"repository": {
"type": "git",
"url": "https://github.com/nicolaslopezj/simple-react-form"
},
"scripts": {
"build": "babel ./src --out-dir ./lib",
"prepublish": "yarn run build",
"test": "yarn run build && yarn run lint && jest",
"watch": "node watch.js",
"test-watch": "jest --watch",
"lint": "eslint \"src/**/*.js\""
},
"keywords": [
"react-component",
"react-native",
"ios",
"android",
"form",
"react"
],
"dependencies": {
"lodash": "^4.17.11"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"colors": "^1.3.2",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^5.8.0",
"eslint-config-orionsoft": "^1.2.8",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-react": "^7.11.1",
"jest-cli": "^23.6.0",
"react": "^16.6.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.6.0",
"react-test-renderer": "^16.6.0"
},
"peerDependencies": {
"react": ">=16.0.0"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/lib"
]
},
"standard": {
"globals": [
"it",
"xit",
"expect",
"test",
"jest",
"MongoObject"
]
}
}