-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.39 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
{
"name": "@birchill/json-equalish",
"version": "1.1.2",
"description": "Ad-hoc JSON-like comparison",
"author": "Brian Birtles",
"scripts": {
"build": "tsc",
"test": "jest",
"prepublish": "tsc",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/birchill/json-equalish.git"
},
"bugs": {
"url": "https://github.com/birchill/json-equalish/issues"
},
"files": [
"dist"
],
"main": "dist/index.js",
"homepage": "https://github.com/birchill/json-equalish#readme",
"devDependencies": {
"@types/jest": "^24.0.19",
"husky": "^3.0.8",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"mocha": "^6.2.1",
"prettier": "^1.18.2",
"standard-version": "^8.0.1",
"ts-jest": "^24.1.0",
"ts-loader": "^6.2.0",
"typescript": "^3.6.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"testRegex": "src/.*.test.ts$",
"globals": {
"ts-jest": {
"tsConfig": {
"esModuleInterop": true
}
}
}
}
}