-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.8 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
{
"name": "fake-eggs",
"version": "6.5.3",
"description": "Generate Good Eggs-flavored data for development / test fixtures",
"main": "dist/index.js",
"scripts": {
"build": "yarn run clean && yarn run build:src && yarn run build:types && yarn run build:flow_types",
"build:src": "babel --extensions .es6,.js,.ts,.es,.jsx,.tsx,.mjs --source-maps --ignore 'src/**/*.test.ts' --out-dir dist/ src/",
"build:types": "tsc --project tsconfig.declarations.json",
"build:flow_types": "cp src/index.js.flow dist/index.js.flow",
"clean": "rm -rf dist/",
"lint": "getk run lint-es",
"lint:fix": "getk run fix-es",
"prepublishOnly": "npm run build",
"test": "yarn run typecheck && yarn run lint && yarn run test:unit",
"test:unit": "jest",
"typecheck": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/goodeggs/fake-eggs.git"
},
"keywords": [
"convert",
"unit"
],
"author": "Good Eggs Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/goodeggs/fake-eggs/issues"
},
"homepage": "https://github.com/goodeggs/fake-eggs#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"dependencies": {
"@types/chance": "^1.1.6",
"chance": "^1.1.12",
"debug": "^4.3.6"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.24.9",
"@babel/node": "^7.25.0",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/preset-env": "^7.25.0",
"@babel/preset-typescript": "^7.24.7",
"@goodeggs/toolkit": "^7.0.1",
"@goodeggs/tsconfig": "^2.0.2",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.12",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-extended": "^0.11.5",
"typescript": "^4.9.5"
}
}