forked from twisty/formsy-react-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.4 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
{
"name": "formsy-react-components",
"version": "0.6.1",
"description": "A set of React JS components for use in a formsy-react form. Markup adheres to Bootstrap structure.",
"scripts": {
"test": "jest --coverage --noHighlight --verbose",
"lint": "eslint src",
"release": "NODE_ENV=production gulp release"
},
"main": "./release/main.js",
"repository": {
"type": "git",
"url": "https://github.com/twisty/formsy-react-components.git"
},
"keywords": [
"react",
"formsy-react",
"bootstrap",
"react-component"
],
"author": "Tim Brayshaw <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/twisty/formsy-react-components/issues"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"modulePathIgnorePatterns": [
"/node_modules/"
],
"testFileExtensions": [
"es6",
"js"
],
"moduleFileExtensions": [
"js",
"json",
"es6"
]
},
"dependencies": {
"classnames": "^2.1.3",
"react": "^0.14.0",
"formsy-react": "git://github.com/bearoplane/formsy-react.git"
},
"devDependencies": {
"babel-eslint": "^4.1.0",
"babel-jest": "^5.3.0",
"eslint": "^1.6.0",
"eslint-plugin-react": "^3.5.1",
"gulp": "^3.9.0",
"gulp-babel": "^5.1.0",
"jest-cli": "0.5.x",
"react-addons-test-utils": "^0.14.0",
"react-dom": "^0.14.0"
}
}