-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
113 lines (113 loc) · 3.5 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
{
"name": "trackingtransparency",
"version": "1.0.0",
"description": "Provides information about online tracking",
"scripts": {
"build": "webpack --progress --config webpack.dev.js",
"build:prod": "webpack --progress --config webpack.prod.js",
"build:watch": "webpack -w --progress --config webpack.dev.js",
"dist": "npm run build:prod && web-ext build -s extension/",
"jsdoc": "jsdoc -c jsdoc.conf.json .",
"lint": "npm run lint:js; npm run lint:webext",
"lint:js": "standardx",
"lint:webext": "web-ext lint -s extension/",
"preversion": "npm run build:prod && npm run test",
"start:chromium": "node test/chromium.js",
"start:firefox": "web-ext run -s extension/ -u 'about:addons' -u 'about:debugging' -u 'https://super.cs.uchicago.edu/'",
"test": "tape test/test.js | tap-spec",
"version": "file-version-bump",
"watch": "npm run build:watch"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.4",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-eval": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^2.0.2",
"css-loader": "^2.1.1",
"file-loader": "^3.0.1",
"file-version-bump": "0.0.2",
"foodoc": "^0.0.9",
"gzip-loader": "^0.0.1",
"html-webpack-plugin": "^4.0.0-alpha.2",
"jsdoc": "^3.6.2",
"mini-css-extract-plugin": "^0.6.0",
"puppeteer": "1.9.*",
"standardx": "^2.1.0",
"tap-spec": "^5.0.0",
"tape": "^4.10.1",
"uglifyjs-webpack-plugin": "^2.1.3",
"url-loader": "^1.1.2",
"web-ext": "^3.0.0",
"webpack": "4.28.4",
"webpack-cli": "^3.3.2",
"webpack-merge": "^4.2.1",
"worker-loader": "^2.0.0"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.4",
"@fortawesome/free-brands-svg-icons": "^5.3.1",
"@fortawesome/free-solid-svg-icons": "^5.3.1",
"@fortawesome/react-fontawesome": "^0.1.3",
"@instructure/ui-alerts": "^5.25.0",
"@instructure/ui-breadcrumb": "^5.25.0",
"@instructure/ui-buttons": "^5.25.0",
"@instructure/ui-elements": "^5.25.0",
"@instructure/ui-forms": "^5.25.0",
"@instructure/ui-icons": "^5.25.0",
"@instructure/ui-layout": "^5.25.0",
"@instructure/ui-overlays": "^5.25.0",
"@instructure/ui-tabs": "^5.25.0",
"@instructure/ui-themes": "^5.25.0",
"@instructure/ui-toggle-details": "^5.25.0",
"babel-runtime": "^6.26.0",
"d3": "^5.7.0",
"d3-scale": "^2.1.2",
"lodash": "^4.17.11",
"lovefield": "^2.1.12",
"moment": "^2.22.2",
"prop-types": "^15.6.2",
"react": "^16.3.2",
"react-bootstrap": "^0.32.3",
"react-d3-cloud": "^0.6.0",
"react-dom": "^16.3.2",
"react-loadable": "^5.4.0",
"react-router-bootstrap": "^0.24.4",
"react-router-dom": "^4.2.2",
"react-sizeme": "^2.5.2",
"react-table": "^6.8.5",
"react-vis": "^1.10.8",
"snowball": "^0.3.1",
"tldjs": "^2.3.1"
},
"standardx": {
"globals": [
"browser",
"chrome",
"EXT_VERSION"
],
"ignore": [
"doc/",
"extension/lib/",
"extension/dist/",
"src/lightbeam/"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"allowImportExportEverywhere": true
},
"rules": {
"semi": 0
}
},
"file-version-bump": [
"extension/manifest.json"
]
}