-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.22 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
{
"name": "ReactStaggerMenu",
"version": "0.0.1",
"description": "JestJS + Browserify + React + gulp",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/jest",
"start": "./node_modules/.bin/gulp server",
"build": "./node_modules/.bin/gulp build"
},
"repository": {
"type": "git",
"url": "git://github.com/andrew-codes/jbrg.git"
},
"author": "Olajide Ogundipe Jr",
"license": "MIT",
"devDependencies": {
"browserify-shim": "~3.7.0",
"gulp": "~3.8.7",
"gulp-autoprefixer": "0.0.10",
"gulp-browserify": "~0.5.0",
"gulp-clean": "~0.3.1",
"gulp-jshint": "~1.8.4",
"gulp-minify-css": "~0.3.8",
"gulp-react": "~1.0.0",
"gulp-rename": "~1.2.0",
"gulp-shell": "~0.2.9",
"gulp-stylus": "~1.3.0",
"gulp-uglify": "~1.0.1",
"gulp-webserver": "^0.8.2",
"jest-cli": "~0.1.18",
"react": "~0.11.1",
"react-tools": "~0.11.1",
"velocity-animate": "^1.1.0"
},
"jest": {
"unmockedModulePathPatterns": [
"./node_modules"
],
"scriptPreprocessor": "./preprocessor.js"
},
"browserify-shim": {
"underscore": "global:_",
"react": "React"
},
"browserify": {
"transform": [
"browserify-shim"
]
}
}