This repository has been archived by the owner on Apr 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
48 lines (48 loc) · 1.71 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
{
"name": "jstestadapter",
"version": "1.4.2",
"description": "",
"bundledDependencies": [
"rewire",
"source-map-support"
],
"dependencies": {
"rewire": "^4.0.1",
"source-map-support": "^0.5.4"
},
"devDependencies": {
"@types/jasmine": "^2.8.6",
"@types/mocha": "^5.2.0",
"@types/node": "^9.6.22",
"mocha": "^5.2.0",
"tslint": "^5.9.1",
"tslint-microsoft-contrib": "^5.0.3",
"typemoq": "^2.1.0",
"typescript": "^2.9.2"
},
"scripts": {
"lint": "tslint --project ./src/JSTest.Runner/tsconfig.json",
"lint:test": "tslint --project ./test/JSTest.Runner.UnitTests/tsconfig.json",
"build:Debug": "./node_modules/.bin/tsc -p ./src/JSTest.Runner/tsconfig.json",
"build:Release": "./node_modules/.bin/tsc -p ./src/JSTest.Runner/tsconfig.json --outDir ./src/JSTest.Runner/bin/Release",
"tsc:test": "node_modules/.bin/tsc -p ./test/JSTest.Runner.UnitTests/tsconfig.json",
"build:test": "npm run lint:test && npm run tsc:test",
"build": "npm run build:Debug",
"test": "npm run build:test && node ./node_modules/mocha/bin/mocha -r source-map-support/register ./test/JSTest.Runner.UnitTests/bin/test/**/*Tests.js",
"test:debug": "npm run build:test && node --inspect-brk=9229 ./node_modules/mocha/bin/_mocha -r source-map-support/register ./test/JSTest.Runner.UnitTests/bin/test/**/*Tests.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/karanjitsingh/JSTestAdapter.git"
},
"author": "karanjitsingh",
"license": "MIT",
"bugs": {
"url": "https://github.com/karanjitsingh/JSTestAdapter/issues"
},
"homepage": "https://github.com/karanjitsingh/JSTestAdapter#readme",
"files": [
"./README.md",
"*"
]
}