forked from pauldotknopf/JavaScriptViewEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.json
More file actions
50 lines (47 loc) · 1.41 KB
/
project.json
File metadata and controls
50 lines (47 loc) · 1.41 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
{
"version": "1.3.4-*",
"title": "JavaScriptViewEngine",
"description": "An ASP.NET ViewEngine that uses javscript to render markup (for universal rendering).",
"packOptions": {
"summary": "An ASP.NET ViewEngine that uses javscript to render markup (for universal rendering)",
"tags": [ "JavaScript", "aspnet", "mvc", "viewengine" ],
"projectUrl": "https://github.com/pauldotknopf/JavaScriptViewEngine",
"licenseUrl": "https://github.com/pauldotknopf/JavaScriptViewEngine/blob/master/LICENSE"
},
"authors": [ "Paul" ],
"copyright": "2016",
"buildOptions": {
"embed": [
"NodeServices/Content/**/*"
],
"define": [ "DI", "DOTNETCORE", "MVCCORE1" ]
},
"dependencies": {
"Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
"Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
"Microsoft.Extensions.Options": "1.0.0",
"Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
"Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.0",
"Microsoft.AspNetCore.NodeServices": "1.0.0-beta-000007"
},
"frameworks": {
"netstandard1.6": {
"imports": [
"dotnet5.6",
"dnxcore50",
"portable-net45+win8"
],
"buildOptions": {
"define": [ "NETSTANDARD15" ]
},
"dependencies": {
"System.Threading.Timer": "4.0.1"
}
},
"net451": {
"buildOptions": {
"define": [ "NET45" ]
}
}
}
}