-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 1.89 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
{
"name": "@nrk/expect-openapi",
"version": "2.6.0",
"repository": {
"type": "git",
"url": "git+https://github.com/nrkno/expect-openapi.git"
},
"description": "Expect objects to match OpenAPI documents",
"license": "MIT",
"author": {
"name": "NRK",
"email": "[email protected]",
"url": "https://nrkbeta.no/"
},
"files": [
"dist"
],
"main": "dist/index.js",
"scripts": {
"prebuild": "run-s clean",
"build": "tsc -p ./tsconfig.build.json",
"clean": "rimraf ./dist",
"lint": "run-p lint:*",
"lint-fix": "run-p lint-fix:*",
"lint-fix:format": "yarn --silent prettier --write",
"lint-fix:tslint": "yarn --silent tslint --fix",
"lint:format": "yarn --silent prettier --check",
"lint:tslint": "yarn --silent tslint",
"prepare": "run-s build",
"test": "run-s lint test:*",
"test:jest": "jest",
"tslint": "tslint -p . 'src/**/*.{ts,tsx}'",
"prettier": "prettier \"src/**/*.{js,jsx,ts,less,tsx,json}\""
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^9.0.1",
"ajv": "^6.10.2",
"better-ajv-errors": "^1.1.0",
"chalk": "^4.1.0",
"expect": "^29.0.1",
"jest-matcher-utils": "^29.0.1",
"lodash": "^4.17.15"
},
"devDependencies": {
"@types/expect": "^24.3.0",
"@types/express": "^4.17.2",
"@types/jest": "^29.0.0",
"@types/jest-matcher-utils": "^25.1.0",
"@types/json-schema": "^7.0.3",
"@types/lodash": "^4.14.144",
"@types/node": "^18.0.0",
"@types/prettier": "^2.0.0",
"@types/rimraf": "^3.0.0",
"@types/supertest": "^2.0.8",
"express": "^4.17.1",
"jest": "^27.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.1",
"rimraf": "^3.0.0",
"supertest": "^6.0.0",
"ts-jest": "^27.0.0",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.5"
},
"publishConfig": {
"access": "public"
}
}