-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.58 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
{
"name": "comfortable",
"version": "3.0.0",
"description": "Comfortable JS is a JavaScript library that provides utilities for common programming tasks, that make coding in JavaScript easier and cleaner.",
"license": "MIT",
"homepage": "https://comfortable.js.org",
"repository": {
"type": "git",
"url": "https://github.com/Ruben-Arushanyan/comfortable"
},
"bugs": {
"url": "https://github.com/Ruben-Arushanyan/comfortable/issues",
"email": "[email protected]"
},
"keywords": [
"javascript",
"comfortable",
"comfort",
"util",
"utils",
"utility",
"utilities",
"extras",
"helpers",
"stdlib",
"boost",
"oop",
"oop-in-javascript",
"object-oriented-programming",
"oop-principles",
"object-oriented"
],
"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/."
],
"sideEffects": false,
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.4",
"jest": "^29.1.2"
}
}