forked from mozmeao/trafficcop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.79 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": "@mozmeao/trafficcop",
"version": "3.0.0",
"private": true,
"description": "A/B testing framework from the fine folks working on mozilla.org",
"homepage": "https://github.com/mozmeao/trafficcop",
"main": "dist/index.js",
"directories": {
"test": "./tests"
},
"scripts": {
"lint": "npm run prettier && npx eslint .",
"prebuild": "npm run lint",
"build": "webpack --mode production --config webpack.config.js",
"prettier": "prettier --write .",
"prepublishOnly": "npm run build",
"pretest": "npm run build && npm run test-build",
"test-build": "webpack --config webpack.test.config.js --mode=development",
"test": "./node_modules/jasmine-browser-runner/bin/jasmine-browser-runner runSpecs --config=tests/jasmine-browser.json && ./node_modules/jasmine-browser-runner/bin/jasmine-browser-runner runSpecs --browser=chrome --config=tests/jasmine-browser.json",
"readme": "doctoc --title \"### Contents\" --maxlevel 2 docs/README.md"
},
"repository": {
"type": "git",
"url": "https://github.com/mozmeao/trafficcop.git"
},
"author": "Mozilla",
"license": "MPL-2.0",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"babel-loader": "^9.2.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"doctoc": "^2.2.1",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"jasmine-browser-runner": "^2.5.0",
"jasmine-core": "^5.3.0",
"prettier": "^3.3.3",
"sinon": "^19.0.2",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"browserslist": [
"defaults",
"IE 8"
]
}