-
Notifications
You must be signed in to change notification settings - Fork 45
/
typemoq.nuspec
23 lines (23 loc) · 1.07 KB
/
typemoq.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>typemoq</id>
<version>2.1.0</version>
<title>TypeMoq</title>
<authors>Florin Nitoi</authors>
<licenseUrl>https://github.com/florinn/typemoq/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/florinn/typemoq</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A simple mocking library for TypeScript</description>
<tags>mock stub fake spy library sandbox typescript javascript</tags>
<dependencies>
<dependency id="lodash" version="4.17.4" />
</dependencies>
</metadata>
<files>
<file src="dist\typemoq.d.ts" target="Content\Scripts\typemoq.d.ts" />
<file src="dist\typemoq.js" target="Content\Scripts\typemoq.js" />
<file src="dist\typemoq.js.map" target="Content\Scripts\typemoq.js.map" />
<file src="dist\typemoq-min.js" target="Content\Scripts\typemoq-min.js" />
</files>
</package>