-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.33 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
41
42
{
"name": "@cloudfour/elastic-textarea",
"version": "1.0.7",
"description": "A web component for progressively-enhanced auto-expanding textareas",
"main": "index.js",
"files": [
"index.js",
"index.min.js",
"manifests"
],
"scripts": {
"start": "browser-sync start --server --files *",
"test": "npx jest --testTimeout=10000",
"test:watch": "npx jest --testTimeout=10000 --watch",
"build": "run-s build:*",
"build:minify": "minify index.js > index.min.js",
"document": "run-p document:*",
"document:json": "wca analyze index.js --outFile manifests/manifest.json",
"document:vscode": "wca analyze index.js --format vscode --outFile manifests/manifest-vscode.json",
"document:md": "wca analyze index.js --outFile manifests/manifest.md",
"prepare": "run-p build document"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloudfour/elastic-textarea.git"
},
"author": "Cloud Four",
"license": "MIT",
"bugs": {
"url": "https://github.com/cloudfour/elastic-textarea/issues"
},
"homepage": "https://github.com/cloudfour/elastic-textarea#readme",
"devDependencies": {
"browser-sync": "3.0.3",
"jest": "29.7.0",
"minify": "11.4.1",
"npm-run-all2": "6.2.6",
"pleasantest": "4.0.0",
"web-component-analyzer": "2.0.0"
},
"dependencies": {}
}