-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
59 lines (59 loc) · 1.21 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
{
"name": "esencia",
"version": "0.0.1",
"description": "JavaScript framework based on Backbone.js",
"url": "https://github.com/2do2go/esencia",
"homepage": "https://github.com/2do2go/esencia",
"keywords": [
"esencia",
"framework",
"backbone",
"mvc",
"model",
"view",
"controller",
"router",
"server",
"client",
"browser"
],
"author": "Artem Zhukov <[email protected]>",
"contributors": "2do2go dev team",
"repository": {
"type": "git",
"url": "https://github.com/2do2go/esencia.git"
},
"bugs": {
"url": "https://github.com/2do2go/esencia/issues"
},
"scripts": {
"test": "mocha-phantomjs ./test/index.html",
"lint": "jshint ."
},
"main": "./esencia.js",
"browser": "./esencia.js",
"dependencies": {
"backbone": "1.0.0",
"underscore": ">=1.8.3"
},
"devDependencies": {
"bootstrap": "3.3.7",
"bootswatch": "3.3.6",
"chai": "3.5.0",
"jquery": "3.1.0",
"jshint": "2.9.2",
"mocha": "2.5.3",
"mocha-phantomjs": "3.5.1",
"requirejs": "2.2.0"
},
"files": [
"lib/",
"LICENSE"
],
"directories": {
"lib": "lib",
"doc": "docs",
"example": "examples"
},
"license": "MIT"
}