-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 927 Bytes
/
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
{
"name": "@nyxlang/helpers",
"version": "0.1.3",
"description": "A collection of useful helper functions",
"main": "index.js",
"scripts": {
"publish:package": "npm run publish:push && npm publish",
"publish:push": "git add . && git commit -m 'Publish to NPM' && git push",
"format": "prettier --write . && eslint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NyxLang/helpers.git"
},
"keywords": [
"helpers",
"string",
"object",
"symbol",
"boolean",
"null",
"undefined",
"array",
"object",
"regexp"
],
"author": "Jason Barr <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/NyxLang/helpers/issues"
},
"homepage": "https://github.com/NyxLang/helpers#readme",
"devDependencies": {
"eslint": "^7.24.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.2.1"
}
}