-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.42 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": "@webqit/util",
"title": "Util",
"description": "Utility functions used accross multiple JS libraries.",
"keywords": [
"stdlib",
"util"
],
"homepage": "https://webqit.dev/tooling/util",
"version": "0.8.14",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/webqit/util.git"
},
"bugs": {
"url": "https://github.com/webqit/util/issues"
},
"type": "module",
"main": "src/index.js",
"scripts": {
"test": "mocha --extension .test.js --exit",
"test:coverage": "c8 --reporter=text-lcov npm run test | coveralls",
"preversion": "npm run test",
"postversion": "npm publish",
"postpublish": "git push && git push --tags"
},
"devDependencies": {
"chai": "^4.3.4",
"coveralls": "^3.1.1",
"mocha": "^10.2.0",
"mocha-lcov-reporter": "^1.3.0",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
},
"author": "Oxford Harrison <oxharris.dev@gmail.com>",
"maintainers": [
"Oxford Harrison <oxharris.dev@gmail.com>"
],
"contributors": [],
"funding": {
"type": "patreon",
"url": "https://patreon.com/ox_harris"
},
"badges": {
"list": [
"npmversion",
"npmdownloads",
"patreon"
],
"config": {
"patreonUsername": "ox_harris",
"githubUsername": "webqit",
"githubRepository": "util",
"githubSlug": "webqit/util",
"npmPackageName": "@webqit/util"
}
}
}