-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.23 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
{
"name": "@apicurio/data-models-spectral-extension",
"version": "0.1.1-alpha1",
"description": "An extension to validate Spectral rulesets using apicurio-data-models",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"clean": "rimraf dist types node_modules",
"build": "rimraf dist && tsc -p tsconfig.json",
"prettier": "prettier 'src/**/*.ts'",
"prettier:fix": "prettier --write 'src/**/*.ts'",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint --fix 'src/**/*.ts'",
"bump-version": "npm version",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Apicurio/apicurio-data-models.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Apicurio/apicurio-data-models/issues"
},
"homepage": "https://github.com/Apicurio/apicurio-data-models#readme",
"dependencies": {
"@stoplight/spectral-core": "^1.11.1",
"@stoplight/spectral-ruleset-bundler": "^1.2.1",
"@stoplight/spectral-ruleset-migrator": "^1.7.3",
"@stoplight/types": "^12.5.0",
"apicurio-data-models": "^1.1.25"
},
"devDependencies": {
"@types/node": "^17.0.23",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
}
}