-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
37 lines (37 loc) · 1.01 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
{
"name": "fec-parse",
"version": "0.27.0",
"description": "A Node module to parse raw FEC electronic filings.",
"main": "index.js",
"umd:main": "dist/bundle.js",
"unpkg": "dist/bundle.js",
"jsdelivr": "dist/bundle.js",
"license": "(Apache-2.0 AND MIT)",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/chriszs/fec-parse.git"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@stream-io/rollup-plugin-node-builtins": "^2.1.5",
"chai": "^4.3.4",
"mocha": "^9.1.1",
"rollup": "^2.52.2",
"rollup-plugin-node-globals": "^1.4.0"
},
"scripts": {
"test": "mocha",
"coverage": "istanbul cover node_modules/.bin/_mocha",
"build": "rollup --config"
},
"dependencies": {
"generate-function": "^2.3.1",
"generate-object-property": "^1.2.0",
"inherits": "^2.0.4",
"stream-browserify": "^3.0.0",
"string_decoder": "^1.3.0"
}
}