-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.17 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "halfcab",
"version": "13.0.9",
"type": "module",
"description": "A simple universal JavaScript framework focused on making use of es2015 template strings to build components.",
"main": "halfcab.mjs",
"module": "halfcab.mjs",
"jsnext:main": "halfcab.mjs",
"scripts": {
"test": "mocha --experimental-modules --es-module-specifier-resolution=node --experimental-json-modules './{,!(node_modules)/**}/test.js'",
"test:coverage": "c8 --reporter=html --check-coverage --lines 75 --functions 75 --branches 75 npm test",
"test:coveralls": "c8 npm test && c8 report --reporter=text-lcov | coveralls",
"versionbump:fix": "npm version patch --no-git-tag-version",
"versionbump:feature": "npm version minor --no-git-tag-version",
"versionbump:breakingchanges": "npm version major --no-git-tag-version",
"npm-publish": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lorengreenfield/halfcab.git"
},
"keywords": [
"newschool",
"oldschool",
"data",
"binding",
"es2015",
"es6",
"component"
],
"author": "Loren Greenfield",
"license": "MIT",
"bugs": {
"url": "https://github.com/lorengreenfield/halfcab/issues"
},
"homepage": "https://github.com/lorengreenfield/halfcab#readme",
"devDependencies": {
"c8": "^7.1.0",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"dirty-chai": "^2.0.1",
"esm": "^3.2.25",
"jsdom": "^15.1.1",
"jsdom-global": "^3.0.2",
"mocha": "^7.1.2",
"sinon": "^7.2.3",
"sinon-chai": "^3.0.0"
},
"dependencies": {
"axios": "^0.26.1",
"csjs-inject": "^1.0.1",
"deep-object-diff": "^1.1.0",
"deepmerge": "^4.0.0",
"event-emitter": "^0.3.5",
"fast-clone": "^1.5.13",
"html-entities": "^2.3.2",
"marked": "^0.7.0",
"nanocomponent": "^6.5.2",
"nanohtml": "^1.6.3",
"nanolru": "^1.0.0",
"nanomorph": "^5.4.0",
"qs": "^6.5.2",
"shifty-router": "^0.1.1"
},
"peerDependencies": {
"esm": "^3.2.22"
},
"c8": {
"extension": [
".mjs"
],
"exclude": [
"**/test.mjs"
],
"require": [
"esm"
],
"reporter": [
"text-lcov"
]
}
}