forked from brave/brave-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 3.75 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "brave-core",
"version": "0.53.4",
"description": "Brave Core is a set of changes, APIs, and scripts used for customizing Chromium to make Brave.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "tslint --project tsconfig.json 'components/**/*.{ts,tsx}'",
"web-ui": "webpack --config components/webpack/prod.config.js --progress --profile --colors",
"web-ui-dev": "webpack --config components/webpack/dev.config.js --progress --profile --colors",
"test-unit": "jest -t",
"test-security": "npm audit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brave/brave-core.git"
},
"author": {
"name": "Brave Software <[email protected]>"
},
"contributors": [
{
"name": "Brian R. Bondy",
"email": "[email protected]"
},
{
"name": "Cezar Augusto",
"email": "[email protected]"
},
{
"name": "Nejc Zdovc",
"email": "[email protected]"
}
],
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/brave/brave-browser/issues"
},
"homepage": "https:/github.com/brave/brave-core#readme",
"jest": {
"moduleFileExtensions": [
"js",
"tsx",
"ts",
"json"
],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"resetMocks": true,
"resetModules": true,
"collectCoverage": true,
"collectCoverageFrom": [
"<rootDir>/components/**/**/*.{ts, tsx}",
"!<rootDir>/components/definitions/*",
"!<rootDir>/components/**/constants/*",
"!<rootDir>/components/**/reducers/index.ts",
"!<rootDir>/components/**/store.ts",
"!<rootDir>/components/test/*"
],
"testEnvironment": "node",
"testURL": "http://localhost/",
"testMatch": [
"<rootDir>/components/test/**/**/?(*_)(test).{ts,tsx}"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
],
"setupTestFrameworkScriptFile": "<rootDir>/components/test/testSetup.ts",
"setupFiles": [
"<rootDir>/components/test/testPolyfills.ts"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|svg|ttf|woff|woff2)$": "<rootDir>/components/test/fileMock.ts",
"\\.(css)$": "identity-obj-proxy"
}
},
"devDependencies": {
"@types/chrome": "0.0.69",
"@types/enzyme": "^3.1.12",
"@types/enzyme-adapter-react-16": "^1.0.2",
"@types/jest": "^23.3.0",
"@types/react": "^16.0.26",
"@types/react-dnd": "^2.0.36",
"@types/react-dom": "^16.0.3",
"@types/react-redux": "6.0.4",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-0": "^6.24.1",
"brave-ui": "^0.20.2",
"csstype": "^2.5.5",
"css-loader": "^0.28.9",
"file-loader": "^1.1.6",
"font-awesome": "^4.7.0",
"emptykit.css": "^1.0.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.4.1",
"less": "^3.7.1",
"less-loader": "^4.0.5",
"style-loader": "^0.19.1",
"react": "^16.2.0",
"react-dnd": "^5.0.0",
"react-dnd-html5-backend": "^5.0.1",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"redux": "^4.0.0",
"tslint": "^5.8.0",
"ts-loader": "^4.4.2",
"ts-jest": "^23.0.1",
"tslint-config-standard": "^7.0.0",
"tslint-react": "^3.2.0",
"typesafe-actions": "^2.0.4",
"typescript": "^2.8.1",
"url-loader": "^0.6.2",
"webpack": "^4.16.0",
"webpack-cli": "^3.0.8"
}
}