-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.57 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.57 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
{
"name": "joodle",
"version": "1.0.4",
"description": "Moodle Web Service API client for Node.js.",
"keywords": [
"moodle",
"moodle-ws",
"moodle-api"
],
"homepage": "https://joodle.lukecarr.dev",
"bugs": {
"url": "https://github.com/lukecarr/joodle/issues"
},
"license": "MIT",
"contributors": [
{
"name": "Luke Carr",
"email": "me@lukecarr.dev"
}
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lukecarr/joodle.git"
},
"scripts": {
"lint:eslint": "eslint \"src/**\" \"tests/**\"",
"lint:prettier": "prettier *.md **/*.md *.json **/*.yml",
"lint:check": "yarn lint:eslint && yarn lint:prettier --check",
"lint:fix": "yarn lint:eslint --fix && yarn lint:prettier --write",
"test:unit": "jest --passWithNoTests",
"test:coverage": "codecov",
"test": "yarn test:unit && yarn test:coverage",
"build:clean": "rimraf dist",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"build": "yarn build:clean && yarn build:types && yarn build:js",
"release": "release-it",
"prepublishOnly": "yarn lint:check && yarn test && yarn build"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/prompt": "^11.0.0",
"@release-it/conventional-changelog": "^2.0.0",
"@types/jest": "^26.0.18",
"@types/node": "^14.14.11",
"@types/qs": "^6.9.5",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"codecov": "^3.8.1",
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.2.0",
"husky": "^4.3.5",
"jest": "^26.6.3",
"nock": "^13.0.5",
"prettier": "^2.2.1",
"release-it": "^14.2.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.2"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"cacheable-request": "^7.0.1",
"got": "^11.8.0",
"qs": "^6.9.4"
}
}