This repository has been archived by the owner on Nov 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.62 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
{
"name": "glean",
"version": "0.0.1",
"description": "Pronounced (gleanjas)",
"private": true,
"main": "./dist/glean.js",
"scripts": {
"test": "jest --no-watchman",
"build": "webpack --config webpack.lib.config.js --mode production",
"dev": "webpack --watch --config webpack.lib.config.js --mode development",
"build.node": "webpack --config webpack.node.config.js --mode production",
"dev.node": "webpack --watch --config webpack.node.config.js --mode development",
"build.browser": "webpack --config webpack.browser.config.js --mode production",
"dev.browser": "webpack --watch --config webpack.browser.config.js --mode development",
"build.qml": "webpack --config webpack.qml.config.js --mode production",
"dev.qml": "webpack --watch --config webpack.qml.config.js --mode development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brizental/gleanjs.git"
},
"keywords": [
"telemetry"
],
"author": "The Glean Team <[email protected]>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/brizental/gleanjs/issues"
},
"homepage": "https://github.com/brizental/gleanjs#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"crypto": "^1.0.1",
"jest": "^26.4.2",
"native-ext-loader": "^2.3.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"level": "^6.0.1"
},
"jest": {
"moduleNameMapper": {
"^storage$": "<rootDir>/src/storage/mock.js",
"^session$": "<rootDir>/src/session/browser.js",
"^platform$": "<rootDir>/src/ping_maker/platform/browser.js"
}
}
}