forked from messageformat/messageformat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.53 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 3.53 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "messageformat-monorepo",
"description": "Messageformat monorepo",
"private": true,
"license": "MIT",
"homepage": "https://messageformat.github.io/",
"repository": "messageformat/messageformat",
"directories": {
"doc": "docs",
"example": "example"
},
"workspaces": [
"packages/test-utils",
"packages/cli",
"packages/convert",
"packages/date-skeleton",
"packages/number-skeleton",
"packages/parser",
"packages/mf2-messageformat",
"packages/mf2-fluent",
"packages/mf2-icu-mf1",
"packages/mf2-xliff",
"packages/react",
"packages/runtime",
"packages/core",
"packages/rollup-plugin",
"packages/webpack-loader"
],
"scripts": {
"clean": "git clean -fdx -e node_modules -e config/husky/_",
"build": "npm run build --workspaces --if-present",
"build:mf2": "npm run build -w packages/mf2-messageformat -w packages/mf2-fluent -w packages/mf2-icu-mf1 -w packages/mf2-xliff",
"predocs": "npm run extract-api --workspaces --if-present",
"docs": "api-documenter markdown -i tmp/ -o docs/api/",
"postdocs": "node scripts/set-api-docs-frontmatter docs/api/",
"lint": "eslint '**/*.{js,ts,tsx}'",
"prettier": "prettier --write .",
"start": "node -i -r ./scripts/start.js",
"prepare": "husky install config/husky",
"pretest:browsers": "cd test && rollup -c",
"test:browsers": "mocha --parallel --jobs 5 --require test/browser/browserstack-fixtures.js --timeout 120000 test/browser/tests/",
"test:chrome": "npm run pretest:browsers && mocha-selenium-bridge -b chrome test/browser/test.html",
"test:firefox": "npm run pretest:browsers && mocha-selenium-bridge -b firefox test/browser/test.html",
"test:serve": "npm run pretest:browsers && serve",
"test": "jest --coverage"
},
"prettier": {
"arrowParens": "avoid",
"singleQuote": true,
"trailingComma": "none"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@microsoft/api-documenter": "^7.11.0",
"@microsoft/api-extractor": "^7.12.0",
"@rollup/plugin-alias": "^4.0.0",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-commonjs": "^23.0.1",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^9.0.1",
"@types/chai": "^4.2.14",
"@types/jest": "^29.2.0",
"@types/moo": "^0.5.3",
"@types/react": "^18.0.0",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"babel-eslint": "^10.0.2",
"babel-jest": "^29.2.1",
"babel-plugin-const-enum": "^1.0.1",
"browserstack-local": "^1.4.8",
"chai": "^4.2.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.1.0",
"husky": "^8.0.1",
"intl-list-format": "^1.0.3",
"jest": "^29.2.1",
"jest-ts-webcompat-resolver": "^1.0.0",
"lodash.merge": "^4.6.2",
"memfs": "^3.2.0",
"mocha": "^10.1.0",
"mocha-selenium-bridge": "^0.3.0",
"prettier": "^2.2.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-test-renderer": "^18.0.0",
"rimraf": "^3.0.2",
"rollup": "^3.2.3",
"selenium-webdriver": "4.4.0",
"serve": "^14.0.1",
"serve-handler": "^6.1.3",
"tmp-promise": "^3.0.2",
"tslib": "^2.0.3",
"typescript": "^4.6.2"
}
}