-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
34 lines (34 loc) · 1023 Bytes
/
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
{
"name": "@duckduckgo/privacy-configuration",
"version": "1.0.0",
"description": "Build scripts and generated files for privacy feature configuration",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run tsc && npm run build && npm run unit-tests",
"lint": "eslint . && prettier . --check",
"lint-fix": "eslint . --fix && prettier . --write",
"tsc": "tsc",
"tsc-watch": "tsc --watch",
"unit-tests": "mocha ./tests/**/*.js",
"build": "node index.js",
"format": "prettier . --write"
},
"author": "DuckDuckGo",
"license": "Apache 2.0",
"devDependencies": {
"@duckduckgo/eslint-config": "github:duckduckgo/eslint-config#v0.1.0",
"ajv": "^8.17.1",
"chai": "^4.3.4",
"diff": "^7.0.0",
"eslint": "^9.15.0",
"immutable-json-patch": "^6.0.1",
"mocha": "^10.8.2",
"prettier": "3.3.3",
"ts-json-schema-generator": "^2.3.0",
"typescript": "^5.6.3"
},
"dependencies": {
"node-fetch": "^3.3.2",
"tldts": "^6.1.61"
}
}