-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
88 lines (88 loc) · 2.04 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
86
87
88
{
"name": "react-questionnaire",
"version": "1.1.0",
"description": "Simple react components for building a questionnaire or survey.",
"license": "MIT",
"author": {
"name": "Rodrigo Reyes",
"email": "[email protected]",
"url": "https://github.com/kouryuu"
},
"repository": {
"type": "git",
"url": "https://github.com/kouryuu/react-questionnaire.git"
},
"bugs": "https://github.com/kouryuu/react-questionnaire/issues",
"keywords": [
"survey",
"react",
"questionnaire"
],
"dependencies": {},
"devDependencies": {
"browserify": "latest",
"del": "~0.1.3",
"gulp": ">=3.8.8",
"exorcist": "latest",
"vinyl-transform": "latest",
"vinyl-buffer": "latest",
"gulp-autoprefixer": "~1.0.1",
"gulp-bower": "0.0.6",
"gulp-cache": "~0.2.4",
"gulp-less": "latest",
"bootstrap-less": "latest",
"gulp-imagemin": "latest",
"gulp-jest": "~0.2.2",
"gulp-jshint": "~1.8.5",
"gulp-load-plugins": "~0.7.0",
"gulp-ruby-sass": "~1.0.5",
"browser-sync": "latest",
"gulp-size": "~1.1.0",
"gulp-useref": "~0.4.4",
"gulp-util": "~3.0.1",
"gulp-webserver": "latest",
"jest-cli": "latest",
"react": "latest",
"react-dom": "latest",
"reactify": "latest",
"watchify": "~2.1",
"browserify-shim": "^3.8.0",
"gulp-uglify": "^1.0.2",
"strip-debug": "^1.0.1",
"gulp-strip-debug": "^1.0.2",
"vinyl-source-stream": "^1.0.0",
"main-bower-files": "~2.6.2",
"babelify": "^6.1.3"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "jest"
},
"jest": {
"scriptPreprocessor": "<rootDir>/preprocessor.js",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
]
},
"browserify": {
"transform": [
"browserify-shim",
[
"babelify",
{
"ignore": [
"bower_components"
]
}
]
]
},
"browser": {
"jquery": "./app/bower_components/jquery/dist/jquery.js"
},
"browserify-shim": {
"jquery": "$"
}
}