This repository has been archived by the owner on Sep 4, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.76 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
{
"name": "atom-jasmine3-test-runner",
"version": "5.2.13",
"description": "Run your Atom package tests using Jasmine 3.x",
"repository": "https://github.com/UziTech/atom-jasmine3-test-runner",
"main": "index.js",
"types": "./types/index.d.ts",
"atomTestRunner": "./spec/runner",
"atomTranspilers": [
{
"transpiler": "atom-ts-transpiler",
"glob": "{!(node_modules)/**/,}*.ts?(x)"
}
],
"scripts": {
"test": "npm run test:ui && npm run test:default-runner",
"test:ui": "atom --test ./spec",
"test:default-runner": "cd spec/fixtures/default-runner && npm run test",
"lint": "eslint .",
"tsc": "tsc --noEmit"
},
"keywords": [
"atom",
"jasmine",
"tests"
],
"author": "Tony Brix",
"license": "MIT",
"dependencies": {
"etch": "^0.14.1",
"find-parent-dir": "^0.3.1",
"fs-plus": "3.1.1",
"glob": "^8.0.3",
"grim": "^2.0.3",
"jasmine": "~3.10.0",
"jasmine-local-storage": "^1.1.2",
"jasmine-pass": "^1.1.0",
"jasmine-should-fail": "^1.1.7",
"jasmine-unspy": "^1.1.2",
"jasmine2-atom-matchers": "^1.1.9",
"jasmine2-focused": "^1.1.2",
"jasmine2-json": "^1.1.1",
"jasmine2-tagged": "^1.1.1",
"temp": "^0.9.4",
"underscore-plus": "^1.7.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.6",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"atom-ts-transpiler": "^1.5.3",
"eslint": "^8.27.0",
"semantic-release": "^19.0.5",
"typescript": "^4.8.3"
},
"optionalDependencies": {
"@types/atom": "^1.40.11",
"@types/jasmine": "^3.10.6"
}
}