-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.69 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.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
{
"name": "@citolab/qti-api",
"version": "8.0.40",
"private": false,
"type": "module",
"description": "A TypeScript library that contains the models and does API calls to a restfull API for handling QTI responses and responses data for teachers/reviewer dashboards.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"_test": "jest",
"lint": "eslint src/**/*.ts",
"prepublishOnly": "npm run build",
"release": "np --no-tests",
"release:patch": "np patch --no-tests",
"release:minor": "np minor --no-tests",
"release:major": "np major --no-tests"
},
"engines": {
"node": ">=14"
},
"keywords": [
"typescript",
"library"
],
"author": "Patrick de Klein, Sander Looise, Marcel Hoekstra",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Citolab/qti-api.git"
},
"bugs": {
"url": "https://github.com/Citolab/qti-api/issues"
},
"homepage": "https://github.com/Citolab/qti-api#readme",
"peerDependencies": {
"@citolab/qti-components": ">=7.0.0-0 || >=7.0.0-beta.0 || >=7.0.0-next.0",
"axios": ">=1.7.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.5.0",
"np": "^10.2.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
}
}