-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.99 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": "interface-forge",
"author": "Na'aman Hirschfeld",
"maintainers": [
{
"name": "Na'aman Hirschfeld",
"email": "nhirschfeld@gmail.com"
}
],
"version": "2.0.1",
"license": "MIT",
"description": "Gracefully generate testing data using TypeScript and Faker.js",
"keywords": [
"factory",
"testing",
"typescript",
"faker.js",
"faker"
],
"repository": "https://github.com/tool-belt/interface-forge",
"bugs": "https://github.com/tool-belt/interface-forge/issues",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"type": "module",
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"scripts": {
"clean": "rimraf dist",
"clean:nodemodules": "rimraf node_modules",
"build": "rimraf dist && tsc -p ./tsconfig.build.json",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"format": "prettier --write '**/*.{ts,d.ts,js,md,json,yaml,yml}'",
"lint": "eslint --fix '**/*.ts'",
"prepare": "husky",
"test": "vitest run",
"prepublish": "pnpm build",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@tool-belt/eslint-config": "^6.1.3",
"@types/node": "^22.5.0",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^9.9.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"lint-staged": {
"*.{ts,d.ts,js,md,json,yaml,yml}": "prettier --write",
"*.ts": "eslint --fix"
},
"dependencies": {
"@faker-js/faker": "^8.4.1",
"@tool-belt/type-predicates": "^1.3.0"
}
}