-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.05 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
{
"name": "@htmlguyllc/jpack",
"version": "9.0.39",
"description": "Core Javascript Library of Everyday Objects, Events, and Utilities",
"keywords": [
"javascript",
"javascript-library",
"component-library",
"utilities",
"javascript-objects",
"javascript-events",
"javascript-helpers"
],
"main": "dist/jpack.min.js",
"browser": "src/jpack.js",
"module": "src/jpack.js",
"jsdelivr": "dist/jpack.min.js",
"unpkg": "dist/jpack.min.js",
"author": {
"name": "HTMLGuy, LLC",
"url": "https://htmlguy.com"
},
"repository": {
"type": "git",
"url": "https://github.com/HTMLGuyLLC/jPack"
},
"bugs": {
"url": "https://github.com/HTMLGuyLLC/jPack/issues"
},
"homepage": "https://htmlguyllc.github.io/jPack/",
"private": false,
"dependencies": {
"axios": "^0.21.1",
"formdata-polyfill": "^3.0.18",
"url-search-params-polyfill": "^7.0.0"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/node": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@babel/register": "^7.4.4",
"@olavoparno/jest-badges-readme": "^1.3.6",
"babel-loader": "^8.0.6",
"jest": "^24.8.0",
"parallel-webpack": "^2.4.0",
"pre-commit": "^1.2.2",
"puppeteer": "^1.18.1",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.6"
},
"jest": {
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"collectCoverage": true
},
"license": "MIT",
"scripts": {
"prebuild": "echo nok > .buildstatus",
"postbuild": "echo ok > .buildstatus",
"build": "webpack",
"test": "jest",
"make-badges": "node_modules/.bin/jest-badges-readme",
"bump-patch-version": "npm version --no-git-tag-version patch",
"add-changes": "git add 'package.json' 'package-lock.json' 'README.md' './dist/jpack.min.js' './dist/jpack.bundled.min.js' './test/_jpack.bundled.js'",
"npm-publish": "npm publish"
},
"pre-commit": [
"build",
"test",
"make-badges",
"bump-patch-version",
"add-changes",
"npm-publish"
]
}