-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.49 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.49 KB
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
{
"directories": {
"test": "test"
},
"author": "azu",
"license": "MIT",
"files": [
"bin/",
"lib/",
"src/"
],
"name": "shallow-equal-object",
"version": "1.1.1",
"description": "Shallow equal check object.",
"main": "./lib/src/shallow-equal-object.js",
"types": "./lib/src/shallow-equal-object.d.ts",
"scripts": {
"test": "mocha \"test/*.ts\"",
"build": "cross-env NODE_ENV=production tsc -p .",
"watch": "tsc -p . --watch",
"prepublish": "npm run --if-present build",
"prettier": "prettier --write '**/*.{js,jsx,ts,tsx,css}'"
},
"keywords": [
"object",
"check",
"equal",
"shallow-equal",
"equal",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/azu/shallow-equal-object.git"
},
"bugs": {
"url": "https://github.com/azu/shallow-equal-object/issues"
},
"homepage": "https://github.com/azu/shallow-equal-object",
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.7",
"cross-env": "^5.2.0",
"espower-typescript": "^9.0.2",
"husky": "^2.4.0",
"lint-staged": "^8.2.0",
"mocha": "^6.1.4",
"power-assert": "^1.4.2",
"prettier": "^1.8.2",
"typescript": "^3.5.1"
},
"prettier": {
"printWidth": 120,
"tabWidth": 4
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"post-commit": "git reset",
"pre-commit": "lint-staged"
}
}
}