-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 867 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 867 Bytes
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
{
"version": "4.0.0",
"name": "@tko/provider.bindingstring",
"description": "Abstract Base Class for providers that parse a binding string",
"module": "dist/index.js",
"files": [
"dist/",
"types/"
],
"license": "MIT",
"dependencies": {
"@tko/provider": "^4.0.0",
"@tko/utils.parser": "^4.0.0"
},
"karma": {
"frameworks": [
"mocha"
]
},
"homepage": "https://tko.io",
"licenses": [
{
"type": "MIT",
"url": "https://opensource.org/licenses/MIT"
}
],
"exports": {
".": {
"types": "./types/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"bugs": {
"url": "https://github.com/knockout/tko/issues"
},
"author": "The Knockout Team",
"repository": {
"type": "git",
"url": "git+https://github.com/knockout/tko.git"
}
}