-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.81 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
{
"name": "vk-io-pages",
"version": "2.0.0",
"description": "Модуль vk-io для создания динамических страниц",
"scripts": {
"build": "tsc && babel build --out-dir lib --copy-files",
"postbuild": "node --experimental-modules --es-module-specifier-resolution=node ./scripts/cleanUp.mjs",
"test": "npm run-script build && node --experimental-modules --experimental-json-modules node_modules/mocha/bin/_mocha --reporter spec --timeout 30000 --exit",
"docs": "typedoc --out docs src/manager.ts --gitRevision master",
"eslint:check": "eslint ./src/**/*",
"eslint:fix": "eslint ./src/**/* --fix"
},
"main": "./lib/manager.js",
"exports": {
".": [
{
"require": "./lib/manager.js",
"import": "./esm/index.mjs"
},
"./lib/manager.js"
],
"./esm": "./esm/index.mjs"
},
"types": "./lib/manager.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/MrZillaGold/vk-io-pages.git"
},
"author": "MrZillaGold <Pronin Egor | mrzillagold@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MrZillaGold/vk-io-pages/issues"
},
"homepage": "https://github.com/MrZillaGold/vk-io-pages#readme",
"keywords": [
"vk-io",
"vkio",
"pages",
"vk-io-pages"
],
"peerDependencies": {
"vk-io": "^4.4.0"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@types/node": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"mocha": "^9.0.0",
"typedoc": "^0.22.11",
"typescript": "^4.1.3"
}
}