-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.5 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
{
"name": "numconv",
"version": "1.0.2",
"description": "Utility to convert integers between bases",
"main": "index.js",
"scripts": {
"build": "pkg . --out-path .\\bin\\",
"test": "tap --cov ./test/*",
"pretest": "standard",
"coverage": "nyc report --reporter=text-lcov",
"posttest": "tap --coverage-report=text-lcov | codacy-coverage --username alxtford --projectName numconv",
"release": "standard-version && git push --follow-tags origin master && npm publish",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alxtford/numconv.git"
},
"keywords": [
"hex",
"dec",
"binary",
"util",
"cli",
"math"
],
"author": "alxtford",
"license": "ISC",
"bugs": {
"url": "https://github.com/alxtford/numconv/issues"
},
"homepage": "https://github.com/alxtford/numconv#readme",
"bin": "index.js",
"files": [
"src/",
"index.js"
],
"dependencies": {
"figlet": "^1.2.1",
"sywac": "^1.2.1",
"sywac-style-basic": "^2.0.0",
"snyk": "^1.316.1"
},
"devDependencies": {
"codacy-coverage": "3.4.0",
"eslint": "6.8.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.1.0",
"pkg": "5.6.0",
"standard": "17.0.0",
"tap": "15.0.9",
"standard-version": "9.3.2"
},
"snyk": true
}