-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.39 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.39 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "ojs",
"title": "JavaScript OJ",
"description": "OJ is a framework for writing web components and templates in frothy CoffeeScript or pure JavaScript. OJ provides a mechanism to rapidly build web applications using well encapsulated, modular code that doesn't rely on string templating or partially baked web standards.",
"version": "0.5.7",
"homepage": "https://github.com/DoctorEvidence/oj",
"author": {
"name": "Christopher Froehlich",
"email": "cfroehlich@doctorevidence.com"
},
"main": "dist/OJ.js",
"repository": {
"type": "git",
"url": "https://github.com/DoctorEvidence/oj.git"
},
"bugs": {
"url": "https://github.com/DoctorEvidence/oj/issues"
},
"licenses": [
{
"type": "Public Domain, CC0",
"url": "http://creativecommons.org/about/pdm"
}
],
"dependencies": {},
"devDependencies": {
"browserify": "^13.0.0",
"browserify-shim": "^3.8.12",
"coffee-script": "^1.10.0",
"coffeeify": "^2.0.1",
"glob": "^6.0.4",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.0",
"gulp-buffer": "0.0.2",
"gulp-bump": "^1.0.0",
"gulp-cache": "^0.4.2",
"gulp-coffee": "^2.3.1",
"gulp-coffeelint": "^0.6.0",
"gulp-concat": "^2.6.0",
"gulp-cson": "^0.3.1",
"gulp-debug": "^2.1.2",
"gulp-gh-pages": "^0.5.4",
"gulp-git": "^1.7.0",
"gulp-header": "^1.7.1",
"gulp-inject": "^3.0.0",
"gulp-livereload": "^3.8.1",
"gulp-load-plugins": "^1.2.0",
"gulp-notify": "^2.2.0",
"gulp-plumber": "^1.1.0",
"gulp-qunit": "^1.3.1",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-sourcemaps": "^1.6.0",
"gulp-stripbom": "^1.0.4",
"gulp-template": "^3.1.0",
"gulp-uglify": "^1.5.2",
"gulp-util": "^3.0.7",
"gulp-watch": "^4.3.5",
"minifyify": "^7.2.1",
"pretty-hrtime": "^1.0.1",
"qunit": "^0.9.0",
"tiny-lr": "^0.2.1",
"uglifyify": "^3.0.1",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.7.0",
"wiredep": "^3.0.0"
},
"keywords": [],
"engines": {
"node": ">=0.10.x",
"npm": ">=2.4.x"
},
"scripts": {},
"browserify": {
"transform": [
"coffeeify",
"browserify-shim"
]
},
"coffeelintConfig": {
"max_line_length": {
"level": "warn",
"value": 120
},
"no_trailing_whitespace": {
"level": "ignore"
}
},
"browserify-shim": {
"jquery": "global:$",
"modernizr": "global:Modernizr",
"thindom": "global:ThinDOM",
"lodash": "global:_",
"noty": "global:noty",
"pubsub-js": "global:PubSub",
"jquery-cookie": {
"depends": [
"jquery:$"
]
},
"jquery-validate": {
"depends": [
"jquery:jQuery"
]
},
"bluebird": "global:Promise",
"qunit": "global:QUnit"
},
"browser": {
"jquery": "./bower_components/jquery/dist/jquery.min.js",
"lodash": "./bower_components/lodash/dist/lodash.min.js",
"thindom": "./bower_components/thindom/dist/thinDOM.min.js",
"pubsub-js": "./bower_components/pubsub-js/src/pubsub.js",
"jquery-cookie": "./bower_components/jquery-cookie/jquery.cookie.js",
"jquery-validate": "./bower_components/jquery-validate/dist/jquery.validate.min.js",
"bluebird": "./bower_components/bluebird/js/browser/bluebird.js",
"qunit": "./bower_components/qunit/qunit/qunit.js",
"noty": "./bower_components/noty/js/noty/packaged/jquery.noty.packaged.min.js"
}
}