forked from ghostery/ghostery-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "ghostery-extension",
"version": "0.0.0",
"title": "Ghostery",
"author": {
"name": "Ghostery, Inc",
"email": "[email protected]",
"url": "https://www.ghostery.com"
},
"license": "MPL-2.0",
"main": "webpack.config.js",
"scripts": {
"build.dev": "webpack --mode development --display-error-details --progress --env.dev",
"build.prod": "webpack --mode production --display-error-details --progress --env.prod",
"build.watch": "webpack --mode development --display-error-details --progress --verbose --watch --env.dev --env.watch",
"prebuild.dev": "node ./tools/licenses/fetchLicenses.js",
"prebuild.prod": "node ./tools/licenses/fetchLicenses.js",
"prebuild.watch": "node ./tools/licenses/fetchLicenses.js",
"test.unit": "cross-env BABEL_ENV=test jest",
"lint": "eslint --ext .js,.jsx ./app ./src",
"lint.fix": "eslint --ext .js,.jsx ./app ./src --fix",
"lint.raw": "eslint --ext .js,.jsx",
"docs": "jsdoc -c jsdoc.json -d docs -r",
"leet": "node ./tools/leet/leet-en.js",
"leet.reset": "node ./tools/leet/leet-reset.js",
"postinstall": "vendor-copy"
},
"vendorCopy": [
{
"from": "node_modules/browser-core/build/assets",
"to": "cliqz"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/ghostery/ghostery-extension.git"
},
"bugs": {
"url": "https://github.com/ghostery/ghostery-extension/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/ghostery/ghostery-extension#readme",
"dependencies": {
"base64-js": "^1.2.1",
"browser-core": "https://s3.amazonaws.com/cdncliqz/update/edge/ghostery/v7.28/7.28.6.9ef28d1.tgz",
"classnames": "^2.2.5",
"d3": "^4.13.0",
"d3-scale": "^1.0.6",
"foundation-sites": "^6.4.4-rc1",
"history": "^4.7.2",
"json-api-normalizer": "^0.4.10",
"moment": "^2.19.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"react-remarkable": "^1.1.3",
"react-router-dom": "^4.2.2",
"react-shadow": "^16.2.0",
"redux": "^3.7.2",
"redux-object": "^0.5.6",
"redux-thunk": "^2.2.0",
"rsvp": "^4.8.3",
"spanan": "^2.0.0",
"ua-parser-js": "^0.7.17",
"underscore": "^1.8.3",
"url-search-params": "^0.10.2",
"whatwg-fetch": "^2.0.4"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"clean-webpack-plugin": "^0.1.16",
"cross-env": "^5.1.3",
"css-loader": "^0.28.7",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.17.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.1.0",
"eslint-plugin-react": "^7.6.1",
"fs-extra": "^4.0.3",
"glob": "^7.1.2",
"html-loader": "^0.5.1",
"jest": "^22.1.4",
"jsdoc": "^3.5.5",
"jsonfile": "^4.0.0",
"license-checker": "^15.0.0",
"markdown-extract": "^1.0.2",
"mini-css-extract-plugin": "^0.4.1",
"node-sass": "^4.9.1",
"oboe": "^2.1.3",
"path": "^0.12.7",
"react-router": "^4.2.0",
"react-test-renderer": "^16.2.0",
"read-file": "^0.2.0",
"redux-mock-store": "^1.5.1",
"sass-loader": "^6.0.6",
"seamless-immutable": "^7.1.3",
"sinon": "^4.2.2",
"sinon-chrome": "^2.2.1",
"style-loader": "^0.19.0",
"svg-url-loader": "^2.2.1",
"url-loader": "^0.6.2",
"vendor-copy": "^1.3.1",
"webpack": "^4.15.1",
"webpack-cli": "^2.1.5",
"webpack-shell-plugin": "^0.5.0"
}
}