-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·89 lines (89 loc) · 2.82 KB
/
package.json
File metadata and controls
executable file
·89 lines (89 loc) · 2.82 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
{
"name": "gitxpress",
"version": "0.0.1",
"description": "Browser plugin for creating file explorer tree and bookmarking GitHub Repository",
"scripts": {
"chrome-build": "cross-env TARGET=chrome gulp",
"opera-build": "cross-env TARGET=opera gulp",
"firefox-build": "cross-env TARGET=firefox gulp",
"build": "cross-env NODE_ENV=production npm run chrome-build && cross-env NODE_ENV=production npm run opera-build && cross-env NODE_ENV=production npm run firefox-build",
"chrome-watch": "cross-env TARGET=chrome gulp watch",
"opera-watch": "cross-env TARGET=opera gulp watch",
"firefox-watch": "cross-env TARGET=firefox gulp watch",
"chrome-dist": "cross-env NODE_ENV=production cross-env TARGET=chrome gulp dist",
"opera-dist": "cross-env NODE_ENV=production cross-env TARGET=opera gulp dist",
"firefox-dist": "cross-env NODE_ENV=production cross-env TARGET=firefox gulp dist",
"dist": "npm run chrome-dist && npm run opera-dist && npm run firefox-dist"
},
"repository": {
"type": "git",
"url": "git://github.com/yashprit/gitxpress.git"
},
"author": "Yashprit Singh",
"license": "MIT",
"bugs": {
"url": "https://github.com/yashprit/gitxpress/issues"
},
"homepage": "https://github.com/yashprit/gitxpress",
"browser": {
"jquery": "./node_modules/jquery/dist/jquery.js"
},
"browserify-shim": {
"jquery": "$"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"devDependencies": {
"@types/jquery": "^3.2.6",
"babel-core": "^6.1.2",
"babel-preset-es2015": "^6.1.2",
"babelify": "^7.3.0",
"bigslide": "^0.12.1",
"browserify": "^14.1.0",
"browserify-shim": "^3.8.14",
"event-stream": "^3.3.4",
"firebase": "^4.2.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.0",
"gulp-clean": "^0.3.1",
"gulp-concat": "^2.6.1",
"gulp-crx-pack": "^1.0.1",
"gulp-html-to-js": "0.0.5",
"gulp-if": "^2.0.2",
"gulp-json-editor": "^2.2.1",
"gulp-livereload": "^3.8.1",
"gulp-load-plugins": "^1.5.0",
"gulp-merge-json": "^1.0.0",
"gulp-plumber": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.6.1",
"gulp-run": "^1.7.1",
"gulp-sass": "^3.1.0",
"gulp-sass-inline-svg": "^1.0.1",
"gulp-sourcemaps": "^2.6.0",
"gulp-svgmin": "^1.2.4",
"gulp-tslint": "^8.1.1",
"gulp-typescript": "^3.1.7",
"gulp-uglify": "^3.0.0",
"gulp-zip": "^4.0.0",
"jquery": "^3.2.1",
"jquery-pjax": "^2.0.1",
"jsonfile": "^3.0.1",
"octicons": "^5.0.1",
"preprocessify": "^1.0.1",
"run-sequence": "^2.0.0",
"tsify": "^3.0.3",
"tslint": "^5.5.0",
"typescript": "^2.4.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"dependencies": {
"detect-browser": "^1.10.0",
"jquery-popover": "0.0.4",
"selectize": "^0.12.4"
}
}