-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
47 lines (47 loc) · 1.14 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
{
"name": "@bunsn/boiler",
"version": "0.0.5",
"description": "A tool which scrapes HTML tables on financial institutions' websites.",
"main": "index.js",
"scripts": {
"test": "standard ./*.js lib/*.js lib/**/*.js statement-definitions/*.js test/**/*.js index.js && mochify --plugin proxyquireify/plugin",
"build": "browserify -s __boiler__ -do dist/boiler.js index.js && uglifyjs -m -c -o dist/boiler.min.js dist/boiler.js"
},
"author": "Dom Christie",
"license": "ISC",
"devDependencies": {
"browserify": "^11.1.0",
"mochify": "^2.13.0",
"proxyquireify": "^3.0.0",
"sinon": "^1.16.1",
"standard": "^5.2.1",
"uglify-js": "^2.4.24"
},
"standard": {
"global": [
"Blob",
"URL",
"afterEach",
"beforeEach",
"context",
"describe",
"it"
]
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bunsn/boiler.git"
},
"keywords": [
"fintech",
"scraper",
"banking"
],
"bugs": {
"url": "https://github.com/bunsn/boiler/issues"
},
"homepage": "https://github.com/bunsn/boiler#readme"
}