-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
44 lines (44 loc) · 1.24 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
{
"name": "countly-sdk-nodejs",
"version": "24.10.0",
"description": "Countly NodeJS SDK",
"main": "lib/countly.js",
"directories": {
"example": "examples",
"lib": "lib",
"test": "test"
},
"scripts": {
"lint": "eslint **/*.js",
"lint:fix": "npm run lint -- --fix",
"lintMD": "markdownlint **/*.md --fix",
"docs": "node_modules/.bin/jsdoc lib/countly.js lib/countly-bulk.js lib/countly-bulk-user.js README.md -c jsdoc_conf.json -d docs",
"pretest": "eslint --ignore-path .eslintignore .",
"test": "mocha --timeout 180000 test/tests_*.js --exit --allow-uncaught"
},
"repository": {
"type": "git",
"url": "https://github.com/Countly/countly-sdk-nodejs"
},
"keywords": [
"Countly",
"Analytics",
"Web"
],
"author": "Countly <[email protected]> (https://count.ly/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Countly/countly-sdk-nodejs/issues"
},
"homepage": "https://count.ly/",
"dependencies": {},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"markdownlint": "^0.26.0",
"mocha": "*",
"jsdoc": "*",
"docdash": "*"
}
}