-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.61 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
{
"name": "pact-cli",
"version": "1.1.1",
"description": "CLI Tool to start an API Mock Server via PACT interaction Files and communicating with PACT Brokers",
"main": "dist/index.js",
"bin": {
"pact-cli": "dist/cli.js"
},
"scripts": {
"test": "jest --watch --silent=false",
"test-ci": "jest",
"build": "mkdir -p dist && ./node_modules/.bin/babel ./src -d dist --ignore test.js,__mocks__",
"dev": "./node_modules/.bin/watch -p \"src/*.js\" -c \"npm run build && npm link\"",
"lint": "eslint src",
"lint-fix": "eslint --fix src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kununu/pact-cli.git"
},
"author": "kununu",
"license": "MIT",
"bugs": {
"url": "https://github.com/kununu/pact-cli/issues"
},
"homepage": "https://github.com/kununu/pact-cli-cli#readme",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "7.2.3",
"babel-jest": "21.2.0",
"babel-preset-latest": "^6.22.0",
"eslint": "4.12.1",
"eslint-config-kununu": "2.0.0",
"eslint-plugin-babel": "^4.0.1",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "7.5.1",
"jest": "21.2.1",
"jest-cli": "^21.2.1",
"watch-cli": "0.2.3"
},
"dependencies": {
"@pact-foundation/pact-node": "6.3.0",
"argparse": "1.0.9",
"daemon": "^1.1.0",
"glob": "7.1.1",
"pact": "4.2.1",
"prompt": "1.0.0",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"semver": "^5.3.0",
"valid-url": "^1.0.9"
}
}