This repository has been archived by the owner on May 31, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.7 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
{
"name": "brainly-api",
"version": "0.0.45",
"description": "Unofficial brainly.com API",
"main": "build/index.js",
"scripts": {
"test": "npm run jesttest",
"jesttest": "jest --verbose --passWithNoTests",
"release": "rimraf ./build && npm publish && git push -u origin main && tsc",
"build": "rimraf ./build && tsc --declaration false --declarationMap false",
"build:map": "rimraf ./build && tsc",
"watch": "rimraf ./build && tsc -w",
"release-childs": "lerna publish",
"postinstall:build": "npm run build && node ./postinstall.js",
"postinstall": "cross-env BUILD_MODE=1 npm run postinstall:build"
},
"engines": {
"node": ">=12.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dhanuprys/brainly-api.git"
},
"keywords": [
"tools",
"api",
"brainly",
"unofficial",
"wrapper"
],
"author": "Gede Dhanu Purnayasa <dhanuprys@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dhanuprys/brainly-api/issues"
},
"homepage": "https://github.com/dhanuprys/brainly-api#readme",
"bin": {
"brainly-api": "./bin/brainly-api.js"
},
"dependencies": {
"@types/axios": "^0.14.0",
"@types/cryptr": "^4.0.1",
"@types/node": "^15.6.1",
"@types/npm": "^2.0.31",
"@types/puppeteer": "^5.4.3",
"axios": "^0.21.1",
"chalk": "^4.1.0",
"cli-highlight": "^2.1.10",
"commander": "^7.0.0",
"cross-env": "^7.0.3",
"cryptr": "^6.0.2",
"jest": "^26.6.3",
"npm": "^7.5.2",
"rimraf": "^3.0.2",
"typescript": "^4.1.3"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/jest": "^26.0.20",
"@types/rimraf": "^3.0.0",
"lerna": "^4.0.0"
}
}