-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.93 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
62
63
64
65
66
67
{
"name": "@macfja/serializer",
"version": "1.1.4",
"description": "Transform any object, class, array, primitive to a serialized string and vice-versa",
"main": "./dist/index.js",
"bugs": {
"url": "https://github.com/MacFJA/js-serializer/issues"
},
"homepage": "https://github.com/MacFJA/js-serializer",
"keywords": [
"serializer",
"serialization",
"deserializer",
"object",
"class"
],
"repository": {
"url": "https://github.com/MacFJA/js-serializer.git",
"type": "git"
},
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist/",
"types/",
"README.md",
"LICENSE.md"
],
"scripts": {
"test": "uvu tests/",
"pretest": "run-npm build",
"build": "run-npm -p 'type:definition' 'rollup -c'",
"format": "prettier --write src/ tests/ package.json *.md",
"lint:prettier": "prettier --check src/ tests/ package.json *.md",
"lint:eslint": "run -s 'eslint src/ tests/' 'echo ESLint OK'",
"lint": "run-npm -p 'lint:prettier' 'lint:eslint'",
"type:definition": "tsc src/index.ts --declaration --emitDeclarationOnly --outDir types",
"type:check": "tsc src/index.ts --noEmit",
"type": "run-npm -s 'type:check' 'type:definition'",
"doc": "ts-docs src/index.ts",
"prepublishOnly": "run-npm -s 'format' 'build'"
},
"author": "MacFJA",
"license": "MIT",
"type": "module",
"types": "types/index.d.ts",
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.4",
"@ts-docs/default-docs-structure": "^0.4.4",
"@ts-docs/ts-docs": "^0.4.4",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.7.1",
"rollup": "^2.77.2",
"rollup-plugin-terser": "^7.0.2",
"script-runner": "^0.1.8",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"uvu": "^0.5.6"
}
}