-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 944 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 944 Bytes
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
{
"name": "glorious-pitsby-demo-web-components",
"version": "0.1.0",
"description": "A simple demo of web components documented with Pitsby",
"main": "index.js",
"type": "module",
"scripts": {
"docs": "pitsby build",
"format": "eslint ./src/**/*.js",
"start": "npm run docs -- --watch",
"test": "jest",
"deploy": "firebase deploy --non-interactive"
},
"keywords": [
"web",
"components",
"pitsby"
],
"author": "Rafael Camargo <hello@rafaelcamargo.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@glorious/pitsby": "^1.33.0",
"@testing-library/user-event": "^14.4.3",
"babel-jest": "^29.4.0",
"eslint": "^8.32.0",
"firebase-tools": "^11.21.0",
"jest": "^29.4.0",
"jest-environment-jsdom": "^29.4.0",
"shadow-dom-testing-library": "^1.10.0"
},
"dependencies": {
"uuid": "^9.0.0"
}
}