This repository was archived by the owner on Nov 20, 2025. It is now read-only.
forked from PeculiarVentures/pvtsutils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.37 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.37 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "pvtsutils",
"version": "1.1.4",
"description": "pvtsutils is a set of common utility functions used in various Peculiar Ventures TypeScript based projects.",
"main": "build/index.js",
"module": "build/index.es.js",
"browser": "build/index.js",
"types": "build/types/index.d.ts",
"files": [
"build/**/*.{ts,js}",
"README.md",
"LICENSE"
],
"scripts": {
"prepare": "npm run build",
"test": "mocha",
"build": "npm run build:module && npm run build:types",
"clear": "rimraf build/*",
"rebuild": "npm run clear && npm run build",
"build:module": "rollup -c",
"build:types": "tsc -p tsconfig.types.json",
"lint": "tslint -p .",
"lint:fix": "tslint --fix -p .",
"prepub": "npm run lint && npm run rebuild",
"pub": "npm version patch && npm publish",
"postpub": "git push && git push --tags origin master",
"prepub:next": "npm run lint && npm run rebuild",
"pub:next": "npm version prerelease --preid=next && npm publish --tag next",
"postpub:next": "git push",
"coverage": "nyc npm test",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"typescript",
"helper",
"util",
"convert",
"hex",
"utf8",
"base64",
"base64url",
"binary",
"assign"
],
"author": "PeculiarVentures",
"contributors": [
"Miroshin Stepan<microshine@mail.ru>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/PeculiarVentures/pvtsutils"
},
"bugs": {
"url": "https://github.com/PeculiarVentures/pvtsutils/issues"
},
"homepage": "https://github.com/PeculiarVentures/pvtsutils#readme",
"dependencies": {
"tslib": "^2.2.0"
},
"devDependencies": {
"@types/mocha": "^8.2.2",
"@types/node": "^12.19.15",
"coveralls": "^3.1.0",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.45.2",
"rollup-plugin-typescript2": "^0.30.0",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.2.4"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"text-summary",
"html"
]
},
"mocha": {
"require": "ts-node/register",
"extension": [
"ts"
],
"watch-files": [
"test/**/*.ts"
]
}
}