-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.15 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
{
"name": "rollup-plugin-gherkin",
"version": "0.0.0-development",
"description": "gherkin plugin for rollup",
"main": "dist/index.js",
"module": "src/index.js",
"jsnext:main": "src/index.js",
"repository": "https://github.com/call-a3/rollup-plugin-gherkin.git",
"author": {
"name": "Adriaan Callaerts",
"email": "[email protected]",
"url": "https://www.adriaan.me"
},
"license": "MIT",
"files": [
"src/index.js",
"dist/index.js"
],
"scripts": {
"build": "rollup -c",
"test": "jest --config .jest.json",
"report-coverage": "codecov",
"start": "npm test -- --watch",
"prepublishOnly": "npm run test && npm run build",
"lint": "npm-run-all --parallel lint:js lint:commits",
"lint:js": "eslint --ext .js src tests",
"lint:commits": "commitlint --from develop",
"lint:fix": "npm run lint:js -- --fix",
"precommit": "pretty-quick --staged",
"commitmsg": "commitlint -e $GIT_PARAMS",
"prepush": "npm test -- --coverage",
"commit": "commit",
"semantic-release": "semantic-release"
},
"peerDependencies": {
"rollup": "0.66.2"
},
"greenkeeper": {
"ignore": [
"gherkin"
]
},
"dependencies": {
"gherkin": "^5.1.0",
"rollup-pluginutils": "^2.3.3",
"source-map": "^0.7.3"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@commitlint/cli": "^7.1.2",
"@commitlint/config-conventional": "^7.1.2",
"@commitlint/prompt-cli": "^7.1.2",
"@semantic-release/changelog": "^3.0.0",
"@semantic-release/git": "^7.0.4",
"babel-core": "^7.0.0-0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"codecov": "^3.1.0",
"eslint": "^5.6.1",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-better": "^0.1.5",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-require-in-package": "^1.0.3",
"husky": "^1.0.1",
"jest": "^23.6.0",
"npm-run-all": "^4.1.3",
"prettier": "^1.14.3",
"pretty-quick": "^1.7.0",
"rollup": "^0.68.0",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-hypothetical": "^2.1.0",
"semantic-release": "^15.9.16"
}
}