-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
117 lines (117 loc) · 3.12 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "yaktime",
"version": "3.1.9",
"description": "",
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@babel/runtime": "^7.3.1",
"@types/content-type": "^1.1.2",
"@types/debug": "^0.0.31",
"@types/fast-json-stable-stringify": "^2.0.0",
"@types/invariant": "^2.2.29",
"@types/jest": "^24.0.0",
"@types/lodash": "^4.14.120",
"@types/lodash.map": "^4.6.13",
"@types/node": "^10.12.21",
"@types/restify-errors": "^4.3.3",
"@types/rimraf": "^2.0.2",
"@types/supertest": "^2.0.7",
"@types/xxhashjs": "^0.2.0",
"babel-jest": "^24.1.0",
"barrelsby": "^1.0.2",
"codecov": "^3.1.0",
"expect-more-jest": "^2.4.1",
"husky": "^1.3.1",
"jest": "^24.1.0",
"jest-junit": "^6.2.1",
"jest-runner-tsc": "^1.4.0",
"lint-staged": "^8.1.3",
"madge": "^3.4.3",
"nodemon": "^1.18.9",
"np": "^4.0.2",
"prettier": "^1.16.4",
"prettysize": "^2.0.0",
"rimraf": "^2.6.3",
"standard": "^12.0.1",
"supertest": "^3.4.2",
"tslint": "^5.12.1",
"tslint-config-standard": "^8.0.1",
"tslint-no-circular-imports": "^0.6.1",
"tslint-sonarts": "^1.9.0",
"typescript": "^3.3.1"
},
"scripts": {
"prerelease": "yarn build",
"release": "np",
"test": "bin/test",
"coverage": "codecov",
"build": "rm -rf lib && npx tsc -p tsconfig.build.json",
"barrels": "npx barrelsby --delete -p ./src -l top -q -e \"test|@types\"",
"lint": "NODE_OPTIONS=--max-old-space-size=4096 tslint --fix --project tsconfig.build.json -c tslint.json 'src/**/*.ts'",
"check:circular": "yarn build && npx madge --circular lib"
},
"bin": {
"yakbak": "lib/cli.js",
"yaktime": "lib/cli.js"
},
"author": {
"name": "Ale Figueroa",
"email": "me@ale.world",
"url": "http://www.ale.world"
},
"license": "MIT",
"dependencies": {
"@types/lokijs": "^1.5.2",
"@types/mkdirp": "^0.5.2",
"content-type": "^1.0.4",
"debug": "^4.1.1",
"fast-json-stable-stringify": "^2.0.0",
"incoming-message-hash": "^3.2.2",
"invariant": "^2.2.4",
"lodash.map": "^4.6.0",
"lokijs": "^1.5.6",
"mkdirp": "^0.5.1",
"restify-errors": "^6.1.1",
"xxhashjs": "^0.2.2"
},
"keywords": [
"http",
"https",
"record",
"playback",
"mock",
"service",
"vcr",
"yakbak"
],
"repository": {
"type": "git",
"url": "git@github.com:yknx4/yaktime.git"
},
"husky": {
"hooks": {
"pre-commit": "NODE_OPTIONS=--max-old-space-size=4096 lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --no-semi --single-quote --print-width 150 --write",
"tslint --project tsconfig.lint.json --fix -t verbose",
"git add"
],
"**/*.{json,css,md}": [
"prettier --write",
"git add"
]
}
}