-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
61 lines (61 loc) · 1.62 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
{
"name": "recap-chrome",
"version": "2.8.1",
"description": "RECAP improves the experience of using PACER, the online public acces system for the U.S. federal courts",
"main": " ",
"directories": {
"test": "test"
},
"scripts": {
"test": "./node_modules/.bin/karma start --single-run",
"postinstall": "vendor-copy",
"release-chrome": "./scripts/build.sh chrome",
"release-firefox": "./scripts/build.sh firefox"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freelawproject/recap-chrome.git"
},
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/freelawproject/recap-chrome/issues"
},
"homepage": "https://github.com/freelawproject/recap-chrome#readme",
"dependencies": {
"bootstrap": "^5.2.3",
"entr": "^0.0.0",
"file-saver": "2.0.5",
"jquery": "~3.6.3",
"moment": "~2.29.4",
"web-ext": "^7.5.0"
},
"devDependencies": {
"eslint": "^8.5.0",
"jasmine": "^4.5.0",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-firefox-launcher": "^2.1.0",
"karma-jasmine": "^5.1.0",
"karma-jasmine-ajax": "^0.1.13",
"karma-jquery": "^0.2.4",
"puppeteer": "^19.6.2",
"vendor-copy": "^3.0.1",
"whatwg-fetch": "^3.6.2"
},
"vendorCopy": [
{
"from": "node_modules/jquery/dist/jquery.js",
"to": "src/assets/js/jquery.js"
},
{
"from": "node_modules/file-saver/src/FileSaver.js",
"to": "src/assets/js/FileSaver.js"
},
{
"from": "node_modules/moment/moment.js",
"to": "src/assets/js/moment.js"
}
]
}