-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.12 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
{
"name": "distiller",
"version": "0.2.0",
"description": "Extracts only the dist files from packages",
"main": "index.js",
"bin": "cli.js",
"scripts": {
"test": "tap test/index.js --coverage-report=text",
"lint": "eslint *.js test/*.js packages/**/*.js",
"clean": "rm -rf dist test/output .nyc_output node_modules coverage",
"fresh-test": "npm run clean && npm install && npm run lint && npm run test"
},
"devDependencies": {
"eslint": "^4.12.1",
"eslint-config-xo-space": "^0.17.0",
"tap": "^11.0.0"
},
"dependencies": {
"fs-extra": "^4.0.3",
"meow": "^4.0.0",
"recursive-readdir": "^2.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/busterc/distiller.git"
},
"keywords": [
"dist",
"distill",
"distiller",
"distillery",
"build",
"cli",
"extract",
"only",
"filter",
"min"
],
"author": "Buster Collings <busterc@gmail.com> (https://about.me/buster)",
"license": "ISC",
"bugs": {
"url": "https://github.com/busterc/distiller/issues"
},
"homepage": "https://github.com/busterc/distiller#readme"
}