-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.03 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.03 KB
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
{
"version": "1.1.0",
"name": "gerrit-fe-dev-helper",
"license": "MIT",
"dependencies": {
"lit": "^3.0.0"
},
"devDependencies": {
"@types/chrome": "0.0.224",
"ts-loader": "^9.4.2",
"typescript": "^4.7.2",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1"
},
"description": "Dev helper for gerrit fe development",
"scripts": {
"assets:html": "cp src/*.html dist",
"assets:json": "cp src/*.json dist",
"assets:image": "cp src/*.png dist",
"assets": "npm run assets:html && npm run assets:json && npm run assets:image",
"zip": "cd dist && zip gerrit_fe_dev_helper.zip -r ./* && mv gerrit_fe_dev_helper.zip ../",
"webpack": "webpack --config webpack/webpack.config.js",
"build": "npm run clean && mkdir -p dist && npm run webpack && npm run assets && npm run zip",
"clean": "rm -rf dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "taoalpha@google.com",
"contributors": [
{
"name": "Ben Rohlfs",
"email": "brohlfs@google.com"
}
]
}