75 lines
2.2 KiB
JSON
75 lines
2.2 KiB
JSON
{
|
|
"name": "pizzip",
|
|
"version": "3.1.6",
|
|
"author": "Edgar Hipp",
|
|
"description": "Create, read and edit .zip files synchronously with Javascript",
|
|
"scripts": {
|
|
"lint:fix": "npm run prettier:fix && npm run eslint:fix",
|
|
"eslint:fix": "eslint_d --cache 'es6/**/*.js' --fix",
|
|
"prettier:fix": "prettier --cache --write '*.js' 'es6/**/*.js' 'test/test.js' test/node.js 'utils/*.js' 'utils/es6/**/*.js'",
|
|
"browserify:lib": "webpack",
|
|
"babel": "babel es6 --out-dir js",
|
|
"babel:watch": "npm run babel -- --watch",
|
|
"build": "npm run browserify:lib && npm run browserify:lib:min",
|
|
"browserify:lib:min": "cross-env MIN=true webpack",
|
|
"preversion": "npm run babel && npm run build && npm test && npm run utils:build && cp utils/dist/* dist && npm run test:typings",
|
|
"test": "mocha test/test.js",
|
|
"test:watch": "mocha test/test.js --watch",
|
|
"test:typings": "cp es6/*.ts js && tsd js && tsd utils",
|
|
"utils:build": "cd utils && cross-env MIN=true ../node_modules/.bin/webpack && ../node_modules/.bin/webpack && IE=true cross-env MIN=true ../node_modules/.bin/webpack && IE=true ../node_modules/.bin/webpack"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "Stuart Knightley"
|
|
},
|
|
{
|
|
"name": "Franz Buchinger"
|
|
},
|
|
{
|
|
"name": "António Afonso"
|
|
},
|
|
{
|
|
"name": "David Duponchel"
|
|
},
|
|
{
|
|
"name": "yiminghe"
|
|
},
|
|
{
|
|
"name": "Edgar Hipp"
|
|
}
|
|
],
|
|
"main": "./js/index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/open-xml-templating/pizzip"
|
|
},
|
|
"keywords": [
|
|
"zip",
|
|
"deflate",
|
|
"inflate"
|
|
],
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.23.4",
|
|
"@babel/core": "^7.23.7",
|
|
"@babel/eslint-parser": "^7.23.3",
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
|
|
"@babel/preset-env": "^7.23.8",
|
|
"acorn": "^8.11.3",
|
|
"babel-loader": "^9.1.3",
|
|
"chai": "^4.3.7",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^8.56.0",
|
|
"eslint_d": "^13.1.2",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"mocha": "^10.2.0",
|
|
"prettier": "^3.2.4",
|
|
"tsd": "^0.30.4",
|
|
"webpack": "^5.89.0",
|
|
"webpack-cli": "^5.1.4"
|
|
},
|
|
"dependencies": {
|
|
"pako": "^2.1.0"
|
|
},
|
|
"license": "(MIT OR GPL-3.0)"
|
|
}
|