-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.26 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
{
"name": "goodeggs-test-helpers",
"version": "8.3.3",
"description": "Basic setup used for all goodeggs tests.",
"author": "Good Eggs Inc.",
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/goodeggs/goodeggs-test-helpers.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"engines": {
"node": ">=8"
},
"scripts": {
"build": "yarn run build:es && yarn run build:types",
"build:es": "babel src --out-dir lib --copy-files --delete-dir-on-start --extensions=.ts,.js,.jsx,.tsx",
"build:types": "tsc --project tsconfig.declarations.json",
"lint": "yarn run lint:es",
"lint:es": "getk run lint-es",
"lint:fix": "yarn run lint:fix:es",
"lint:fix:es": "getk run fix-es",
"prepublishOnly": "yarn run build",
"postversion": "git push --follow-tags",
"tdd": "yarn run test:unit --watch",
"test": "yarn run todos && yarn run lint && yarn run typecheck && yarn run test:unit",
"test:unit": "yarn run test:unit:glob 'test/**/*test.{js,jsx,ts,tsx}'",
"test:unit:glob": "NODE_ENV=test mocha --require @babel/polyfill --require .register.ts --extension ts,js,jsx,tsx",
"todos": "yarn run todos:glob '**/*.{js,jsx,ts,tsx}'",
"todos:glob": "leasot --exit-nicely --ignore='node_modules/**','lib/**'",
"typecheck": "tsc"
},
"dependencies": {
"@types/chai": "^4.3.16",
"@types/chai-as-promised": "^7.1.8",
"@types/chai-datetime": "^0.0.39",
"@types/dirty-chai": "^2.0.4",
"@types/sinon": "^10.0.20",
"@types/sinon-chai": "^3.2.12",
"chai": "^4.5.0",
"chai-as-promised": "7.1.2",
"chai-datetime": "^1.8.0",
"date-test-helpers": "1.1.2",
"dirty-chai": "2.0.1",
"sinon": "^14.0.2",
"sinon-chai": "3.7.0"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.6",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.23.6",
"@babel/preset-typescript": "^7.23.3",
"@babel/register": "^7.22.15",
"@goodeggs/toolkit": "^7.0.1",
"@goodeggs/tsconfig": "^2.0.2",
"@types/bunyan": "^1.8.11",
"@types/mocha": "^10.0.7",
"bunyan": "^1.8.15",
"leasot": "^13.3.0",
"mocha": "^10.7.0",
"typescript": "^4.9.5"
}
}