forked from duckduckgo/privacy-configuration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 804 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
{
"name": "config-builder",
"version": "1.0.0",
"description": "Build scripts and generated files for privacy feature configuration",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run build && npm run unit-tests",
"lint": "eslint .",
"unit-tests": "mocha ./tests/**/*.js",
"build": "node index.js",
"format": "node format.js"
},
"author": "DuckDuckGo",
"license": "Apache 2.0",
"devDependencies": {
"ajv": "^8.6.3",
"chai": "^4.3.4",
"diff": "^5.1.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"mocha": "^9.2.2"
},
"dependencies": {
"node-fetch": "^3.2.10",
"tldts": "^5.7.91"
}
}