forked from projectfluent/fluent.js
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.47 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
51
52
53
{
"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 --workspaces",
"clean": "git clean -fdxe node_modules fluent-*/{coverage,dist,esm,index.js} html",
"deploy-html": "gh-pages -d html",
"lint": "eslint --max-warnings 0 'fluent-*/{src,test}/**/*.{js,ts}'",
"prettier": "prettier --write .",
"test:common": "c8 mocha 'fluent-*/test/*_test.js'",
"test": "npm run test:common && npm test -w fluent-dom && npm test -w fluent-react"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=7.0.0"
},
"prettier": {
"arrowParens": "avoid"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"c8": "^7.7.3",
"colors": "^1.3.3",
"commander": "^2.20",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-mocha": "^9.0.0",
"esm": "^3.2.22",
"fuzzer": "^0.2.1",
"gh-pages": "^3.2.3",
"intl-pluralrules": "^1.0.0",
"mocha": "^9.0.2",
"prettier": "^2.6.2",
"prettyjson": "^1.2.1",
"rollup": "^2.56.3",
"sinon": "^13.0.2",
"typedoc": "^0.22.3",
"typescript": "^4.4.3"
}
}