-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.5 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
{
"name": "object-cache-graph-thing",
"version": "1.0.1",
"description": "A thing for making object traversals quicker",
"main": "dist/main.js",
"scripts": {
"build": "tsc",
"build:watch": "tsc -- --watch",
"lint": "tslint -p . --format stylish",
"test": "jest",
"test:watch": "npm run test -- --watch"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/adierkens/object-cache-graph-thing.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"tree",
"traversal",
"object",
"cache"
],
"author": "Adam Dierkens <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/adierkens/object-cache-graph-thing/issues"
},
"homepage": "https://github.com/adierkens/object-cache-graph-thing#readme",
"dependencies": {
"fast-deep-equal": "^2.0.1"
},
"devDependencies": {
"@types/jest": "^23.3.5",
"husky": "^1.1.2",
"jest": "^23.6.0",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"ts-jest": "^23.10.4",
"ts-lint": "^4.5.1",
"tslint": "~5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-xo": "^0.9.0",
"tsutils": "~3.1.0",
"typescript": "^3.1.3"
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
],
"*.{ts,tsx}": [
"prettier --parser typescript --write",
"npm run lint",
"git add"
]
},
"prettier": {
"singleQuote": true
}
}