-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
50 lines (50 loc) · 904 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
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "icc",
"version": "3.0.0",
"author": "Lovell Fuller <[email protected]>",
"description": "Parse International Color Consortium (ICC) profiles",
"scripts": {
"test": "semistandard && nyc mocha && tsd"
},
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/lovell/icc"
},
"files": [
"index.d.ts"
],
"keywords": [
"icc",
"color",
"colour",
"profile"
],
"devDependencies": {
"@types/node": "*",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"semistandard": "^16.0.1",
"tsd": "^0.28.0"
},
"license": "Apache-2.0",
"engines": {
"node": ">=14"
},
"semistandard": {
"env": [
"mocha"
]
},
"nyc": {
"check-coverage": true,
"statements": 95,
"branches": 85,
"functions": 100,
"lines": 94
},
"tsd": {
"directory": "test"
}
}