-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.37 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "rivet",
"version": "1.0.7",
"description": "Suite of utilities for working with the Rivet consumer-driven API contacts testing model.",
"keywords": [
"rivet",
"api",
"test",
"contract"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"install:consumer": "cd example/consumer; npm install",
"install:producer": "cd example/consumer; npm install",
"install:all": "npm run install:consumer && npm run install:producer",
"test": "npm run build && $(npm bin)/jest",
"prepublishOnly": "npm run build",
"watch": "npm run build:watch",
"rivet": "./dist/bin/rivet",
"clean": "rm -rf ./dist",
"build": "npm run clean && npm run copy:binary && $(npm bin)/tsc --project tsconfig.json --declaration",
"build:watch": "npm run build -- --watch",
"copy:binary": "mkdir -p dist/bin/ && cp src/bin/rivet dist/bin/"
},
"bin": {
"rivet": "./dist/bin/rivet"
},
"author": "Kevin Altman <[email protected]>",
"homepage": "http://rivet.itg.sh",
"repository": {
"type": "git",
"url": "https://github.com/itsthatguy/rivet.git"
},
"bugs": {
"url": "https://github.com/itsthatguy/rivet/issues",
"email": "[email protected]"
},
"license": "ISC",
"dependencies": {
"chokidar": "^1.7.0",
"colors": "^1.1.2",
"fs-extra": "^4.0.1",
"glob": "^7.1.2",
"inquirer": "^3.3.0",
"json-schema-faker": "^0.5.0-rc11",
"rivet": "file:./",
"yargs": "^8.0.2"
},
"devDependencies": {
"@types/colors": "^1.1.3",
"@types/glob": "^5.0.32",
"@types/inquirer": "0.0.35",
"@types/jest": "^20.0.8",
"@types/node": "^8.0.28",
"@types/yargs": "^8.0.2",
"jest": "^20.0.4",
"jest-json-schema": "^1.2.0",
"strip-color": "^0.1.0",
"ts-jest": "^21.0.0",
"tslint": "^5.7.0",
"typescript": "^2.5.2"
},
"jest": {
"setupFiles": [
"<rootDir>/__tests__/test-setup.ts"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts",
"!dist/",
"!src/bin/**/*.ts"
],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*\\.(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"dist/",
"node_modules/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
}
}