-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.53 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
{
"name": "time-hulls",
"version": "0.0.114",
"description": "Calculates a series of convex hulls for periods of timestamped 2D point data",
"license": "GPL-3.0-only",
"repository": "mattsears18/time-hulls",
"main": "index.js",
"scripts": {
"test": "jest --coverage && cat ./coverage/lcov.info | codacy-coverage",
"test-watch": "jest --watchAll --coverage",
"lint": "eslint .",
"build": "gulp"
},
"keywords": [
"convex",
"hull",
"convex hull",
"eye tracking"
],
"dependencies": {
"area-polygon": "^1.0.1",
"hull.js": "^0.2.11",
"jStat": "1.7.1"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"babel-eslint": "^9.0.0",
"babel-jest": "^24.8.0",
"codacy-coverage": "^3.4.0",
"documentation": "^10.1.0",
"eslint": "^5.14.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-wesbos": "0.0.19",
"eslint-plugin-html": "^5.0.3",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.3.0",
"expect": "^24.8.0",
"gulp": "^4.0.1",
"gulp-babel": "^8.0.0",
"gulp-documentation": "^3.2.1",
"gulp-uglify": "^3.0.2",
"jest": "^24.8.0",
"jest-mock": "^24.8.0",
"prettier": "^1.16.4",
"remark-lint": "^6.0.4"
}
}