-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
75 lines (75 loc) · 1.78 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
69
70
71
72
73
74
75
{
"name": "hamjest",
"version": "4.1.0",
"main": "index.js",
"description": "A library of composable matchers for defining meaningful and readable assertions in JavaScript.",
"homepage": "https://github.com/rluba/hamjest",
"author": {
"name": "Raphael Luba",
"email": "[email protected]",
"url": "https://github.com/rluba"
},
"types": "./@types/index.d.ts",
"keywords": [
"hamjest",
"hamcrest",
"matcher",
"matchers",
"assertThat",
"node",
"promiseThat",
"promise",
"promises"
],
"bugs": {
"url": "https://github.com/rluba/hamjest/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/rluba/hamjest.git"
},
"scripts": {
"test": "gulp test",
"lint": "gulp lint",
"build": "gulp"
},
"engines": {
"node": ">=8.0.0"
},
"browserslist": [
"last 2 versions",
"not ie <= 10"
],
"dependencies": {
"assertion-error": "^1.1.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.4.2",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@types/node": "16.11.6",
"@typescript-eslint/parser": "^2.30.0",
"babelify": "^10.0.0",
"browserify": "^16.3.0",
"core-js": "^3.1.4",
"del": "^5.1.0",
"eslint": "^6.1.0",
"eslint-config-leanbyte": "^2.0.0",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-mocha": "^8.0.0",
"gulp-rename": "^2.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-uglify": "^3.0.2",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.0.0",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^2.0.1",
"mocha": "^10.2.0",
"typescript": "^3.8.3",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
}
}