-
-
Notifications
You must be signed in to change notification settings - Fork 228
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.39 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.39 KB
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
{
"name": "wayback-machine-webextension",
"version": "3.0.0",
"description": "A browser extension that interfaces with the internet archive",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "webpack",
"test": "mocha",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint webextension/scripts test",
"lint:css": "stylelint webextension/css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/internetarchive/wayback-machine-webextension.git"
},
"author": "Internet Archive",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/internetarchive/wayback-machine-webextension/issues"
},
"homepage": "https://github.com/internetarchive/wayback-machine-webextension#readme",
"devDependencies": {
"@fortawesome/fontawesome-free": "^6.7.2",
"bootstrap": "^5.3.8",
"chai": "^4.5.0",
"css-loader": "^7.1.2",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0",
"fast-levenshtein": "^3.0.0",
"file-loader": "^6.2.0",
"jquery": "^3.7.1",
"jsdom": "^25.0.1",
"mini-css-extract-plugin": "^2.7.5",
"mocha": ">=11.7.4",
"stylelint": "^16",
"stylelint-config-standard": "^39",
"webpack": "^5.105.0",
"webpack-cli": "^6.0.1"
}
}