-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.4 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.4 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@neovici/cosmoz-utils",
"version": "6.20.2",
"description": "Date, money and template management functions commonly needed in Cosmoz views.",
"keywords": [
"polymer",
"web-components"
],
"homepage": "https://github.com/Neovici/cosmoz-utils#readme",
"bugs": {
"url": "https://github.com/Neovici/cosmoz-utils/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Neovici/cosmoz-utils.git"
},
"license": "Apache-2.0",
"author": "Neovici Development",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"files": [
"dist/"
],
"scripts": {
"lint": "tsc && eslint --cache .",
"check:duplicates": "check-duplicate-components",
"build": "tsc -p tsconfig.build.json",
"start": "wds",
"test": "wtr --coverage",
"test:watch": "wtr --watch",
"prepare": "husky install"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/npm",
"@semantic-release/git"
],
"branch": "master"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": "./dist/index.js",
"./array": "./dist/array.js",
"./connectable": "./dist/connectable.js",
"./date": "./dist/date.js",
"./function": "./dist/function.js",
"./number": "./dist/number.js",
"./location": "./dist/location.js",
"./money": "./dist/money.js",
"./promise": "./dist/promise.js",
"./object": "./dist/object.js",
"./string": "./dist/string.js",
"./tag": "./dist/tag.js",
"./template": "./dist/template.js",
"./reduce": "./dist/reduce/index.js",
"./elements": "./dist/elements/index.js",
"./elements/*": "./dist/elements/*.js",
"./directives/*": "./dist/directives/*.js",
"./hooks/*": "./dist/hooks/*.js",
"./memoize": "./dist/memoize.js",
"./keybindings": "./dist/keybindings/index.js",
"./keybindings/*": "./dist/keybindings/*.js"
},
"dependencies": {
"@pionjs/pion": "^2.7.1"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@neovici/cfg": "^2.8.0",
"@open-wc/testing": "^4.0.0",
"@polymer/polymer": "^3.3.1",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"@types/mocha": "^10.0.3",
"husky": "^8.0.0",
"lint-staged": "^16.2.7",
"lit-html": "^2.0.0 || ^3.0.0",
"semantic-release": "^25.0.2",
"sinon": "^19.0.0"
}
}