-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.03 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "joiful-react-forms",
"version": "0.2.3",
"description": "Automatically generate validated React forms using Joi",
"main": "dist/index.js",
"peerDependencies": {
"joi": "^9.0.4"
},
"keywords": [
"react",
"joi",
"react-component",
"form"
],
"babel": {
"plugins": [
"transform-es2015-modules-commonjs",
"transform-decorators-legacy"
],
"presets": [
"react",
"es2015",
"stage-0"
]
},
"scripts": {
"lint": "standard src --verbos | snazzy",
"prebuild": "rm -rf dist && rm -rf build",
"build": "babel -d dist/ src/",
"prepublish": "npm run lint && npm test && npm run build",
"test": "npm run lint && mocha spec --compilers js:babel-register"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.11.5",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"expect": "^1.20.1",
"joi": "^9.0.4",
"mocha": "^3.0.2",
"react": "^15.3.0",
"react-addons-test-utils": "^15.1.0",
"react-dom": "^15.3.0",
"snazzy": "^4.0.1",
"standard": "^7.1.2"
},
"repository": {
"type": "git",
"url": "https://github.com/kjanoudi/joiful-react-forms"
},
"author": "Kareem Janoudi",
"license": "MIT",
"dependencies": {
"lodash.assign": "^4.1.0",
"lodash.defaultsdeep": "^4.5.1",
"lodash.flatten": "^4.3.0",
"lodash.forown": "^4.3.1",
"lodash.get": "^4.4.1",
"lodash.isempty": "^4.3.1",
"lodash.omit": "^4.4.1",
"lodash.pick": "^4.4.0",
"lodash.startcase": "^4.3.0",
"lodash.toarray": "^4.3.0",
"lodash.uniq": "^4.4.0",
"lodash.values": "^4.2.0",
"lodash.zipobject": "^4.1.3"
},
"standard": {
"globals": [
"If",
"Else",
"Choose",
"When",
"Otherwise",
"describe",
"beforeEach",
"it"
],
"parser": "babel-eslint"
}
}