-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.3 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
{
"name": "@testplane/url-decorator",
"version": "1.0.0",
"description": "Plugin for Testplane which is intended to add additional parameters to test urls",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/gemini-testing/testplane-url-decorator.git"
},
"bugs": "https://github.com/gemini-testing/testplane-url-decorator/issues",
"scripts": {
"lint": "eslint .",
"test": "npm run lint && npm run test-unit",
"test-unit": "mocha test",
"cover": "istanbul cover _mocha test",
"coveralls": "npm i coveralls && npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"precommit": "npm run lint",
"commitmsg": "conventional-changelog-lint -e",
"release": "standard-version"
},
"engines": {
"node": ">= 4"
},
"keywords": [
"testplane",
"hermione",
"plugin",
"url-decorator"
],
"author": "Andrey Kuznetsov",
"license": "MIT",
"dependencies": {
"lodash": "^4.15.0"
},
"devDependencies": {
"chai": "^3.5.0",
"conventional-changelog-lint": "^1.0.1",
"eslint": "^3.4.0",
"eslint-config-gemini-testing": "^2.2.0",
"husky": "^0.11.9",
"istanbul": "^0.4.5",
"mocha": "^3.0.2",
"proxyquire": "^1.7.10",
"sinon": "^1.17.5",
"standard-version": "^4.0.0"
}
}