-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
70 lines (70 loc) · 2.63 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
68
69
70
{
"name": "tab-extensions",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "yarn run lint && jest --env=jsdom",
"build": "npm-run-all -s chromium:build edge:build firefox:build",
"chromium:build": "npm-run-all -s chromium:test chromium:build:no-test",
"chromium:test": "yarn test ./",
"chromium:build:no-test": "NODE_ENV=production node ./scripts/build-chromium.js",
"chromium:develop": "nodemon --watch ./src nodemon -e js,json,html --exec \"yarn run chromium:build:no-test && yarn run chromium:test\"",
"edge:build": "npm-run-all -s edge:test edge:build:no-test",
"edge:test": "yarn test ./",
"edge:build:no-test": "NODE_ENV=production node ./scripts/build-edge.js",
"firefox:build": "npm-run-all -s firefox:test firefox:build:no-test",
"firefox:test": "yarn test ./",
"firefox:build:no-test": "NODE_ENV=production node ./scripts/build-firefox.js",
"firefox:develop": "npm-run-all -p firefox:develop:watch firefox:develop:webext",
"firefox:develop:webext": "sleep 8 && web-ext run --source-dir=./intermediate-builds/firefox/self-hosted",
"firefox:develop:watch": "nodemon --watch ./src -e js,json,html --exec \"yarn run firefox:build:no-test && yarn run firefox:test\"",
"opera:build": "npm-run-all -s opera:test opera:build:no-test",
"opera:test": "yarn test ./",
"opera:build:no-test": "NODE_ENV=production node ./scripts/build-opera.js",
"lint": "standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gladly-team/tab-extensions.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/gladly-team/tab-extensions/issues"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"setupTestFrameworkScriptFile": "<rootDir>/src/setupTests.js",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>[/\\\\](build|docs|node_modules)[/\\\\]"
],
"testURL": "http://localhost",
"transform": {
"^.+\\.(js|jsx)$": "<rootDir>/node_modules/babel-jest"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
]
},
"homepage": "https://github.com/gladly-team/tab-extensions#readme",
"devDependencies": {
"archiver": "^2.1.1",
"babel-core": "^6.26.3",
"babel-jest": "^23.4.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"fs-extra": "^7.0.0",
"html-webpack-plugin": "^2.30.1",
"jest": "^23.4.2",
"json": "^10.0.0",
"nodemon": "^1.18.3",
"npm-run-all": "^4.1.3",
"standard": "^11.0.1",
"web-ext": "^6.0.0",
"webpack": "^3.6.0"
}
}