-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.25 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
{
"name": "key-path-mirror",
"version": "1.0.5",
"description": "Similar to keymirror but supports nested objects, built with TypeScript",
"main": "dist/key-path-mirror.js",
"types": "dist/key-path-mirror.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "del dist",
"format": "prettier-standard --format --lint **/*",
"lint": "prettier-standard --check **/*",
"test": "jest",
"check-types": "tsc --noEmit",
"prebuild": "npm run clean",
"build": "tsc",
"prepublishOnly": "npm run lint && npm run check-types && npm run test && npm run build"
},
"lint-staged": {
"*": "prettier-standard --format"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "https://github.com/kenberkeley/key-path-mirror.git"
},
"keywords": [
"key",
"mirror",
"keymirror",
"path",
"nested",
"object",
"typescript"
],
"author": "Ken Huang <kenhuang.au@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^25.2.1",
"del-cli": "^3.0.0",
"husky": "^4.2.5",
"jest": "^25.5.3",
"lint-staged": "^10.2.2",
"prettier-standard": "^16.3.0",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
}
}