-
Notifications
You must be signed in to change notification settings - Fork 146
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.51 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.51 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
{
"name": "countly-sdk-web",
"version": "26.1.1",
"description": "Countly Web SDK",
"main": "lib/countly.js",
"types": "lib/countly.d.ts",
"directories": {
"example": "examples",
"lib": "lib",
"test": "test"
},
"scripts": {
"docs": "node_modules/.bin/jsdoc lib/countly.js README.md -c jsdoc_conf.json -d docs",
"build": "webpack",
"lint": "./node_modules/.bin/eslint --ignore-path .eslintignore --fix .",
"lintMD": "markdownlint **/*.md --fix",
"cy:open": "cypress open",
"cy:run": "cypress run",
"pretest": "eslint --ignore-path .eslintignore .",
"test": "cypress run"
},
"repository": {
"type": "git",
"url": "https://github.com/Countly/countly-sdk-web"
},
"keywords": [
"Countly",
"Analytics",
"Web"
],
"author": "Countly <hello@count.ly> (https://countly.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Countly/countly-sdk-web/issues"
},
"homepage": "https://countly.com/",
"devDependencies": {
"cypress": "13.6.0",
"cypress-localstorage-commands": "2.2.5",
"eslint": "8.37.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-chai-friendly": "0.7.2",
"eslint-plugin-cypress": "2.13.2",
"eslint-plugin-import": "2.27.5",
"jsdoc": "4.0.2",
"markdownlint": "0.29.0",
"stylelint": "14.9.1",
"stylelint-config-standard": "28.0.0"
},
"npmName": "countly-sdk-web",
"npmFileMap": [
{
"basePath": "lib",
"files": [
"countly.min.js"
]
}
]
}