forked from mozilla/pontoon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.39 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
{
"name": "pontoon",
"version": "0.1.0",
"description": "Mozilla in-place localization tool.",
"private": true,
"browserslist": [
"Firefox >= 52",
"FirefoxAndroid >= 52",
"Chrome >= 55",
"ChromeAndroid >= 55",
"Edge >= 15",
"Safari >= 10.1",
"iOS >= 10.3"
],
"dependencies": {
"fluent-syntax": "^0.9.0"
},
"engines": {
"node": "9.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mozilla/pontoon.git"
},
"author": "Mozilla",
"license": "BSD",
"scripts": {
"test": "jest",
"build": "webpack",
"build-w": "webpack -w"
},
"jest": {
"testMatch": [
"**/tests/js/**/*.js?(x)"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/tests/js/__setup__"
],
"testURL": "https://nowhere.com/at/all",
"modulePaths": [
"<rootDir>/pontoon/static/js",
"<rootDir>/static/placeholder"
],
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy"
},
"setupFiles": [
"./tests/js/__setup__"
],
"collectCoverage": true,
"collectCoverageFrom": [
"**/static/placeholder/**/*.{js,jsx}",
"**/pontoon/**/static/**/*.{js,jsx}",
"**/tests/js/**/*.{js,jsx}",
"!static/*",
"!**/*.min.js",
"!**/js/lib/**/*.js"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-uglify": "^1.0.2",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.28.11",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.10.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.4.4",
"jsdom": "^11.12.0",
"mini-css-extract-plugin": "^0.4.1",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-table": "^6.8.6",
"react-test-renderer": "^16.4.2",
"request": "^2.87.0",
"style-loader": "^0.19.1",
"sync-exec": "^0.6.2",
"webpack": "^4.16.5",
"webpack-bundle-tracker": "^0.3.0",
"webpack-cli": "^2.1.5",
"yuglify": "^2.0.0"
}
}