-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
38 lines (38 loc) · 998 Bytes
/
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
{
"name": "create-download-link",
"version": "1.0.4",
"description": "Create link to download text as file",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"chai": "3.5.0",
"coveralls": "^2.11.9",
"eslint": "^2.7.0",
"eslint-config-google": "^0.5.0",
"istanbul": "^0.4.3",
"jsdom": "8.3.1",
"jsdom-global": "1.7.0",
"mocha": "2.4.5"
},
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"test": "mocha -r jsdom-global/register test.js",
"coverage": "istanbul cover _mocha -- -r jsdom-global/register test.js",
"lint": "eslint --fix --env browser --env mocha ."
},
"eslintConfig": {
"extends": "google"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fhinkel/create-download-link.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/fhinkel/create-download-link/issues"
},
"homepage": "https://github.com/fhinkel/create-download-link#readme"
}