forked from willowtreeapps/react-formable
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.65 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.65 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "react-formable",
"version": "0.7.1",
"description": "A simple form library for react",
"main": "lib/formable.js",
"author": "Willowtree",
"contributors": [
{
"name": "Matt O'Connell"
},
{
"name": "Kevin Welcher"
},
{
"name": "Christine Bryant-Ryback"
}
],
"homepage": "https://github.com/willowtreeapps/react-formable",
"repository": {
"type": "git",
"url": "https://github.com/willowtreeapps/react-formable.git"
},
"bugs": {
"url": "https://github.com/willowtreeapps/react-formable/issues"
},
"dependencies": {
"react-waypoint": "^1.2.0",
"warning": "^2.1.0"
},
"devDependencies": {
"babel-core": "^6.3.17",
"babel-eslint": "^4.1.6",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"eslint": "^1.10.3",
"eslint-plugin-react": "^3.11.3",
"gulp": "^3.9.0",
"history": "^1.13.1",
"jest-cli": "^0.8.1",
"marked": "^0.3.5",
"react": "^0.14.0",
"react-addons-test-utils": "^0.14.3",
"react-component-gulp-tasks": "github:kaw2k/react-component-gulp-tasks",
"react-dom": "^0.14.0",
"react-router": "^1.0.2"
},
"peerDependencies": {
"react": "^0.14.0"
},
"browserify-shim": {
"react": "global:React",
"react-dom": "global:ReactDOM",
"history": "global:History",
"marked": "global:marked",
"react-router": "global:ReactRouter",
"hljs": "global:hljs",
"smoothscroll": "global:smoothScroll"
},
"scripts": {
"build": "gulp clean && NODE_ENV=production gulp build",
"bump": "gulp bump",
"bump:major": "gulp bump:major",
"bump:minor": "gulp bump:minor",
"examples": "gulp dev:server",
"lint": "eslint ./; true",
"lintRaw": "eslint ./ --max-warnings 0",
"publish:site": "NODE_ENV=production gulp publish:examples",
"release": "NODE_ENV=production gulp release",
"start": "gulp dev",
"test": "jest",
"test:debug": "node-debug -p 12345 --nodejs --harmony ./node_modules/jest-cli/bin/jest.js --runInBand",
"watch": "gulp watch:lib"
},
"jest": {
"scriptPreprocessor": "<rootDir>preprocessor",
"testFileExtensions": [
"es6",
"js"
],
"moduleFileExtensions": [
"js",
"json",
"es6"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/fbjs",
"<rootDir>/src/helpers"
]
},
"keywords": [
"react",
"react-component",
"react-forms",
"react-form",
"forms",
"form",
"inputs",
"react-inputs"
],
"license": "MIT"
}