-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
74 lines (74 loc) · 1.77 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
72
73
74
{
"name": "cdn-sync",
"description": "deflate / synchronise assets to a CDN",
"version": "1.0.0",
"author": "Ron Waldon <[email protected]> (http://jokeyrhy.me/)",
"bin": {
"cdn-sync": "./bin/cdn-sync"
},
"bugs": {
"url": "https://github.com/jokeyrhyme/cdn-sync/issues"
},
"contributors": [],
"dependencies": {
"async": "2.6.0",
"aws-sdk": "2.480.0",
"cli": "1.0.1",
"findup-sync": "2.0.0",
"glob": "7.1.1",
"graceful-fs": "4.1.11",
"mime": "1.4.0",
"mmmagic": "0.5.0",
"progress": "~2.0.0",
"q": "1.5.1",
"underscore": "1.9.0",
"z-schema": "3.20.0"
},
"devDependencies": {
"chai": "~4.1.0",
"eslint": "^4.0.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.0",
"fixpack": "^2.3.1",
"mocha": "~5.1.0",
"nyc": "^11.0.0",
"request": "^2.49.0",
"sinon": "~2.4.0",
"sinon-chai": "~3.0.0"
},
"directories": {
"doc": "doc",
"test": "test"
},
"engines": {
"node": ">=4",
"npm": ">=3"
},
"homepage": "https://github.com/jokeyrhyme/cdn-sync",
"keywords": [],
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/jokeyrhyme/cdn-sync/blob/master/LICENSE-MIT"
}
],
"main": "lib/index.js",
"peerDependencies": {},
"repository": {
"type": "git",
"url": "git://github.com/jokeyrhyme/cdn-sync.git"
},
"scripts": {
"eslint": "eslint --fix --cache .",
"fixpack": "fixpack",
"mocha": "nyc mocha --ui tdd",
"nyc": "nyc check-coverage --lines 65",
"posttest": "npm run eslint",
"pretest": "npm run fixpack",
"test": "npm run mocha && npm run nyc"
}
}