@accordproject/concerto-linter 3.25.7 → 3.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/default-ruleset/package.json +35 -35
- package/package.json +36 -36
|
@@ -1,51 +1,51 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@accordproject/concerto-linter-default-ruleset",
|
|
3
|
-
"version": "3.25.7",
|
|
4
3
|
"description": "Default ruleset for the Accord Project Concerto Linter",
|
|
5
|
-
"
|
|
4
|
+
"version": "3.26.0",
|
|
5
|
+
"author": "accordproject.org",
|
|
6
|
+
"dependencies": {
|
|
7
|
+
"@accordproject/concerto-cto": "3.26.0",
|
|
8
|
+
"@stoplight/spectral-core": "1.20.0",
|
|
9
|
+
"@stoplight/spectral-functions": "1.10.1",
|
|
10
|
+
"@stoplight/spectral-parsers": "1.0.5"
|
|
11
|
+
},
|
|
12
|
+
"devDependencies": {
|
|
13
|
+
"@typescript-eslint/eslint-plugin": "8.16.0",
|
|
14
|
+
"@typescript-eslint/parser": "8.16.0",
|
|
15
|
+
"eslint": "8.57.1",
|
|
16
|
+
"jest": "29.7.0",
|
|
17
|
+
"npm-run-all": "4.1.5",
|
|
18
|
+
"rimraf": "6.0.1",
|
|
19
|
+
"ts-jest": "29.2.5",
|
|
20
|
+
"typescript": "5.7.2"
|
|
21
|
+
},
|
|
6
22
|
"engines": {
|
|
7
23
|
"node": ">=18",
|
|
8
24
|
"npm": ">=10"
|
|
9
25
|
},
|
|
26
|
+
"homepage": "https://github.com/accordproject/concerto",
|
|
27
|
+
"keywords": [
|
|
28
|
+
"concerto",
|
|
29
|
+
"default-ruleset",
|
|
30
|
+
"linter",
|
|
31
|
+
"spectral"
|
|
32
|
+
],
|
|
33
|
+
"license": "Apache-2.0",
|
|
10
34
|
"main": "dist/ruleset-main.js",
|
|
11
|
-
"
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": "https://github.com/accordproject/concerto.git",
|
|
38
|
+
"directory": "packages/concerto-linter/default-ruleset"
|
|
39
|
+
},
|
|
12
40
|
"scripts": {
|
|
13
|
-
"clean": "rimraf dist",
|
|
14
|
-
"prebuild": "npm-run-all clean",
|
|
15
41
|
"build": "tsc",
|
|
16
|
-
"
|
|
42
|
+
"clean": "rimraf dist",
|
|
17
43
|
"lint": "eslint .",
|
|
18
44
|
"lint:fix": "eslint . --fix",
|
|
45
|
+
"prebuild": "npm-run-all clean",
|
|
46
|
+
"pretest": "npm-run-all lint",
|
|
19
47
|
"test": "jest",
|
|
20
48
|
"test:watch": "jest --watchAll"
|
|
21
49
|
},
|
|
22
|
-
"
|
|
23
|
-
"type": "git",
|
|
24
|
-
"url": "https://github.com/accordproject/concerto.git",
|
|
25
|
-
"directory": "packages/concerto-linter/default-ruleset"
|
|
26
|
-
},
|
|
27
|
-
"keywords": [
|
|
28
|
-
"concerto",
|
|
29
|
-
"linter",
|
|
30
|
-
"spectral",
|
|
31
|
-
"default-ruleset"
|
|
32
|
-
],
|
|
33
|
-
"author": "accordproject.org",
|
|
34
|
-
"license": "Apache-2.0",
|
|
35
|
-
"dependencies": {
|
|
36
|
-
"@accordproject/concerto-cto": "3.25.7",
|
|
37
|
-
"@stoplight/spectral-core": "1.20.0",
|
|
38
|
-
"@stoplight/spectral-functions": "1.10.1",
|
|
39
|
-
"@stoplight/spectral-parsers": "1.0.5"
|
|
40
|
-
},
|
|
41
|
-
"devDependencies": {
|
|
42
|
-
"eslint": "8.57.1",
|
|
43
|
-
"@typescript-eslint/eslint-plugin": "8.16.0",
|
|
44
|
-
"@typescript-eslint/parser": "8.16.0",
|
|
45
|
-
"npm-run-all": "4.1.5",
|
|
46
|
-
"rimraf": "6.0.1",
|
|
47
|
-
"typescript": "5.7.2",
|
|
48
|
-
"jest": "29.7.0",
|
|
49
|
-
"ts-jest": "29.2.5"
|
|
50
|
-
}
|
|
50
|
+
"typings": "dist/ruleset-main.d.ts"
|
|
51
51
|
}
|
package/package.json
CHANGED
|
@@ -1,52 +1,52 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@accordproject/concerto-linter",
|
|
3
|
-
"version": "3.25.7",
|
|
4
3
|
"description": "Concerto Linter using Spectral rulesets",
|
|
5
|
-
"
|
|
4
|
+
"version": "3.26.0",
|
|
5
|
+
"author": "accordproject.org",
|
|
6
|
+
"dependencies": {
|
|
7
|
+
"@accordproject/concerto-cto": "3.26.0",
|
|
8
|
+
"@accordproject/concerto-linter-default-ruleset": "3.26.0",
|
|
9
|
+
"@stoplight/spectral-cli": "6.15.0",
|
|
10
|
+
"@stoplight/spectral-core": "1.20.0",
|
|
11
|
+
"@stoplight/spectral-parsers": "1.0.5",
|
|
12
|
+
"find-up": "5.0.0"
|
|
13
|
+
},
|
|
14
|
+
"devDependencies": {
|
|
15
|
+
"@typescript-eslint/eslint-plugin": "8.16.0",
|
|
16
|
+
"@typescript-eslint/parser": "8.16.0",
|
|
17
|
+
"eslint": "8.57.1",
|
|
18
|
+
"jest": "29.7.0",
|
|
19
|
+
"npm-run-all": "4.1.5",
|
|
20
|
+
"rimraf": "6.0.1",
|
|
21
|
+
"ts-jest": "29.2.5",
|
|
22
|
+
"typescript": "5.7.2"
|
|
23
|
+
},
|
|
6
24
|
"engines": {
|
|
7
25
|
"node": ">=18",
|
|
8
26
|
"npm": ">=10"
|
|
9
27
|
},
|
|
28
|
+
"homepage": "https://github.com/accordproject/concerto",
|
|
29
|
+
"keywords": [
|
|
30
|
+
"concerto",
|
|
31
|
+
"linter",
|
|
32
|
+
"spectral"
|
|
33
|
+
],
|
|
34
|
+
"license": "Apache-2.0",
|
|
10
35
|
"main": "dist/index.js",
|
|
11
|
-
"
|
|
36
|
+
"repository": {
|
|
37
|
+
"type": "git",
|
|
38
|
+
"url": "https://github.com/accordproject/concerto.git",
|
|
39
|
+
"directory": "packages/concerto-linter"
|
|
40
|
+
},
|
|
12
41
|
"scripts": {
|
|
13
|
-
"clean": "rimraf dist",
|
|
14
|
-
"prebuild": "npm-run-all clean && cd ./default-ruleset && npm run build",
|
|
15
42
|
"build": "tsc -p tsconfig.build.json",
|
|
16
|
-
"
|
|
43
|
+
"clean": "rimraf dist",
|
|
17
44
|
"lint": "eslint .",
|
|
18
45
|
"lint:fix": "eslint . --fix",
|
|
46
|
+
"prebuild": "npm-run-all clean && cd ./default-ruleset && npm run build",
|
|
47
|
+
"pretest": "npm-run-all lint",
|
|
19
48
|
"test": "jest",
|
|
20
49
|
"test:watch": "jest --watchAll"
|
|
21
50
|
},
|
|
22
|
-
"
|
|
23
|
-
"type": "git",
|
|
24
|
-
"url": "https://github.com/accordproject/concerto.git",
|
|
25
|
-
"directory": "packages/concerto-linter"
|
|
26
|
-
},
|
|
27
|
-
"keywords": [
|
|
28
|
-
"concerto",
|
|
29
|
-
"linter",
|
|
30
|
-
"spectral"
|
|
31
|
-
],
|
|
32
|
-
"author": "accordproject.org",
|
|
33
|
-
"license": "Apache-2.0",
|
|
34
|
-
"dependencies": {
|
|
35
|
-
"@accordproject/concerto-linter-default-ruleset": "3.25.7",
|
|
36
|
-
"@accordproject/concerto-cto": "3.25.7",
|
|
37
|
-
"find-up": "5.0.0",
|
|
38
|
-
"@stoplight/spectral-cli": "6.15.0",
|
|
39
|
-
"@stoplight/spectral-core": "1.20.0",
|
|
40
|
-
"@stoplight/spectral-parsers": "1.0.5"
|
|
41
|
-
},
|
|
42
|
-
"devDependencies": {
|
|
43
|
-
"eslint": "8.57.1",
|
|
44
|
-
"@typescript-eslint/eslint-plugin": "8.16.0",
|
|
45
|
-
"@typescript-eslint/parser": "8.16.0",
|
|
46
|
-
"npm-run-all": "4.1.5",
|
|
47
|
-
"rimraf": "6.0.1",
|
|
48
|
-
"typescript": "5.7.2",
|
|
49
|
-
"jest": "29.7.0",
|
|
50
|
-
"ts-jest": "29.2.5"
|
|
51
|
-
}
|
|
51
|
+
"typings": "dist/index.d.ts"
|
|
52
52
|
}
|