-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1 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
{
"name": "@apility/netflex-cdn-url",
"version": "2.1.2",
"description": "A utility library for creating cdn urls for the Netflex platform",
"scripts": {
"build": "tsc && vite build",
"test": "vitest",
"coverage": "vitest run --coverage",
"typecheck": "vitest typecheck"
},
"files": [
"dist"
],
"main": "./dist/netflex-cdn-url.umd.js",
"module": "./dist/netflex-cdn-url.mjs",
"exports": {
".": {
"import": "./dist/netflex-cdn-url.mjs",
"require": "./dist/netflex-cdn-url.umd.js"
}
},
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/apility/netflex-cdn-url.git"
},
"keywords": [
"netflex"
],
"author": "Cathrine Vaage",
"homepage": "https://github.com/apility/netflex-cdn-url/tree/main#readme",
"devDependencies": {
"@types/node": "^17.0.39",
"@vitest/coverage-c8": "^0.28.4",
"typescript": "^4.9.5",
"vite": "^4.1.1",
"vite-plugin-dts": "^1.7.2",
"vitest": "0.28.4"
}
}