-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.7 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "tab-tower",
"title": "Tab Tower",
"description": "Advanced browser tabs manager.",
"author": "Stephen Berquet",
"version": "0.12.1",
"main": "dist/src/main.js",
"license": "MIT",
"devDependencies": {
"@types/archiver": "^3.0.0",
"@types/cucumber": "^6.0.0",
"@types/detect-browser": "^4.0.0",
"@types/express": "^4.16.0",
"@types/fs-extra": "^8.0.1",
"@types/selenium-webdriver": "^4.0.5",
"@types/semver": "^6.2.0",
"@types/uuid": "^3.4.3",
"@types/websocket": "^1.0.0",
"@types/which": "^1.3.1",
"archiver": "^3.1.1",
"awesome-typescript-loader": "^5.2.1",
"child-process-promise": "^2.2.1",
"concurrently": "^5.0.0",
"cucumber": "^6.0.5",
"express": "^4.16.3",
"fs-extra": "^8.1.0",
"node-sass": "^4.13.0",
"sass-lint": "^1.12.1",
"selenium-webdriver": "^4.0.0-alpha.5",
"semver": "^6.3.0",
"ts-node": "^8.5.0",
"tslint": "^5.10.0",
"typescript": "^3.7.2",
"web-ext": "^3.2.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"websocket": "^1.0.26",
"which": "^2.0.1"
},
"scripts": {
"start": "web-ext run --ignore-files='**/*' -f firefox-developer-edition --bc",
"prebuild-extension:firefox": "node bin/clean.js && yarn build && tsc -p tsconfig.bin.json",
"build-extension:firefox": "node ./dist/bin/build-extension.js",
"build": "yarn build:ts && yarn build:sass",
"build:ts": "webpack",
"build:sass": "node-sass src/scss/ui.scss dist/css/ui.css --source-map true",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Sass\" \"yarn watch:ts\" \"yarn watch:sass\"",
"watch:ts": "webpack --watch",
"watch:sass": "yarn build:sass && node-sass -w src/scss/ui.scss dist/css/ui.css --source-map true",
"lint": "yarn lint:ts && yarn lint:sass",
"lint:ts": "tslint -p tsconfig.json",
"lint:sass": "sass-lint -v -q",
"pretest": "NODE_ENV=test yarn build-extension:firefox",
"pretest:rerun": "NODE_ENV=test yarn build-extension:firefox",
"test": "yarn test:functional",
"test:rerun": "yarn test:functional:rerun",
"test:functional": "TS_NODE_PROJECT=tsconfig.test.json TS_NODE_FILES=1 cucumber-js -r 'tests/features/ui-small/**/*.ts' -f progress-bar -f summary:functional-tests.log -f rerun:@failed-scenarios --require-module ts-node/register tests/features/ui-small",
"test:functional:rerun": "TS_NODE_PROJECT=tsconfig.test.json TS_NODE_FILES=1 cucumber-js -r 'tests/features/ui-small/**/*.ts' -f progress-bar --require-module ts-node/register @failed-scenarios"
},
"dependencies": {
"@types/node": "^12.12.7",
"datauri": "^2.0.0",
"detect-browser": "^4.8.0",
"material-design-icons": "^3.0.1",
"uuid": "^3.2.1"
}
}