-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 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
{
"name": "llms-api-node",
"version": "1.0.4",
"description": "Node.js wrapper for the LifterLMS REST API",
"main": "lifterlms-api.js",
"scripts": {
"lint": "./node_modules/.bin/eslint .",
"lint-fix": "./node_modules/.bin/eslint . --fix",
"test": "_mocha tests/*.js",
"test-coverage": "nyc --reporter=lcov --temp-dir=./tmp/.nyc_output _mocha tests/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gocodebox/llms-api-node.git"
},
"keywords": [
"LifterLMS"
],
"author": "Team LifterLMS <team@lifterlms.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gocodebox/llms-api-node/issues"
},
"homepage": "https://github.com/gocodebox/llms-api-node#readme",
"dependencies": {
"bluebird": "^3.5.5",
"lodash.camelcase": "^4.3.0",
"lodash.isempty": "^4.4.0",
"request": "^2.88.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.1.0",
"mocha": "^6.2.0",
"nock": "^10.0.6",
"nyc": "^14.1.1"
}
}