-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.19 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.19 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
{
"name": "fluent-javascript",
"private": true,
"workspaces": [
"./fluent-dedent",
"./fluent-bundle",
"./fluent-sequence",
"./fluent-dom",
"./fluent-langneg",
"./fluent-react",
"./fluent-syntax",
"./fluent-gecko"
],
"scripts": {
"predist": "npm run clean",
"dist": "npm run build --workspaces",
"postdist": "npm run lint && npm run test && npm run docs",
"clean": "git clean -fdxe node_modules fluent-*/{coverage,dist,esm,index.js} html",
"deploy-html": "gh-pages -d html",
"docs": "typedoc",
"lint": "eslint --max-warnings 0",
"prettier": "prettier --write .",
"test": "vitest run"
},
"prettier": {
"arrowParens": "avoid",
"trailingComma": "es5"
},
"devDependencies": {
"colors": "^1.3.3",
"commander": "^2.20",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"fuzzer": "^0.2.1",
"gh-pages": "^6.1.1",
"globals": "^16.0.0",
"jsdom": "^27.4.0",
"prettier": "^3.2.5",
"prettyjson": "^1.2.1",
"rollup": "^4.12.0",
"typedoc": "^0.28.1",
"typedoc-plugin-redirect": "^1.2.0",
"typescript": "^5.3.3",
"typescript-eslint": "^8.27.0",
"vitest": "^4.0.16"
}
}