-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.62 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
{
"name": "pigretto",
"version": "3.20.0",
"description": "A JS library to easily implement proxies, facades, lazy loading and monkey patching using an API with an AOP flavor.",
"keywords": [
"proxy",
"lazy-loading",
"lazy",
"monkey-patching"
],
"author": "Anton Bagdatyev (Tonix)",
"license": "MIT",
"main": "dist/pigretto.js",
"module": "dist/es6/index.js",
"repository": {
"type": "git",
"url": "https://github.com/tonix-tuft/pigretto.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "WEBPACK_ENV=watch webpack --progress --color --watch",
"clear-build": "rm -Rf ./dist && mkdir ./dist",
"dev-build": "WEBPACK_ENV=dev webpack --progress --color",
"build": "WEBPACK_ENV=build webpack",
"dev-build-ie11": "WEBPACK_ENV=dev webpack --progress --color --config webpack.config.ie11.js",
"build-ie11": "WEBPACK_ENV=build webpack --config webpack.config.ie11.js",
"build-all-ie11": "npm run build-ie11 && npm run dev-build-ie11",
"publish-git": "npm publish && git push && git push --tags",
"build-all": "npm run clear-build && npm run build && npm run dev-build && npm run build-module && npm run build-all-ie11",
"publish-patch": "npm run build-all && npm version patch && npm run publish-git",
"publish-minor": "npm run build-all && npm version minor && npm run publish-git",
"publish-major": "npm run build-all && npm version major && npm run publish-git",
"build-module": "cross-env BABEL_ENV=module ./node_modules/.bin/babel ./src --out-dir ./dist/es6 --source-maps --copy-files"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"babel-loader": "^8.1.0",
"core-js": "^3.6.5",
"eslint": "^8.1.0",
"eslint-webpack-plugin": "^3.0.1",
"minimist": ">=1.2.3",
"regenerator-runtime": "^0.13.7",
"serialize-javascript": "^3.1.0",
"terser-webpack-plugin": "^3.1.0",
"typescript": "^4.0.0",
"webpack": "^5.45.1",
"webpack-cli": "^4.8.0"
},
"bugs": {
"url": "https://github.com/tonix-tuft/pigretto/issues"
},
"homepage": "https://github.com/tonix-tuft/pigretto#readme",
"dependencies": {
"declarative-factory": "^1.13.0",
"escape-string-regexp": "^2.0.0",
"js-utl": "^4.30.0"
},
"files": [
"dist",
"src"
],
"sideEffects": false
}