forked from mozilla/pontoon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.31 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
{
"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.12.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mozilla/pontoon.git"
},
"author": "Mozilla",
"license": "BSD",
"scripts": {
"test": "jest",
"build": "webpack",
"build-w": "webpack -w",
"heroku-postbuild": "echo Build is taken care of in ./bin/post_compile"
},
"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": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.5.5",
"babel-eslint": "^8.2.6",
"babel-loader": "^8.0.6",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"css-loader": "^3.1.0",
"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": "^24.8.0",
"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",
"webpack": "^4.36.1",
"webpack-bundle-tracker": "^0.4.2-beta",
"webpack-cli": "^3.1.1",
"yuglify": "^2.0.0"
}
}