forked from MiWeiss/licenseplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.22 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
{
"name": "licenseplate",
"version": "0.1.0",
"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"
},
"dependencies": {},
"devDependencies": {
"@types/node": "~15.3.0",
"@types/chrome": "~0.0.100",
"@types/jest": "^25.1.4",
"front-matter": "4.0.2",
"copy-webpack-plugin": "^6.1.0",
"glob": "^7.1.6",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2 ",
"ts-jest": "^25.2.1 ",
"ts-loader": "^6.2.1",
"typescript": "~4.3.2 ",
"webpack": "^4.44.1",
"webpack-cli": "~3.3.11",
"webpack-merge": "~4.2.2"
}
}