-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
49 lines (49 loc) · 1.58 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
{
"name": "@duckduckgo/content-scope-scripts",
"license": "Apache-2.0",
"files": [
"**/*",
"build/",
"Sources/ContentScopeScripts/dist/"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"test-unit": "npm run test-unit --workspaces --if-present",
"test-int": "npm run test-int --workspaces --if-present",
"test-int-x": "npm run test-int-x --workspaces --if-present",
"test-clean-tree": "npm run build && sh scripts/check-for-changes.sh",
"docs": "typedoc",
"docs-watch": "typedoc --watch",
"tsc": "tsc",
"tsc-watch": "tsc --watch",
"lint": "eslint . && npm run tsc",
"postlint": "npm run lint --workspaces --if-present",
"lint-fix": "eslint . --fix && npm run tsc",
"stylelint": "npx stylelint \"**/*.css\"",
"stylelint-fix": "npx stylelint \"**/*.css\" --fix",
"serve": "http-server -c-1 --port 3220 integration-test/test-pages",
"serve-special-pages": "http-server -c-1 --port 3221 build/integration/pages"
},
"type": "module",
"workspaces": [
"injected",
"special-pages",
"messaging",
"types-generator"
],
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.9.1",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"stylelint": "^15.11.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-csstree-validator": "^3.0.0",
"minimist": "^1.2.8",
"typedoc": "^0.26.10",
"typescript": "^5.6.3"
}
}