-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.12 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": "@pynklynn/backdraft",
"version": "0.1.0",
"description": "Slots in the light DOM for web components.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"dev": "vite",
"clean": "rm -rf dist",
"prebuild": "npm test && npm run clean",
"prepublish": "npm run build",
"test": "jest --config jest.config.mjs --coverage",
"test-debug": "node --inspect-brk $(npm bin)/jest --runInBand --config jest.config.mjs",
"testcafe": "testcafe"
},
"author": "Will Steinmetz <willsteinmetz@users.noreply.github.com>",
"repository": "git@github.com:pynklynn/ks-backdraft.git",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "^8.43.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lit": "^2.7.6",
"testcafe": "^3.0.1",
"ts-jest": "^29.1.0",
"typescript": "^5.1.5",
"vite": "^4.4.2"
}
}