forked from lit/lit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.09 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
{
"name": "@lit/localize-tools",
"version": "0.5.0",
"publishConfig": {
"access": "public"
},
"description": "Localization tooling for lit-html",
"license": "BSD-3-Clause",
"author": "Google LLC",
"homepage": "https://github.com/lit/lit/tree/main/packages/localize-tools",
"repository": {
"type": "git",
"url": "https://github.com/lit/lit.git",
"directory": "packages/localize-tools"
},
"bin": {
"lit-localize": "bin/lit-localize.js"
},
"main": "lit-localize.js",
"type": "module",
"scripts": {
"clean": "git clean -dXn | sed 's/^Would remove //' | grep -v node_modules | xargs rm -rf",
"build": "npm run clean && npm run generate-json-schema && tsc --build",
"generate-json-schema": "typescript-json-schema tsconfig.schema.json ConfigFile --include=src/types/config.d.ts --required --noExtraProps > config.schema.json",
"test": "npm run test:unit && npm run test:check-tsc",
"test:unit": "uvu lib/tests '\\.test\\.js$' --ignore 'ssr\\.unit\\.test\\.js$' && uvu lib/tests '\\ssr\\.unit\\.test\\.js$'",
"test:update-goldens": "UPDATE_TEST_GOLDENS=true npm run test:unit",
"test:check-tsc": "ls testdata/*/output/tsconfig.json | xargs -n 1 tsc --noEmit --project"
},
"files": [
"/src/",
"!/src/tests/",
"/lib/",
"!/lib/tests/",
"!/lib/.tsbuildinfo",
"/config.schema.json"
],
"dependencies": {
"@lit/localize": "^0.11.0",
"@xmldom/xmldom": "^0.7.0",
"fast-glob": "^3.2.7",
"fs-extra": "^10.0.0",
"jsonschema": "^1.4.0",
"lit": "^2.0.0",
"minimist": "^1.2.5",
"parse5": "^6.0.1",
"source-map-support": "^0.5.19",
"typescript": "^4.3.5"
},
"devDependencies": {
"@lit-labs/ssr": "^1.0.0",
"@lit/ts-transformers": "^1.0.2",
"@types/diff": "^5.0.0",
"@types/fs-extra": "^9.0.1",
"@types/minimist": "^1.2.0",
"@types/node": "^16.7.8",
"@types/parse5": "^6.0.1",
"@types/prettier": "^2.0.1",
"diff": "^5.0.0",
"dir-compare": "^3.1.5",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"typescript-json-schema": "^0.50.0",
"uvu": "^0.5.1"
}
}