-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.03 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
{
"name": "tidbits",
"version": "1.0.27",
"description": "a library of useful (?) \"out-of-the-beaten-path\" tidbits :-)",
"main": "utils.mjs",
"module": "utils.mjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "echo 'this ES6 Module is a library/collection of one-off functions;\\nthere is NO BUILD STEP (this enables tree-shaking when individual functions are included)\\n'",
"pub": "git add . && git commit -m 'working code' && npm version patch -m 'upgrade to %s while working code' && git push && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frudman/freddy-javascript-utils.git"
},
"keywords": [
"utils",
"helpers",
"utilities"
],
"author": "Frederic Rudman",
"license": "ISC",
"bugs": {
"url": "https://github.com/frudman/freddy-javascript-utils/issues"
},
"homepage": "https://github.com/frudman/freddy-javascript-utils#readme",
"dependencies": {},
"devDependencies": {
"@babel/runtime": "^7.4.4"
}
}