forked from lingui/js-lingui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.03 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
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
{
"private": true,
"version": "2.7.3",
"author": {
"name": "Tomáš Ehrlich",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"test": "cross-env JEST_JUNIT_OUTPUT=results/unit.xml jest -c scripts/jest/config.unit.js --no-cache",
"test:integration": "cross-env JEST_JUNIT_OUTPUT=results/integration.xml jest -c scripts/jest/config.integration.js --no-cache",
"test:all": "yarn test; yarn test:integration",
"watch": "jest -c scripts/jest/config.unit.js --watch",
"watch:integration": "jest -c scripts/jest/config.integration.js --watch",
"flow": "flow",
"lint:eslint": "eslint packages/",
"lint": "yarn lint:eslint; yarn flow",
"prettier": "yarn run lint:eslint --fix",
"release": "node ./scripts/release.js",
"release:build": "node ./scripts/build/",
"release:test": "node ./scripts/test.js"
},
"engines": {
"node": ">=5.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.0",
"babel-plugin-resolver": "^1.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-export-default": "^7.0.0-alpha.20",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-runtime": "^6.26.0",
"chalk": "^2.3.0",
"cross-env": "^5.2.0",
"enzyme": "^3.5.0",
"enzyme-adapter-react-16": "^1.3.0",
"enzyme-to-json": "^3.3.4",
"eslint": "^5.4.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.22.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-react": "^7.11.1",
"filesize": "^3.5.11",
"flow-bin": "^0.79.1",
"flow-copy-source": "^2.0.2",
"fs-extra": "^7.0.0",
"full-icu": "^1.2.1",
"glob": "^7.1.2",
"gzip-size": "^5.0.0",
"jest": "^23.5.0",
"jest-junit": "^5.1.0",
"jest-serializer-html": "^5.0.0",
"memory-fs": "^0.4.1",
"mock-fs": "^4.6.0",
"ncp": "^2.0.0",
"nixt": "^0.5.0",
"node-emoji": "^1.6.1",
"ora": "^3.0.0",
"prettier": "^1.14.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"regenerator-runtime": "^0.12.1",
"rimraf": "^2.6.1",
"rollup": "^0.65.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-closure-compiler-js": "^1.0.6",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-prettier": "^0.4.0",
"rollup-plugin-replace": "^2.0.0",
"strip-ansi": "^4.0.0",
"targz": "^1.0.1",
"tmp": "^0.0.33",
"webpack": "^4.17.1"
},
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/lingui/js-lingui.git"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/js-lingui"
}
}