-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 1.93 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
75
76
77
78
79
80
{
"name": "jefri",
"title": "JEFRi: Entity Framework Runtime",
"version": "1.2.4",
"description": "A full-featured entity framework for javascript.",
"homepage": "http://www.jefri.org",
"bugs": "https://github.com/jefri/jefri-runtime/issues",
"author": {
"name": "David Souther",
"email": "[email protected]",
"url": "http://davidsouther.com"
},
"contributors": [
{
"name": "Jonathan Porta",
"email": "[email protected]"
}
],
"files": [
"lib/",
"src/",
"package.json"
],
"main": "./src/index.js",
"scripts": {
"test": "./node_modules/.bin/grunt"
},
"repository": {
"type": "git",
"url": "https://github.com/jefri/jefri-runtime"
},
"keywords": [
"ef",
"entity",
"entity framework"
],
"licenses": [
{
"type": "MIT"
}
],
"browser": {
"./src/index.js": "./src/browser.js"
},
"devDependencies": {
"chai": "^1.10.0",
"coffee-loader": "^0.7.2",
"grunt": "~0.4.1",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-coffee": "~0.12.0",
"grunt-contrib-concat": "~0.5.0",
"grunt-contrib-connect": "~0.9.0",
"grunt-contrib-copy": "~0.7.0",
"grunt-contrib-jshint": "~0.11.0",
"grunt-contrib-uglify": "~0.2.2",
"grunt-contrib-watch": "~0.6.0",
"grunt-karma": "^0.10.1",
"grunt-mocha-test": "~0.6.3",
"grunt-release": "^0.11.0",
"grunt-webpack": "^1.0.8",
"karma": "^0.12.31",
"karma-chrome-launcher": "^0.1.7",
"karma-coffee-preprocessor": "^0.2.1",
"karma-coverage": "^0.2.7",
"karma-firefox-launcher": "^0.1.4",
"karma-junit-reporter": "^0.2.2",
"karma-mocha": "^0.1.10",
"karma-sinon-chai": "^0.3.0",
"karma-spec-reporter": "0.0.16",
"mocha": "^2.1.0",
"should": "~4.6.0",
"sinon": "^1.12.2",
"sinon-chai": "^2.6.0",
"st": "^0.5.2"
},
"dependencies": {
"coffee-script": "^1.9.1",
"jefri-jiffies": "~0.1.2"
}
}