forked from karanjitsingh/jstestadapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.51 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.0.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",
"@types/sinon": "^4.3.3",
"mocha": "^5.2.0",
"sinon": "^5.0.7",
"tslint": "^5.9.1",
"tslint-microsoft-contrib": "^5.0.3",
"typemoq": "^2.1.0",
"typescript": "^2.8.3"
},
"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",
"build:test": "./node_modules/.bin/tsc -p ./test/JSTest.Runner.UnitTests/tsconfig.json",
"build": "npm run build:Debug",
"test:mocha": "npm run build:test && ./node_modules/.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": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/karanjitsingh/JSTestAdapter/issues"
},
"homepage": "https://github.com/karanjitsingh/JSTestAdapter#readme",
"files": [
"./README.md",
"*"
]
}