forked from alsatian-test/alsatian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 4.34 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "alsatian",
"version": "2.1.0",
"description": "TypeScript and JavaScript testing framework for beautiful and readable tests",
"author": "James Richford <=> (=)",
"contributors": [
{
"name": "James Richford",
"url": "https://github.com/jamesrichford"
},
{
"name": "James Monger",
"url": "https://github.com/jameskmonger"
}
],
"main": "./core/alsatian-core.js",
"typings": "./core/alsatian-core.d.ts",
"bin": {
"alsatian": "./cli/alsatian-cli.js"
},
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"build": "tsc",
"build-publish": "tsc --newLine \"LF\"",
"clean": "npm run clean-core && npm run clean-cli",
"clean-core": "rimraf core/**/*.js core/**/*.js.map core/**/*.d.ts",
"clean-cli": "rimraf cli/**/*.js cli/**/*.js.map cli/**/*.d.ts",
"publish-nightly": "npm run build && node ./scripts/build-nightly",
"prepublishOnly": "npm run clean && npm install && npm test && npm run build-publish",
"postpublish": "node ./scripts/tag-release",
"review": "npm run review-code & npm run review-tests",
"review-code": "tslint \"./**/*.ts\" --exclude \"./**/*.d.ts\" --exclude \"./test/**/*.ts\" --exclude \"./node_modules/**/*.ts\"",
"review-tests": "tslint --config \"./tslint.test.json\" \"./test/**/*.ts\" --exclude \"./**/*.d.ts\"",
"fix-linting-issues": "tslint --fix \"./**/*.ts\" --exclude \"./**/*.d.ts\" --exclude \"./node_modules/**/*.ts\"",
"pretest": "npm run build",
"test": "npm run review && npm run check-coverage && npm run integration-tests",
"unit-tests": "node ./cli/alsatian-cli.js \"./test/unit-tests/**/*.spec.js\"",
"check-coverage": "npm run build & nyc --reporter=lcov --reporter=html npm run unit-tests && npm run output-test-coverage",
"output-test-coverage": "nyc report",
"install-self": "npm link && install-self",
"integration-tests": "npm run install-self && npm run cli-integration-tests && npm run node-integration-tests && npm run gulp-integration-tests&& npm run babel-integration-tests && npm run expect-extension-integration-tests",
"expect-extension-integration-tests": "alsatian \"./test/integration-tests/extending-expect/**/*.spec.js\"",
"cli-integration-tests": "alsatian \"./test/integration-tests/cli/runner\"",
"node-integration-tests": "tsc -p \"./test/integration-tests\" && node \"./test/integration-tests/node/runner\"",
"gulp-integration-tests": "alsatian \"./test/integration-tests/gulp/runner\"",
"debug-unit-tests": "node-debug ./cli/alsatian-cli.js \"./test/unit-tests/**/*.spec.js\"",
"build-es6-tests": "babel test/integration-tests/javascript/test-sets -d test/integration-tests/javascript/test-sets",
"babel-integration-tests": "npm run build-es6-tests && alsatian \"./test/integration-tests/javascript/babel/babel-compatibility.spec\"",
"typescript-integration-tests": "alsatian \"./test/integration-tests/typescript/compile.spec\"",
"selenium-integration-tests": "alsatian \"./test/integration-tests/selenium/**/*.spec.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/alsatian-test/alsatian.git"
},
"keywords": [
"test",
"framework",
"test framework",
"TypeScript",
"JavaScript",
"babel",
"alsatian",
"decorators",
"annotations",
"readable",
"simple",
"powerful",
"node",
"test case",
"case",
"unit test",
"tap",
"tsunit",
"junit",
"nunit",
"xunit",
"tdd"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/alsatian-test/alsatian/issues"
},
"homepage": "https://github.com/alsatian-test/alsatian#readme",
"devDependencies": {
"@types/glob": "^5.0.30",
"@types/gulp": "^4.0.0",
"@types/selenium-webdriver": "^3.0.0",
"babel-cli": "^6.18.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.18.0",
"codeclimate-test-reporter": "^0.5.0",
"coveralls": "^2.11.9",
"dugite": "^1.29.0",
"gulp": "^3.9.1",
"install-self": "^1.0.0-beta.7",
"mock-require": "^2.0.1",
"nyc": "^11.0.1",
"rimraf": "^2.5.4",
"selenium-webdriver": "^3.0.1",
"tslint": "^5.0.0",
"typescript": "^2.0.3"
},
"dependencies": {
"@types/node": ">=4.0.0",
"extendo-error": "^1.0.1",
"glob": "^7.0.3",
"reflect-metadata": "^0.1.3",
"tap-bark": "1.0.0"
}
}