forked from tracking-exposed/web-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 3.08 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
{
"name": "tracking-exposed-extension",
"version": "1.1.15",
"description": "tracking.exposed is browser extension to investigate personalization algorithms, for you and for scientific research (only if you give the proper opt-in, of course)",
"homepage": "https://github.com/tracking-exposed/web-extension/",
"bugs": "https://github.com/tracking-exposed/web-extension/issues",
"license": "GPL-3.0",
"author": "Alberto Granzotto, Claudio Agosti",
"repository": {
"type": "git",
"url": "git+https://github.com/tracking-exposed/facebook.git"
},
"scripts": {
"lint": "eslint ./",
"build": "rimraf ./build && cross-env webpack && cp -r popup.html manifest.json icons/* _locales/ ./build/",
"start": "npm run build:watch:files",
"build:watch": "cross-env node dev-server.js",
"build:watch:files": "rimraf ./build && mkdir build && cp -r manifest.json icons/* _locales/ popup.html ./build/ && cross-env webpack -w",
"build:dist": "./pack-extension.sh || true",
"clean": "rimraf ./build ./dist",
"test": "mocha --compilers js:babel-register --reporter spec",
"test:watch": "mocha -w --compilers js:babel-register --reporter spec",
"docs": "rimraf ./docs && ./build-docs.sh"
},
"devDependencies": {
"autoprefixer": "^6.4.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-react-display-name": "^6.8.0",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-no-commonjs": "0.0.2",
"babel-preset-react": "^6.11.1",
"babel-register": "^6.26.0",
"babel-runtime": "^6.11.6",
"chai": "^3.5.0",
"cross-env": "^2.0.0",
"css-loader": "^0.23.1",
"docco": "^0.7.0",
"dotenv": "^2.0.0",
"eslint": "^3.3.1",
"eslint-config-ascribe-react": "^1.4.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-react": "^6.1.2",
"eslint-plugin-standard": "^2.0.0",
"extract-text-webpack-plugin": "=2.0.0-beta.1",
"glob": "^7.1.1",
"mocha": "^5.2.0",
"node-sass": "^4.9.2",
"postcss-loader": "^0.10.1",
"react-transform-hmr": "^1.0.4",
"rimraf": "^2.5.4",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webpack": "=2.1.0-beta.17",
"webpack-combine-loaders": "^2.0.0",
"webpack-dev-server": "^3.1.4",
"webpack-notifier": "^1.5.0",
"write-file-webpack-plugin": "^3.3.0"
},
"dependencies": {
"arrive": "^2.3.1",
"bs58": "^3.0.0",
"cheerio": "^0.22.0",
"classnames": "^2.2.5",
"core-js": "^2.4.1",
"immutability-helper": "^2.1.1",
"jquery": "^3.1.0",
"lodash": "^4.17.10",
"marked": "^0.4.0",
"material-ui": "^0.16.7",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"tweetnacl": "^0.14.3",
"tweetnacl-util": "^0.13.3",
"uuid": "^2.0.3"
}
}