-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.06 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.06 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
{
"name": "keep-tidy",
"version": "1.1.1",
"description": "Simple utilities and ES5 base class for robust and maintainable code.",
"main": "index.js",
"homepage": "",
"repository": "http://github.com/valango/keep-tidy.git",
"author": "Villem Alango <villem.alango@gmail.com>",
"license": "MIT",
"keywords": [
"baseclass",
"code",
"debug",
"debugging",
"ES5",
"ES2015",
"ECMAScript 2015",
"avoid",
"leaks",
"event",
"handler",
"disposal",
"back-end",
"front-end"
],
"files": [
"debug/*.js",
"helpers.js",
"index.js",
"Owner.js"
],
"scripts": {
"clean": "rimraf *.tmp *.log* reports",
"lint": "eslint .",
"purge": "npm run clean && rimraf node_modules",
"test": "jest",
"test:coverage": "codecov"
},
"dependencies": {
"assert-fine": "^1.0.3",
"debug": "^4.2.0"
},
"devDependencies": {
"codecov": "^3.8.0",
"eslint": "^7.10.0",
"jest": "^26.5.2",
"rimraf": "^3.0.2"
},
"engines": {
"node": ">=10.15.1"
},
"private": false
}