forked from testdeck/testdeck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.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
{
"name": "testdeck",
"private": true,
"version": "0.0.3",
"description": "TypeScript decorators based wrapper over various test framework interfaces",
"author": "Panayot Cankov",
"contributors": [
{
"name": "silkentrance",
"url": "https://github.com/silkentrance"
}
],
"homepage": "https://testdeck.org/",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/testdeck/testdeck.git"
},
"devDependencies": {
"@types/chai": "latest",
"@types/chai-as-promised": "latest",
"chai": "latest",
"chai-as-promised": "latest",
"jasmine": "latest",
"jest": "latest",
"lerna": "latest",
"lerna-changelog": "latest",
"mocha": "latest",
"nyc": "latest",
"tslint": "latest",
"typescript": "latest"
},
"scripts": {
"postinstall": "lerna bootstrap --no-ci",
"test": "lerna run --stream test",
"tslint": "lerna run --stream tslint",
"tslint-fix": "lerna run --stream tslint-fix",
"lerna-publish": "lerna publish",
"changelog": "lerna-changelog"
},
"changelog": {
"repo": "testdeck/testdeck",
"labels": {
"breaking": ":boom: Breaking Change",
"internal": ":house: Internal",
"bug": ":bug: Bug Fix",
"enhancement": ":rocket: New Feature",
"documentation": ":memo: Documentation"
}
}
}