-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.51 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
{
"name": "twobees",
"version": "1.1.1",
"description": "assertion with a buzz",
"main": "dist/src/index.js",
"author": "Roy Sommer <roy@sommer.co.il>",
"keywords": [
"test",
"assertions",
"typescript",
"jest",
"mocha",
"jasmine",
"chai"
],
"repository": {
"type": "git",
"url": "https://github.com/illBeRoy/twobees"
},
"license": "MIT",
"private": false,
"scripts": {
"clean": "rm -rf dist",
"build": "yarn build:typescript && yarn build:entrypoints && yarn build:docs",
"build:typescript": "tsc",
"build:entrypoints": "tsx scripts/entrypoints.ts",
"build:docs": "tsx scripts/generate-docs.ts",
"test": "jest",
"posttest": "yarn lint",
"lint": "eslint .",
"prerelease": "yarn clean && yarn build && yarn test",
"release": "np"
},
"files": [
"dist",
"assertions"
],
"devDependencies": {
"@types/chance": "^1.1.0",
"@types/jest": "^26.0.9",
"@types/jest-diff": "^24.3.0",
"chance": "^1.1.6",
"dedent": "^0.7.0",
"eslint-config-typescript-prettier": "illberoy/eslint-typescript-prettier",
"jest": "^26.4.0",
"np": "^7.6.2",
"ts-jest": "^26.2.0",
"tsx": "^3.8.2",
"typescript": "^3.9.7"
},
"dependencies": {
"fast-deep-equal": "^3.1.3",
"indent-string": "^4.0.0",
"jest-diff": "^26.4.0",
"ordinal": "^1.0.3",
"tslib": "^2.0.1"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"<rootDir>/test/**/*.spec.ts"
]
}
}