-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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
{
"name": "cache-cdn",
"version": "1.0.0",
"description": "Download cdn libraries for local use (e.g. unit tests). Define your cdn libs in one place and write the references into your html.",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --timeout 10000 --reporter spec",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec",
"ci-test": "npm run coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cmplank/cache-cdn.git"
},
"keywords": [
"cdn",
"download",
"local",
"cache"
],
"author": "Colin Plank",
"license": "MIT",
"bugs": {
"url": "https://github.com/cmplank/cache-cdn/issues"
},
"homepage": "https://github.com/cmplank/cache-cdn#readme",
"files": [
"index.js",
"README.md",
"LICENSE"
],
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0"
},
"dependencies": {
"bluebird": "^3.5.2",
"fs-copy-file": "^1.0.2",
"md5": "^2.2.1",
"mkdirp": "^0.5.1",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"rimraf": "^2.6.2"
}
}