-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.34 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
48
{
"name": "tinyme",
"version": "1.0.0",
"description": "A command-line tool that uses TinyPNG API to minify images of a given directory",
"main": "index.js",
"scripts": {
"build": "npm install && npm link",
"start": "node src/index.js",
"test": "./node_modules/nyc/bin/nyc.js ./node_modules/.bin/tape test/**/*.js && ./node_modules/nyc/bin/nyc.js report --reporter=text-lcov | coveralls",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"linter": "./node_modules/.bin/eslint src/ test/ bin/ --fix"
},
"bin": {
"tinyme": "bin/tinyme.js"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module"
},
"rules": {
"no-console": 0,
"no-unused-vars": 1
}
},
"author": "Patrick Ferreira <paatrickferreira@gmail.com>",
"dependencies": {
"assert": "^1.4.1",
"colors": "^1.1.2",
"commander": "^2.11.0",
"dotenv": "^4.0.0",
"glob": "^7.1.2",
"global-modules": "^1.0.0",
"lodash.flattendeep": "^4.4.0",
"ncp": "^2.0.0",
"tinify": "^1.5.0",
"winston": "^2.3.1"
},
"devDependencies": {
"coveralls": "^2.13.1",
"eslint": "^4.5.0",
"eslint-config-airbnb-base": "^11.3.2",
"eslint-plugin-import": "^2.7.0",
"nyc": "^11.1.0",
"tape": "^4.8.0"
}
}