-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.1 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
{
"name": "@qubit/utils",
"version": "1.6.1",
"description": "Utilities for clientside code injection",
"main": "dom/index.js",
"scripts": {
"test": "karma start --single-run",
"coverage": "npm test -- --coverage",
"test-ci": "karma start karma.conf.ci.js --single-run",
"format": "prettier-standard",
"lint": "healthier"
},
"check": {
"global": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
},
"author": "",
"license": "ISC",
"dependencies": {
"slapdash": "^1.3.3",
"sync-p": "^1.3.0"
},
"devDependencies": {
"@qubit/buble": "^0.19.10",
"@qubit/buble-loader": "^0.5.1",
"chai": "^4.2.0",
"healthier": "^4.0.0",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^6.3.2",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-mocha": "^2.0.1",
"karma-sauce-launcher": "^2.0.2",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^4.0.2",
"mocha": "^8.4.0",
"prettier-standard": "^15.0.1",
"sinon": "^9.0.3",
"webpack": "^4.44.1"
}
}