-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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
{
"name": "@duckduckgo/pixel-schema",
"version": "1.0.5",
"files": [
"bin",
"schemas",
"src"
],
"bin": {
"validate-ddg-pixel-defs": "./bin/validate_schema.mjs",
"validate-ddg-live-pixel": "./bin/validate_live_pixel.mjs"
},
"scripts": {
"test": "mocha ./tests/**/*.mjs",
"test.coverage": "c8 mocha ./tests/**/*.mjs",
"lint": "eslint . && prettier . --check",
"lint.fix": "eslint . --fix && prettier . --write",
"validate-ddg-pixel-defs": "node ./bin/validate_schema.mjs",
"validate-ddg-live-pixel": "node ./bin/validate_live_pixel.mjs"
},
"license": "Apache-2.0",
"devDependencies": {
"@duckduckgo/eslint-config": "github:duckduckgo/eslint-config#v0.1.0",
"c8": "^10.1.2",
"chai": "^4.3.4",
"mocha": "^9.2.2",
"prettier": "^3.3.3"
},
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"eslint": "^9.14.0",
"json5": "^2.2.3",
"yargs": "^17.7.2"
},
"prettier": {
"singleQuote": true,
"printWidth": 140,
"tabWidth": 4,
"overrides": [
{
"files": "*.json5",
"options": {
"parser": "json",
"tabWidth": 4
}
}
]
}
}