-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 945 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 945 Bytes
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
{
"name": "boxrec-scraper",
"version": "1.0.0-beta.15",
"main": "build/index.js",
"author": "stackdumper <stackdumper@gmail.com>",
"license": "MIT",
"scripts": {
"start": "babel-node src/index.js",
"test": "ava test -v",
"lint": "eslint src",
"build": "rollup -c",
"prepublish": "yarn build"
},
"devDependencies": {
"@atomix/eslint-config": "^7.0.0-alpha.2",
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-typescript": "^7.1.0",
"ava": "^0.25.0",
"babel-eslint": "^9.0.0",
"builtin-modules": "^3.0.0",
"eslint": "^5.6.0",
"rollup": "^0.66.2",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-babel-minify": "^6.0.0"
},
"dependencies": {
"bluebird": "^3.5.2",
"jsdom": "^12.0.0",
"promised-pipe": "^1.1.1",
"ramda": "^0.25.0",
"request-promise": "^4.2.2"
}
}