-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.86 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "intl-elements",
"version": "0.0.1-alpha.19",
"description": "Custom elements for using Intl APIs declaratively.",
"author": "[email protected]",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/marchbox/intl-elements"
},
"keywords": [
"intl",
"i18n",
"custom elements",
"web components"
],
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"customElements": "./custom-elements.json",
"files": [
"dist/",
"LICENSE",
"CHANGELOG.md",
"custom-elements.json",
"package.json",
"README.md"
],
"scripts": {
"prepack": "yarn build",
"prepare": "husky install",
"dev": "run-p -r build:watch dev:server",
"dev:server": "run-s dev:server:wait dev:server:serve",
"dev:server:wait": "wait-on dist/index.js",
"dev:server:serve": "web-dev-server",
"build": "rm -rf dist && tsc --project tsconfig.prod.json && yarn docs",
"build:watch": "tsc --watch",
"docs": "run-s docs:manifest docs:readme",
"docs:manifest": "cem analyze",
"docs:readme": "node ./scripts/build-readmes/index.js",
"test": "jest",
"test:watch": "jest --watch --no-coverage"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.6.6",
"@testing-library/dom": "^8.19.0",
"@testing-library/jest-dom": "^5.16.5",
"@types/jest": "^29.2.2",
"@types/testing-library__jest-dom": "^5.14.5",
"@web/dev-server": "^0.1.35",
"html-format": "^1.0.2",
"husky": "^8.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-extended": "^3.2.0",
"jest-ts-webcompat-resolver": "^1.0.0",
"markdown-table": "^3.0.3",
"npm-run-all": "^4.1.5",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4",
"wait-on": "^6.0.1"
},
"dependencies": {
"lit": "^2.4.1"
}
}