This repository has been archived by the owner on Dec 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
60 lines (60 loc) · 1.48 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
{
"name": "jasmine-ts",
"version": "0.4.0",
"description": "Execute jasmine with ts-node",
"main": "lib/index.js",
"bin": "lib/index.js",
"scripts": {
"precompile": "rimraf lib",
"compile": "tsc --project tsconfig.json",
"lint": "tslint -p tsconfig.json",
"jasmineTs": "node lib/index.js --config=spec/jasmine.json spec/jasmine-ts.spec.ts",
"test": "npm run lint && npm run compile && npm run jasmineTs",
"prepublishOnly": "npm run compile",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/svi3c/jasmine-ts.git"
},
"keywords": [
"node",
"testing",
"tests",
"jasmine",
"typescript"
],
"author": "Sven Reglitzki <[email protected]>",
"maintainers": [
"Róbert Kiss <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/svi3c/jasmine-ts/issues"
},
"homepage": "https://github.com/svi3c/jasmine-ts#readme",
"files": [
"lib"
],
"dependencies": {
"yargs": "^17.0.1"
},
"peerDependencies": {
"jasmine": ">=3.4",
"ts-node": ">=3.2.0 <=11",
"typescript": ">=3.5.2"
},
"devDependencies": {
"@types/jasmine": "^3.6.3",
"@types/node": "^17.0.0",
"@types/yargs": "^17.0.0",
"dotenv": "^14.3.2",
"jasmine": "^3.6.4",
"jasmine-spec-reporter": "^7.0.0",
"rimraf": "^3.0.2",
"standard-version": "^9.1.0",
"ts-node": "^10.0.0",
"tslint": "^6.1.3",
"typescript": "^4.1.3"
}
}