forked from microsoft/clarity-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.52 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "clarity-js",
"version": "0.2.11",
"description": "An analytics library that uses web page interactions to generate aggregated insights",
"author": "Microsoft Corp.",
"license": "MIT",
"main": "build/index.js",
"types": "types/index.d.ts",
"keywords": [
"clarity",
"Microsoft",
"interactions",
"cursor",
"pointer",
"instrumentation",
"analytics"
],
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/clarity-js.git"
},
"bugs": {
"url": "https://github.com/Microsoft/clarity-js/issues"
},
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/jasmine": "^3.3.7",
"@types/karma-fixture": "^0.2.5",
"@types/pubsub-js": "^1.5.18",
"@types/uglifyjs-webpack-plugin": "^1.1.0",
"@types/webpack": "^4.4.23",
"@types/webpack-merge": "^4.1.3",
"awesome-typescript-loader": "^5.2.1",
"chai": "^4.2.0",
"del-cli": "^1.1.0",
"husky": "^1.3.1",
"jasmine": "^3.3.1",
"karma": "^3.1.1",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-coverage": "^1.1.2",
"karma-detect-browsers": "^2.3.3",
"karma-edge-launcher": "^0.4.1",
"karma-firefox-launcher": "^1.1.0",
"karma-fixture": "^0.2.6",
"karma-html2js-preprocessor": "^1.0.0",
"karma-ie-launcher": "^1.0.0",
"karma-jasmine": "^2.0.1",
"karma-json-fixtures-preprocessor": "0.0.6",
"karma-safari-launcher": "^1.0.0",
"karma-typescript": "^4.0.0",
"lint-staged": "^7.3.0",
"merge": "^1.2.1",
"pubsub-js": "^1.7.0",
"ts-node": "^8.0.1",
"tslint": "^5.11.0",
"typescript": "^3.2.4",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-merge": "^4.2.1"
},
"scripts": {
"build": "yarn build:clean && yarn build:main && yarn build:cjs",
"build:main": "webpack --config webpack/configs/index.ts",
"build:cjs": "webpack --config webpack/configs/prod.ts",
"build:cjs:dev": "webpack --config webpack/configs/dev.ts",
"build:clean": "del-cli build/*",
"test": "karma start karma/configs/headless.js",
"test:chrome": "karma start karma/configs/chrome.js",
"test:firefox": "karma start karma/configs/firefox.js",
"test:ie": "karma start karma/configs/ie.js",
"tslint": "tslint --project ./",
"tslint:fix": "tslint --fix --project ./ --force"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"tslint --format codeFrame"
]
}
}