-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.16 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
{
"name": "iban-generator-chrome-extension",
"version": "0.0.5",
"description": "Generate random IBAN and copied to clipboard",
"main": "index.js",
"scripts": {
"copy": "cpy manifest.json dist && cpy src/static-content dist/static-content",
"clean": "rm -rf dist && yarn run copy",
"build": "set NODE_ENV=production& webpack --config webpack.config.js",
"prebuild": "yarn run clean",
"watch": "set NODE_ENV=production& webpack --config webpack.config.js --watch",
"prewatch": "yarn run clean",
"zip": "yarn run lint && yarn run build && rm -rf iban-generator.zip && bestzip iban-generator.zip dist/*",
"lint": "eslint --ext .js,.ts ./src/"
},
"author": "Zaid Chauhan",
"license": "MIT",
"devDependencies": {
"@types/chrome": "0.0.91",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"bestzip": "^2.1.7",
"cpy-cli": "^2.0.0",
"eslint": "^6.7.2",
"eslint-config-airbnb-typescript": "^6.3.1",
"eslint-plugin-import": "^2.18.2",
"npm-run-all": "^4.1.5",
"ts-loader": "^6.2.1",
"typescript": "^3.6.4",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9"
}
}