-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
74 lines (74 loc) · 1.45 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
{
"name": "django-scribbler",
"version": "1.0.0",
"description": " An application for managing snippets of text for a Django website.",
"keywords": [],
"main": "scribbler/static/scribbler/js/scribbler.js",
"directories": {
"doc": "docs",
"example": "example"
},
"scripts": {
"test": "python runtests.py"
},
"repository": {
"type": "git",
"url": "https://github.com/caktus/django-scribbler.git"
},
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/caktus/django-scribbler/issues"
},
"dependencies": {
"backbone": ">=1.2 <1.3",
"codemirror": "^5.40.0",
"jquery": ">=2.2 <2.3",
"jshint": "^2.9.6",
"less": "^2.7.3",
"phantomjs-prebuilt": "^2.1.16",
"underscore": ">=1.8 <1.9"
},
"devDependencies": {
"browserify": "^11.2.0",
"browserify-compile-templates": "^0.2.0",
"less": "^2.5.3",
"uglify-js": "^2.5.0"
},
"author": "Mark Lavin",
"contributors": [
{
"name": "Julia Elman"
},
{
"name": "Omar Estrella"
},
{
"name": "Karen Tracey"
},
{
"name": "Caleb Smith"
},
{
"name": "Nicolas Ippolito"
},
{
"name": "David Ray"
},
{
"name": "Yaroslav Klyuyev"
},
{
"name": "Ben Phillips"
},
{
"name": "Rebecca Conley"
},
{
"name": "Victor Rocha"
},
{
"name": "Dan Poirier",
"email": "[email protected]"
}
]
}