-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
70 lines (70 loc) · 2.3 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
{
"version": "0.24.0",
"nextVersion": "0.25.0",
"private": true,
"scripts": {
"clean": "rimraf \"{packages/*/{index,{src,language-service}/**/*,test/*.spec},scripts/!(last-travis-nightly)}.{js?(.map),d.ts}\" \"*.tsbuildinfo\"",
"compile": "ttsc -p tsconfig.json",
"lint:valtyr": "wotan -m @fimbul/valtyr",
"lint:wotan": "wotan",
"lint": "run-p \"lint:* {@}\" --",
"check-package": "node scripts/api-guard",
"check-dependencies": "depcruise -v .dependency-cruiser.json \"{scripts/*,packages/*/{{src,language-service}/**/*,index,test/*.spec}}.js\"",
"test:unit": "ava",
"test:integration": "wotan test 'packages/*/test/**/{,*.}test.json' --exact",
"test": "run-p \"test:* {@}\" --",
"report-coverage": "codecov --disable=gcov",
"test-coverage": "nyc --reporter=html --reporter=text-summary run-s test",
"verify": "npm-run-all -s clean compile -p check-dependencies lint check-package -s test-coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fimbullinter/wotan.git"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@fimbul/disir": "^0.24.0",
"@fimbul/valtyr": "^0.24.0",
"@fimbul/wotan": "^0.24.0",
"@octokit/graphql": "^4.5.8",
"@octokit/rest": "^18.0.0",
"@types/cross-spawn": "^6.0.0",
"@types/diff": "^5.0.0",
"@types/github-url-to-object": "^4.0.0",
"@types/glob": "^7.0.0",
"@types/issue-parser": "^3.0.0",
"@types/mkdirp": "^1.0.0",
"@types/node": "^10.12.0",
"@types/npm-packlist": "^1.1.0",
"@types/parse5-sax-parser": "^5.0.1",
"@types/rimraf": "^3.0.0",
"ava": "^3.1.0",
"chalk": "^4.0.0",
"codecov": "^3.0.0",
"dependency-cruiser": "^9.0.0",
"diff": "^5.0.0",
"escape-string-regexp": "^4.0.0",
"github-url-to-object": "^4.0.4",
"glob": "^7.1.2",
"issue-parser": "^6.0.0",
"mkdirp": "^1.0.0",
"npm-packlist": "^2.0.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"rimraf": "^3.0.0",
"semver": "^7.0.0",
"travis-ci": "^2.1.1",
"ts-transform-const-enum": "^0.0.1",
"tslib": "^2.0.0",
"tslint-consistent-codestyle": "^1.11.1",
"ttypescript": "^1.5.5"
},
"devDependencies": {
"typescript": "4.3.0-dev.20210319"
},
"peerDependencies": {
"typescript": ">= 4.0.0 || >= 4.2.0-dev"
}
}