AniwatchPlus/package.json

83 lines
2.6 KiB
JSON
Raw Normal View History

2020-08-25 21:14:51 +02:00
{
2020-08-29 17:27:16 +02:00
"name": "aniwatch-plus",
2021-02-20 11:31:27 +01:00
"version": "1.1.0",
2020-08-29 17:27:16 +02:00
"description": "Aniwatch Plus is a browser extension for https://aniwatch.me/",
2020-08-25 21:14:51 +02:00
"main": "index.js",
2020-08-26 22:00:58 +02:00
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
2020-08-29 17:27:16 +02:00
"clean": "gulp clean",
2020-08-26 22:00:58 +02:00
"build": "gulp build",
"build:prod": "cross-env NODE_ENV=production gulp build",
"dist": "gulp dist",
2020-08-29 16:47:23 +02:00
"dist:prod": "cross-env NODE_ENV=production gulp dist",
"watch": "gulp dist && gulp watch"
2020-08-26 22:00:58 +02:00
},
"repository": {
"type": "git",
2020-08-29 17:27:16 +02:00
"url": "git+https://github.com/Serraniel/AniwatchPlus.git"
2020-08-26 22:00:58 +02:00
},
2020-08-29 17:27:16 +02:00
"author": {
"name": "Serraniel",
"email": "mail@serraniel.dev",
"url": "https://serraniel.dev"
},
2020-09-01 01:38:44 +02:00
"contributors": [
{
2020-09-06 21:03:16 +02:00
"name": "Kaffem"
2020-09-01 01:38:44 +02:00
}
],
2020-08-26 22:00:58 +02:00
"license": "MPL-2.0",
"bugs": {
2020-08-29 17:27:16 +02:00
"url": "https://github.com/Serraniel/AniwatchPlus/issues",
"email": "mail@serraniel.dev"
2020-08-26 22:00:58 +02:00
},
2020-08-29 17:27:16 +02:00
"homepage": "https://github.com/Serraniel/AniwatchPlus#readme",
"dependencies": {
2021-11-05 22:46:17 +01:00
"color": "^3.2.1",
"spacetime": "https://github.com/Serraniel/spacetime#bugfix/#255-typescript-constructor-options-missing",
"uuid": "^8.3.2"
},
2020-08-25 21:24:57 +02:00
"devDependencies": {
"@babel/compat-data": "^7.19.0",
"@babel/core": "^7.19.3",
"@babel/helper-module-imports": "^7.18.6",
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@babel/plugin-proposal-private-methods": "^7.17.12",
"@babel/preset-env": "^7.19.3",
"@babel/register": "^7.18.9",
"@types/chrome": "0.0.197",
2020-08-26 20:31:24 +02:00
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"cross-env": "^7.0.3",
"cssnano": "^5.1.13",
"del": "^6.1.1",
"factor-bundle": "^2.5.0",
2020-08-25 21:24:57 +02:00
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
2020-08-25 21:24:57 +02:00
"gulp-babel": "^8.0.0",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^7.1.0",
"gulp-load-plugins": "^2.0.8",
"gulp-merge": "^0.1.1",
2020-08-25 21:24:57 +02:00
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^9.0.1",
2020-08-25 21:24:57 +02:00
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.3",
"gulp-sass": "^5.1.0",
"gulp-size": "^4.0.1",
"gulp-sourcemaps": "^3.0.0",
"gulp-terser": "^2.1.0",
2020-12-28 21:39:49 +01:00
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-zip": "^5.1.0",
"merge-stream": "^2.0.0",
"postcss": "^8.4.16",
"sass": "^1.55.0",
"terser": "^5.15.0",
"tsify": "^5.0.4",
"typescript": "^4.8.3",
2020-08-26 20:31:24 +02:00
"vinyl-buffer": "^1.0.1",
2020-12-28 22:08:50 +01:00
"vinyl-source-stream": "^2.0.0",
"web-ext-types": "^3.2.1"
2020-08-26 22:00:58 +02:00
}
2020-09-06 20:25:52 +02:00
}