forked from format-message/format-message
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.1 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.1 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
{
"name": "format-message",
"private": true,
"scripts": {
"benchmark": "node scripts/benchmark.js",
"cldr": "node scripts/cldr.js",
"flow": "flow check",
"lerna": "lerna",
"postinstall": "node scripts/cldr.js",
"prebenchmark": "format-message transform -i scripts/benchmark.src.js > scripts/benchmark.js",
"pretest": "rm -rf test/inline && format-message transform -i packages/format-message/__tests__/index.spec.js > packages/format-message/__tests__/inline.spec.js",
"test": "eslint . && flow check && nyc mocha 'packages/**/*.spec.js' && karma start"
},
"devDependencies": {
"async": "^3.0.1",
"babel-eslint": "^10.0.0",
"benchmark": "^2.1.0",
"chai": "^4.0.1",
"cldr-core": "^34.0.0",
"eslint": "^5.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^9.0.0",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0",
"flow-bin": "^0.102.0",
"inferno": "^5.0.0",
"inferno-create-element": "^5.0.0",
"intl-messageformat": "^4.0.0",
"karma": "^4.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.1.1",
"karma-safari-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^4.0.0",
"lerna": "^3.13.3",
"messageformat": "^2.0.0",
"messageformat-parser": "^4.0.0",
"mkdirp": "^0.5.1",
"mocha": "^6.1.3",
"nyc": "^14.0.0",
"react": "^16.0.0",
"rimraf": "^2.4.3",
"webpack": "^4.0.1"
},
"eslintConfig": {
"globals": {
"Intl": true
},
"extends": [
"standard"
],
"rules": {}
},
"eslintIgnore": [
"**/node_modules",
"coverage",
"flow-typed",
"packages/format-message/__tests__/inline.spec.js",
"packages/format-message-interpret/plurals.js",
"scripts/benchmark.js",
"scripts/cldr.js"
],
"nyc": {
"reporter": [
"html",
"lcov",
"text-summary"
]
},
"version": "5.0.0",
"workspaces": [
"packages/*"
]
}