-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
59 lines (59 loc) · 1.61 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
{
"name": "lit-translate",
"version": "2.0.1",
"license": "MIT",
"module": "index.js",
"author": "Appnest",
"description": "A blazing-fast and lightweight internationalization (i18n) library for your next web-based project",
"bugs": {
"url": "https://github.com/andreasbm/lit-translate/issues"
},
"homepage": "https://github.com/andreasbm/lit-translate#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/andreasbm/lit-translate.git"
},
"keywords": [
"lit-html",
"lit-element",
"lit",
"custom",
"elements",
"web",
"component",
"custom element",
"web component",
"util",
"decorators",
"directives",
"translate",
"localisation",
"localization"
],
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"start": "npm run s",
"ncu": "ncu -u -a && npm update && npm install",
"test": "karma start karma.conf.js",
"b:lib": "node pre-build.js && tsc -p tsconfig.build.json",
"b:demo:dev": "rollup -c --environment NODE_ENV:dev",
"b:demo:prod": "rollup -c --environment NODE_ENV:prod",
"s:dev": "rollup -c --watch --environment NODE_ENV:dev",
"s:prod": "rollup -c --watch --environment NODE_ENV:prod",
"s": "npm run s:dev",
"readme": "node node_modules/.bin/readme generate",
"postversion": "npm run readme && npm run b:lib",
"publish:patch": "np patch --contents=dist --no-cleanup",
"publish:minor": "np minor --contents=dist --no-cleanup",
"publish:major": "np major --contents=dist --no-cleanup"
},
"dependencies": {
"lit": "^2.2.2"
},
"devDependencies": {
"@appnest/readme": "^1.2.7",
"@appnest/web-config": "0.5.4",
"lit": "^2.2.2"
}
}