-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.56 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@ebury/huha",
"description": "huha.js (Hyperactive Users Hint Analysis) is a JavaScript framework that measures the usability and user experience in an automated way, including the limitations of the model and the best practices.",
"version": "3.5.0",
"repository": "github:Ebury/huha",
"author": "Ebury Team (http://labs.ebury.rocks/)",
"license": "MIT",
"engines": {
"node": ">=18"
},
"scripts": {
"lint": "gulp lint",
"build": "gulp build",
"prebuild": "npm run lint",
"test": "jest"
},
"eslintConfig": {
"extends": "airbnb-base",
"plugins": [
"jest"
],
"env": {
"jest/globals": true
}
},
"devDependencies": {
"@babel/core": "7.7.7",
"@babel/preset-env": "7.7.7",
"@babel/register": "7.7.7",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "26.6.3",
"babelify": "9.0.0",
"browserify": "17.0.0",
"del": "3.0.0",
"eslint": "7.16.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.3",
"gulp": "4.0.2",
"gulp-eslint": "6.0.0",
"gulp-load-plugins": "2.0.6",
"gulp-sourcemaps": "3.0.0",
"gulp-uglify": "3.0.2",
"jest": "26.6.3",
"vinyl-buffer": "1.0.1",
"vinyl-source-stream": "2.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"dependencies": {
"@babel/polyfill": "7.7.0",
"uuid": "3.3.3"
},
"main": "dist/huha.js",
"module": "src/huha.js",
"types": "index.d.ts",
"jest": {
"verbose": true,
"testURL": "http://localhost/"
}
}