-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 2.23 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
{
"name": "@tepez/jasmine-misc-matchers",
"version": "1.6.1",
"description": "Various matchers for jasmine2",
"homepage": "https://github.com/tepez/jasmine-misc-matchers#readme",
"bugs": {
"url": "https://github.com/tepez/jasmine-misc-matchers/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tepez/jasmine-misc-matchers.git"
},
"license": "MIT",
"author": "Tom Yam <tomyam@tepez.co.il>",
"main": "dist/index.js",
"browser": "dist/index-browser.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"clean": "del-cli dist",
"dev": "nodemon --watch \"src/**\" --ext ts --exec \"node -r ts-node/register/transpile-only node_modules/jasmine/bin/jasmine.js --config=node_modules/@tepez/typescript-build-gulp-tasks/dist/jasmine/dev.js\"",
"dev-debug": "nodemon --watch \"src/**\" --ext ts --exec \"node -r ts-node/register/transpile-only --inspect node_modules/jasmine/bin/jasmine.js --config=node_modules/@tepez/typescript-build-gulp-tasks/dist/jasmine/dev.js\"",
"test": "node -r ts-node/register/transpile-only node_modules/jasmine/bin/jasmine.js --config=node_modules/@tepez/typescript-build-gulp-tasks/dist/jasmine/build.js",
"test-debug": "node -r ts-node/register/transpile-only --inspect-brk node_modules/jasmine/bin/jasmine.js --config=node_modules/@tepez/typescript-build-gulp-tasks/dist/jasmine/build.js",
"update": "npm run build && npx np --no-publish"
},
"dependencies": {
"@tepez/ts-utils": "^0.1.3",
"@types/file-saver": "^2.0.7",
"@types/html-to-text": "^9.0.4",
"@types/jasmine": "^5.1.4",
"@types/jquery": "^3.5.32",
"@types/papaparse": "^5.3.15",
"colors": "^1.4.0",
"csv-stringify": "^6.5.1",
"file-saver": "^2.0.5",
"html-differ": "^1.4.0",
"html-to-text": "^9.0.5",
"lodash": "^4.17.21",
"papaparse": "^5.4.1"
},
"devDependencies": {
"@tepez/typescript-build-gulp-tasks": "^8.0.0",
"@tepez/typescript-common": "^2.0.1",
"@types/jasmine": "^5.1.4",
"@types/lodash": "^4.17.13",
"@types/node": "^20.17.4",
"@types/sinon": "17.0.3",
"np": "^10.0.7",
"sinon": "^19.0.2",
"strip-ansi": "^6.0.1"
},
"peerDependencies": {
"jasmine": "^5.4.0"
}
}