forked from conorgil/2fa-notifier
-
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 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1 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": "2FA_Notifier",
"version": "v0.7.0",
"scripts": {
"clean": "rm -rf src/extension/generatedJS/*",
"prebuild": "npm run clean",
"build": "npm run webpack",
"watch": "npm run webpack -- -w",
"webpack": "webpack --display-error-details --progress --colors",
"ff": "web-ext run -s src/extension",
"typescript": "tsc",
"prerelease": "npm run build",
"release": "cd src/extension && zip -r ../../releases/2FAN_NEXT.zip *",
"test": "npm run test-ts && npm run test-js",
"test-ts": "mocha --require ts-node/register src/**/*.test.ts",
"test-js": "mocha src/**/*.test.js"
},
"devDependencies": {
"@types/chai": "^4.0.8",
"@types/jquery": "^3.3.1",
"@types/mocha": "^5.0.0",
"awesome-typescript-loader": "4.0.1",
"chai": "^4.1.2",
"jquery": "^3.3.1",
"mocha": "^5.0.5",
"ts-node": "^5.0.1",
"tslint": "^5.8.0",
"typescript": "^2.6.1",
"web-ext": "^2.3.2",
"webextension-polyfill-ts": "^0.8.3",
"webpack": "3.10.0"
}
}