-
-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
95 lines (95 loc) · 3.42 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "jasmine-expect",
"description": "Write Beautiful Specs with Custom Matchers",
"version": "5.0.0",
"author": "Jamie Mason <[email protected]> (https://github.com/JamieMason)",
"bugs": "https://github.com/JamieMason/Jasmine-Matchers/issues",
"contributors": [
"Ariel Mashraki (https://github.com/a8m)",
"Caleb Jares (https://github.com/cable729)",
"David Parker (https://github.com/boldfacedesign)",
"David Tanner (https://github.com/DavidTanner)",
"Elior Boukhobza (https://github.com/mallowigi)",
"Jacob Ward (https://github.com/jacobwarduk",
"Jamie Mason (https://github.com/JamieMason)",
"Jarek Rencz (https://github.com/jrencz)",
"Jose M Andres (https://github.com/jmandreslopez)",
"Klaus Sevensleeper (https://github.com/k7sleeper)",
"Marcin Wosinek (https://github.com/marcin-wosinek)",
"Mateo Tibaquirá (https://github.com/matheo)",
"Mathieu Robin (https://github.com/MathRobin)",
"Sam L'ecuyer (https://github.com/samlecuyer)",
"Sam Wall (https://github.com/sjwall)",
"Shaun Grady (https://github.com/shaungrady)",
"Vilmos Ioo (https://github.com/vilmosioo)",
"ik9999 (https://github.com/ik9999)"
],
"dependencies": {
"add-matchers": "0.6.2"
},
"devDependencies": {
"@types/jest": "26.0.14",
"@types/node": "14.11.1",
"codeclimate-test-reporter": "0.5.1",
"globby": "11.0.1",
"jasmine-core": "3.6.0",
"jest": "26.4.2",
"karma": "5.2.2",
"karma-browserstack-launcher": "1.6.0",
"karma-chrome-launcher": "3.1.0",
"karma-cli": "2.0.0",
"karma-coverage": "2.0.3",
"karma-firefox-launcher": "1.3.0",
"karma-jasmine": "4.0.1",
"karma-nested-reporter": "0.1.7",
"npm-run-all": "4.1.5",
"prettier": "2.1.2",
"rimraf": "3.0.2",
"saucelabs": "4.5.0",
"ts-jest": "26.3.0",
"ts-loader": "8.0.4",
"tslint": "6.1.3",
"typescript": "4.0.3",
"webpack": "4.44.2",
"webpack-cli": "3.3.12"
},
"homepage": "https://github.com/JamieMason/Jasmine-Matchers",
"keywords": [
"BDD",
"TDD",
"assertions",
"expectations",
"expects",
"jasmine",
"jest",
"test-matchers",
"testing"
],
"license": "MIT",
"main": "dist/jasmine-matchers.js",
"repository": "JamieMason/Jasmine-Matchers",
"resolutions": {
"lodash": ">=4.17.15"
},
"scripts": {
"browserstack:android": "karma start karma/browserstack-android.conf.js",
"browserstack:chrome": "karma start karma/browserstack-chrome.conf.js",
"browserstack:firefox": "karma start karma/browserstack-firefox.conf.js",
"browserstack:ie": "karma start karma/browserstack-ie.conf.js",
"browserstack:ios": "# karma start karma/browserstack-ios.conf.js",
"browserstack:safari": "karma start karma/browserstack-safari.conf.js",
"build": "webpack",
"build:snippets": "node scripts/generate-snippets.js",
"clean": "rimraf dist ./test/dist ./scripts/es5-snippets ./scripts/es6-snippets",
"format": "prettier --write './+(examples|karma|scripts|src)/**/*.+(js|ts)'",
"lint": "tslint --fix --project ./tsconfig.json",
"prebuild": "npm run clean",
"prebuild:snippets": "mkdir -p ./scripts/es5-snippets && mkdir -p ./scripts/es6-snippets",
"prelint": "npm run format",
"prepack": "npm run build",
"test": "run-s 'lint' 'browserstack:*'",
"test:jest": "jest",
"test:local": "karma start karma/base.conf.js --browsers Chrome"
},
"types": "dist/index.d.ts"
}