-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.96 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "taida",
"version": "0.1.0",
"description": "Compress images by https://tinypng.com",
"main": "index.js",
"bin": {
"tiny": "bin/tiny",
"tiny-apikey": "bin/tiny-apikey"
},
"scripts": {
"dev": "rm -rf lib && node node_modules/babel-cli/bin/babel src -d lib -D -w",
"deploy": "rm -rf lib && node node_modules/babel-cli/bin/babel src -d lib -D",
"test": "cross-env NODE_ENV=testing node_modules/.bin/nyc --reporter lcov --reporter text --report-dir test/coverage --require babel-core/register node_modules/.bin/mocha test/*.spec.js && rm -rf .nyc_output",
"coverage": "cat test/coverage/lcov.info | node_modules/coveralls/bin/coveralls.js",
"lint": "node node_modules/eslint/bin/eslint.js src"
},
"pre-commit": [
"lint",
"deploy"
],
"repository": {
"type": "git",
"url": "git://github.com/cupools/taida.git"
},
"keywords": [
"tinypng",
"compressor",
"tinify",
"png"
],
"author": "liyh",
"license": "MIT",
"bugs": {
"url": "https://github.com/cupools/taida/issues"
},
"engines": {
"node": ">=4.0.0"
},
"homepage": "https://github.com/cupools/taida#readme",
"dependencies": {
"babel-runtime": "^6.11.6",
"checkin": "^0.0.1",
"colors": "^1.1.2",
"commander": "^2.9.0",
"fs-extra": "^0.30.0",
"glob": "^7.1.0",
"lodash.merge": "^4.6.0",
"progress": "^1.1.8",
"tinify": "^1.5.0"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.14.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-2": "^6.13.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"coveralls": "^2.11.14",
"cross-env": "^2.0.1",
"eslint": "^3.7.1",
"eslint-config-airbnb-base": "^8.0.0",
"eslint-plugin-import": "^1.16.0",
"mocha": "^3.0.2",
"nock": "^8.0.0",
"nyc": "^8.3.0",
"pre-commit": "^1.1.3"
}
}