-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
86 lines (86 loc) · 1.85 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
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "native-image-diff",
"keywords": [
"diff",
"image",
"png",
"comparison",
"visual"
],
"version": "0.1.10",
"description": "A simple library for comparing two images using a native C++ binding.",
"main": "dist/index.js",
"author": "Frederick Gnodtke",
"license": "MIT",
"gypfile": true,
"scripts": {
"install": "node scripts/install.js",
"prebuild": "node-gyp rebuild -j 8",
"build": "tsc -p tsconfig-production.json --sourceMap",
"postbuild": "node scripts/rename.js",
"test": "cross-env TZ=UTC jest",
"lint": "tslint --format stylish --project tsconfig.json",
"clean": "rm -rf dist build",
"docs": "typedoc --mode file --out docs/ --exclude '**/test-*.ts' src/"
},
"repository": {
"type": "git",
"url": "https://github.com/Prior99/native-image-diff"
},
"files": [
"index.d.ts",
"./dist",
"./docs",
"./images",
"./scripts",
"./src",
"./LICENSE",
"./README.md"
],
"jest": {
"coverageThreshold": {
"global": {
"statements": 100,
"lines": 100,
"functions": 100,
"branches": 100
}
},
"collectCoverage": true,
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts)$": "ts-jest"
},
"testMatch": [
"**/__tests__/*.(ts|js)"
],
"moduleDirectories": [
"node_modules",
"src"
],
"coverageReporters": [
"text",
"lcov"
]
},
"devDependencies": {
"@types/jest": "^25.1.2",
"@types/node": "^13.7.0",
"coveralls": "^3.0.9",
"cross-env": "^7.0.0",
"jest": "^25.1.0",
"nan": "^2.14.1",
"node-gyp": "^6.1.0",
"node-libpng": "^0.2.14",
"ts-jest": "^25.2.0",
"tslint": "^6.0.0",
"typedoc": "^0.16.9",
"typescript": "^3.7.5"
},
"dependencies": {
"request": "^2.88.0"
}
}