-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.57 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
{
"name": "produce-by-path",
"version": "1.1.1",
"description": "Produce By Path is a design pattern, which is used to dynamically produce values by using the path to which it is applied. This package helps us easily create and define producer instances.",
"license": "MIT",
"homepage": "https://github.com/ruben-arushanyan/produce-by-path",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ruben-arushanyan/produce-by-path"
},
"bugs": {
"url": "https://github.com/ruben-arushanyan/produce-by-path/issues",
"email": "[email protected]"
},
"keywords": [
"produce-by-path",
"produce-by-path-pattern",
"javascript",
"design-pattern",
"proxy",
"es6-proxy",
"nested-proxy",
"deep-proxy"
],
"author": {
"name": "Ruben Arushanyan",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/ruben-arushanyan-42bba9235/"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/Ruben-Arushanyan"
},
"scripts": {
"build": "node scripts/build.js",
"test": "npm run to-pack --if-present; node scripts/test.js",
"to-pack": "npm run build --if-present; node scripts/to-pack.js",
"to-npm-publish": "npm run to-pack --if-present; node scripts/to-npm-publish.js"
},
"packableFiles": [
"package.json",
"README.md",
"LICENSE",
"dist/."
],
"devDependencies": {
"@babel/cli": "^7.18.9",
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"jest": "^26.6.3"
},
"sideEffects": false
}