-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
{
"name": "axel-downloader",
"version": "0.2.0",
"description": "A node wrapper around axel downloader",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"lint": "eslint src",
"lint-fix": "eslint src --fix",
"build": "npm run lint && babel src/ -d lib/",
"dev": "babel -w src/ -d lib/",
"test": "ava -v",
"coverage": "nyc --reporter=lcov npm test && cat ./coverage/lcov.info | coveralls"
},
"repository": "https://github.com/mamal72/axel-downloader",
"author": "Mohamad Jahani <m4m4lj@gmail.com>",
"license": "MIT",
"devDependencies": {
"ava": "^0.18.1",
"babel-cli": "^6.22.2",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-env": "^1.1.8",
"coveralls": "^2.11.16",
"eslint": "^3.15.0",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0",
"nyc": "^10.1.2"
},
"dependencies": {
"babel-eslint": "^7.1.1",
"deep-equal": "^1.0.1",
"stream-splitter": "^0.3.2"
},
"ava": {
"require": "babel-register",
"babel": "inherit"
}
}