-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.12 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
{
"name": "litmos-sdk",
"version": "2.0.1",
"description": "Node.js SDK for the Litmos Learning Management System",
"main": "litmos.js",
"scripts": {
"test": "mocha --recursive --test",
"test-quick": "mocha --recursive --quick --test",
"test-debug": "node --inspect node_modules/.bin/mocha --recursive --test",
"test-debug-quick": "node --inspect node_modules/.bin/mocha --recursive --quick --test",
"lint": "eslint .",
"lint-fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Trifoia/litmos-sdk.git"
},
"keywords": [
"litmos",
"sdk",
"lms"
],
"author": "Trifoia <[email protected]> (https://trifoia.com)",
"contributors": [
"Joshua Evans <[email protected]> (https://thejoshuaevans.com)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Trifoia/litmos-sdk/issues"
},
"homepage": "https://github.com/Trifoia/litmos-sdk#readme",
"dependencies": {
"lodash": "^4.17.20",
"phin": "^3.5.0",
"xml-js": "^1.6.11"
},
"devDependencies": {
"eslint": "^7.11.0",
"mocha": "^8.1.3"
}
}