-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.04 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.04 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
88
{
"name": "@cdot/Collage",
"description": "Image composition",
"version": "0.0.1",
"license": "MIT",
"type": "module",
"author": {
"name": "Crawford Currie",
"url": "https://github.com/cdot"
},
"repository": {
"type": "git",
"url": "git://github.com/cdot/Collage"
},
"bin": {
"collage": "./bin/collage.js"
},
"dependencies": {
"gm": "^1.25.0",
"ncu": "^0.2.1",
"posix-getopt": "^1.2.1",
"tmp-promise": "^3.0.3"
},
"devDependencies": {
"c8": "^10.1.2",
"chai": "^5.1.2",
"eslint": "^9.15.0",
"eslint-plugin-import": "^2.31.0"
},
"scripts": {
"coverage": "NODE_ENV=test c8 --reporter=html --reporter text npm run test",
"lint": "eslint src -f unix",
"test": "mocha --recursive --extension js --timeout=5000 test"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2022
},
"env": {
"shared-node-browser": true,
"jquery": true,
"es2021": true
},
"plugins": [
"import"
],
"rules": {
"camelcase": 0,
"curly": 0,
"dot-notation": 1,
"import/no-unresolved": "error",
"import/named": "error",
"import/namespace": "error",
"import/default": "error",
"import/export": "error",
"import/no-named-as-default": "warn",
"import/no-named-as-default-member": "warn",
"import/no-duplicates": "warn",
"import/first": 0,
"new-cap": 0,
"no-alert": 0,
"no-console": 0,
"no-debugger": 0,
"no-eval": 0,
"no-fallthrough": 0,
"no-global-assign": 0,
"no-loop-func": 1,
"no-mixed-spaces-and-tabs": 0,
"no-new": 0,
"no-prototype-builtins": 0,
"no-redeclare": [
"error",
{
"builtinGlobals": false
}
],
"no-trailing-spaces": 1,
"no-underscore-dangle": 0,
"no-unused-vars": 1,
"no-useless-escape": 1,
"no-use-before-define": 0,
"quotes": 0,
"strict": 0
}
}
}