This repository was archived by the owner on Sep 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.69 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.69 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
{
"name": "replapi-it",
"version": "2.3.2",
"description": "The single most extensive Replit package, allowing you to access various parts of the site with just a few classes and methods.",
"type": "module",
"main": "./dist/replapi-it.cjs",
"module": "./dist/replapi-it.mjs",
"exports": {
".": {
"import": "./dist/replapi-it.mjs",
"require": "./dist/replapi-it.cjs",
"default": "./dist/replapi-it.cjs"
},
"./module": "./dist/replapi-it.mjs",
"./common": "./dist/replapi-it.cjs"
},
"scripts": {
"postinstall": "node -e \"try{require('./.scripts/postinstall')}catch(e){}\"",
"test": "node tests/common.test.js & node tests/esm.test.mjs",
"test:cjs": "node tests/common.test.js",
"test:esm": "node tests/esm.test.mjs",
"build": "rimraf dist & rollup --config rollup.config.cjs",
"postbuild": "node ./.scripts/postbuild.js",
"lint": "eslint source --config eslint.config.cjs",
"lint:fix": "eslint source --fix --config eslint.config.cjs",
"format": "prettier source --check --config prettier.config.cjs",
"format:fix": "prettier source --write --config prettier.config.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ReplAPI-it/ReplAPI.it-NodeJS.git"
},
"keywords": [
"Replit",
"GraphQL",
"Restful",
"Blog",
"XML",
"Cookies",
"Login",
"Parse",
"Query",
"Mutations",
"API",
"NodeJS"
],
"author": "The ReplAPI.it Project",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/ReplAPI-it/ReplAPI.it-NodeJS/issues"
},
"homepage": "https://github.com/ReplAPI-it/ReplAPI.it-NodeJS#readme",
"dependencies": {
"core-js": "^3.15.0",
"cosmiconfig": "^7.0.0",
"lightfetch-node": "0.0.9",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"node-html-parser": "^3.3.5",
"rss-url-parser": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.5",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@replit/database": "^2.0.1",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-tailcall-optimization": "^2.0.0",
"eslint": "^7.28.0",
"eslint-plugin-import": "^2.23.4",
"husky": "^6.0.0",
"prettier": "^2.3.1",
"replace": "^1.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.52.1",
"rollup-plugin-terser": "^7.0.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}