-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.2 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
{
"name": "parse-data-url",
"version": "6.0.0",
"description": "Parse data URL string",
"author": {
"name": "Alexey Kucherenko",
"url": "https://github.com/killmenot"
},
"main": "index.js",
"files": [
"index.js"
],
"engines": {
"node": ">=14"
},
"license": "MIT",
"homepage": "https://github.com/killmenot/parse-data-url",
"repository": {
"type": "git",
"url": "git@github.com:killmenot/parse-data-url.git"
},
"bugs": {
"url": "https://github.com/killmenot/parse-data-url/issues"
},
"keywords": [
"parse",
"data-uri",
"data-url",
"data",
"uri",
"url",
"datauri",
"dataurl"
],
"scripts": {
"lint": "jshint index.js test.js",
"test": "mocha",
"test-coverage": "nyc --reporter=html --reporter=text mocha",
"test-coveralls": "nyc report --reporter=text-lcov > ./coverage/lcov.info",
"prepare": "husky install"
},
"nyc": {
"all": true,
"include": [
"index.js"
]
},
"dependencies": {
"valid-data-url": "^5.0.0"
},
"devDependencies": {
"chai": "^4.3.7",
"coveralls": "^3.1.1",
"husky": "^8.0.3",
"jshint": "^2.13.6",
"mocha": "^10.2.0",
"nyc": "^15.1.0"
}
}