generated from chibat/chrome-extension-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.2 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
{
"name": "licenseplate",
"version": "0.3.4",
"description": "Browser extension to get early warnings when facing insufficiently licensed code.",
"main": "index.js",
"scripts": {
"watch": "webpack --config webpack/webpack.dev.js --watch",
"build": "webpack --config webpack/webpack.prod.js",
"clean": "rimraf dist",
"test": "npx jest",
"build-test": "npm build & npm test",
"style": "prettier --write \"src/**/*.{ts}\"",
"gen-licenses": "rimraf .temp && tsc --outDir .temp/codegen-js ./src/__codegen__/genLicenses.ts && node .temp/codegen-js/__codegen__/genLicenses.js && rimraf .temp"
},
"author": "Michael Weiss",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/miweiss/licenseplate.git"
},
"devDependencies": {
"@types/chrome": "0.0.154",
"@types/jest": "^27.0.2",
"@types/node": "^16.4.13",
"copy-webpack-plugin": "^9.0.1",
"front-matter": "4.0.2",
"glob": "^7.2.0",
"jest": "^27.3.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2 ",
"ts-jest": "^27.0.4",
"ts-loader": "^9.2.5",
"typescript": "^4.4.4",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.0",
"webpack-merge": "^5.8.0"
}
}