-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
56 lines (56 loc) · 1.55 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
{
"name": "@jackfranklin/test-data-bot",
"version": "2.1.0",
"license": "MIT",
"description": "Generate test data for your tests easily.",
"engines": {
"node": ">=12"
},
"main": "build/index.js",
"scripts": {
"test": "tap --no-coverage -R=dot",
"test-with-coverage": "tap -R=dot",
"lint": "eslint '{src,test}/*.ts' && prettier --list-different '{src,test}/*.ts'",
"lint-fix": "eslint --fix '{src,test}/*.ts' && prettier --write '{src,test}/*.ts'",
"build": "tsc --build tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run test"
},
"tap": {
"ts": true
},
"keywords": [
"testing",
"factory-bot",
"fixtures",
"test"
],
"files": [
"build/"
],
"author": "Jack Franklin",
"homepage": "/~https://github.com/jackfranklin/test-data-bot#readme",
"bugs": "/~https://github.com/jackfranklin/test-data-bot/issues",
"repository": {
"type": "git",
"url": "/~https://github.com/jackfranklin/test-data-bot.git"
},
"devDependencies": {
"@sinonjs/fake-timers": "^10.0.0",
"@types/node": "^20.2.5",
"@types/sinon": "^10.0.13",
"@types/tap": "^15.0.7",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.0.0",
"eslint-config-unobtrusive": "^1.2.5",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tap": "^1.2.1",
"prettier": "^2.5.1",
"sinon": "^15.0.1",
"tap": "^16.3.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}