-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.82 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
{
"name": "smart-differences",
"version": "1.5.1",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"test:cov": "jest --coverage",
"build": "bili",
"prepublishOnly": "npm run build",
"lint": "eslint ./src --ext .ts",
"release": "standard-version"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/matdurand/smart-diff.git"
},
"author": "Mathieu Durand",
"license": "MIT",
"dependencies": {
"deep-diff": "1.0.2"
},
"devDependencies": {
"@types/deep-diff": "1.0.0",
"@types/jest": "25.1.4",
"@types/jest-expect-message": "1.0.1",
"@types/lodash": "4.14.149",
"@typescript-eslint/eslint-plugin": "2.11.0",
"@typescript-eslint/parser": "2.11.0",
"bili": "4.8.1",
"commitizen": "4.0.3",
"cz-conventional-changelog": "3.1.0",
"eslint": "6.7.2",
"eslint-config-prettier": "6.7.0",
"eslint-plugin-jest": "23.1.1",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-unused-imports": "0.1.2",
"husky": "4.2.3",
"jest": "25.2.3",
"jest-expect-message": "^1.0.2",
"lint-staged": "10.0.9",
"lodash": "4.17.21",
"moment": "2.29.2",
"prettier": "1.19.1",
"rollup-plugin-typescript2": "0.27.0",
"standard-version": "^8.0.1",
"ts-jest": "25.2.1",
"typescript": "3.8.3"
},
"browserslist": [
"node 8"
],
"jest": {
"testEnvironment": "node"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "lint-staged && npm run test:cov"
}
},
"lint-staged": {
"*.{ts}": [
"npm run lint -- --fix",
"git add"
]
},
"release": {
"branch": "master"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}