-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 2.52 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
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
{
"author": "Anton Trofimenko",
"bugs": {
"url": "https://github.com/vicisjs/vicis/issues"
},
"contributors": [
{
"email": "[email protected]",
"name": "Anton Trofimenko"
}
],
"dependencies": {
"es-aggregate-error": "1.0.5"
},
"description": "Presentation and transformation layer for data output in RESTful APIs.",
"devDependencies": {
"@corefunc/corefunc": ">=0.3.8",
"@r37r0m0d3l/rollup-config-pkg": "git+https://github.com/r37r0m0d3l/rollup-config-pkg.git",
"argh": "1.0.0",
"babel-eslint": "10.1.0",
"dts-generator": "3.0.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"jest": "26.6.3",
"prettier": "2.4.1",
"remark-cli": "9.0.0",
"remark-lint": "8.0.0",
"remark-preset-lint-consistent": "4.0.0",
"remark-preset-lint-markdown-style-guide": "4.0.0",
"remark-preset-lint-recommended": "5.0.0",
"rollup": "2.57.0",
"rollup-plugin-typescript2": "0.30.0",
"typescript": "4.4.3",
"typescript-deno-plugin": "1.31.0"
},
"exports": {
".": {
"browser": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"node": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.min.js"
}
},
"files": [
"dist/index.cjs",
"dist/index.cjs.map",
"dist/index.d.ts",
"dist/index.js",
"dist/index.js.map",
"dist/index.mjs",
"dist/index.mjs.map"
],
"homepage": "https://vicis.js.org",
"keywords": [
"api",
"json",
"json-api",
"responder",
"responder-chain",
"response",
"rest",
"serialization",
"transformer"
],
"license": "MIT",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"name": "vicis",
"repository": {
"type": "git",
"url": "git+https://github.com/vicisjs/vicis.git"
},
"scripts": {
"build": "rollup --config rollup.config.mjs",
"build:dev": "rollup --config rollup.config.mjs --config-dev",
"build:definitions": "dts-generator --project . --out ./dist/index.d.ts",
"docs:serve": "docsify serve docs",
"lint": "eslint ./src/**/*.ts",
"lint:md": "remark .",
"package:shrink": "npm shrinkwrap",
"package:upgrade": "npx npm-check --update",
"test": "jest",
"test:coverage": "jest --collect-coverage"
},
"type": "module",
"types": "./dist/index.d.ts",
"version": "2.2.0"
}