-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
52 lines (52 loc) · 1.45 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
{
"name": "netlify-plugin-chromium",
"version": "1.1.4",
"description": "Netlify Build Plugin for adding Chromium to Netlify CI/CD pipeline",
"keywords": [
"netlify",
"plugin",
"netlify-plugin",
"netlify plugin",
"netlify build plugin",
"chrome",
"netlify chrome plugin",
"netlify chrome build plugin",
"chromium",
"netlify chromium plugin",
"netlify chromium build plugin"
],
"author": "Jakub Sowiński <mail@jakubsowinski.com> (https://jakubsowinski.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/soofka/netlify-plugin-chromium.git"
},
"bugs": {
"url": "https://github.com/soofka/netlify-plugin-chromium/issues"
},
"homepage": "https://github.com/soofka/netlify-plugin-chromium#readme",
"main": "index.js",
"files": [
"index.js",
"manifest.yml"
],
"scripts": {
"build": "rimraf index.js && rollup src/index.js --file index.js --format cjs",
"test": "jest --config jestconfig.json",
"test:coverage": "npm run test -- --coverage | coveralls",
"release": "standard-version",
"prepublishOnly": "npm run test && npm run build"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-jest": "^25.5.1",
"coveralls": "^3.1.0",
"jest": "^25.5.0",
"rimraf": "^3.0.2",
"rollup": "^2.7.3",
"standard-version": "^8.0.1",
"yamljs": "^0.3.0"
},
"dependencies": {}
}