-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 752 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "speedmaster-extension",
"version": "1.0.1",
"private": true,
"type": "module",
"scripts": {
"build": "webpack --mode production",
"build:extension": "npm run build",
"build:watch": "webpack --mode development --watch",
"build:zip": "npm run build && cd dist && zip -r ../speedmaster-extension-v$npm_package_version.zip .",
"test:extension": "playwright test --config test/playwright.config.js"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"@playwright/test": "^1.39.0"
},
"repository": "git@github.com:barretlee/speedmaster.git"
}