-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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
{
"name": "linkedin-profile-filter",
"version": "0.10.0",
"description": "Profile Filter for LinkedIn",
"main": "background.js",
"scripts": {
"lint:js": "eslint ./**/*.js",
"build": "rollup -c",
"build:prod": "rollup -c && zip -vr linkedin-profile-filter.zip _build -x '*.DS_Store'",
"test": "gulp test"
},
"author": "Aiden Keating <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"babel-loader": "^8.0.6",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3",
"glob": "^7.1.4",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-csso": "^3.0.1",
"gulp-htmlmin": "^5.0.1",
"gulp-tape": "^1.0.0",
"gulp-zip": "^5.0.0",
"jsdom": "^15.1.1",
"rollup-plugin-copy": "^3.3.0",
"tape": "^4.13.2",
"tape-async": "^2.3.0",
"tape-promise": "^4.0.0",
"webpack-cli": "^3.3.11",
"webpack-stream": "^5.2.1"
},
"dependencies": {
"@babel/runtime": "^7.4.5",
"@rollup/plugin-json": "^4.0.2",
"browserify": "^16.5.0",
"global": "^4.4.0"
}
}