-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.08 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.08 KB
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
{
"name": "@apitraffic/javascript-helpers",
"version": "0.0.6",
"description": "Javascript helper library for ApiTraffic.",
"main": "dist/apitraffic-javascript-helpers.bundle.js",
"scripts": {
"build": "webpack --mode production",
"test": "NODE_ENV=test jest",
"pub-patch": "npm run build && npm version patch --force && git push origin master && npm publish",
"pub-minor": "npm run build && npm version minor --force && git push origin master && npm publish",
"pub-major": "npm run build && npm version major --force && git push origin master && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apitraffic/javascript-helpers.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/apitraffic/javascript-helpers/issues"
},
"homepage": "https://github.com/apitraffic/javascript-helpers#readme",
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"babel-loader": "^9.1.3",
"jest": "^29.7.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
}
}