-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (52 loc) · 1.46 KB
/
package.json
File metadata and controls
58 lines (52 loc) · 1.46 KB
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
{
"name": "sublime-cucumber-extended",
"description": "A Sublime Text 3 Plugin for better Cucumber Syntax Highlighting",
"author": "Jeremy Bolding <cyberchefjay@gmail.com> (http://thecodechef.github.io)",
"version": "0.0.1",
"engine": {
"node": "^10.14.1"
},
"licence": "MIT",
"keywords": [
"sublime-text",
"sublime-text-3",
"cucumber",
"cucumber-js",
"cucumber-ruby",
"gherkin",
"bdd",
"ruby"
],
"scripts": {
"lint:plugin":"yarn lint",
"lint:site":"cd website && yarn lint",
"test:plugin":"yarn cucumber-js",
"test:site":"cd website && yarn cucumber-js",
"build:site:dev":"cd website && jekyll build",
"build:site:prod":"cd website && jekyll build --production",
"serve:site":"cd website && jekyll serve",
"prettier:plugin": "yarn prettier",
"prettier:site": "cd webite && yarn prettier",
"prettier": "yarn prettier:plugin && yarn prettier:site",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "https://www.github.com/thecodechef/sublime-cucumber-extended.git"
},
"bugs": "https://www.github.com/thecodechef/sublime-cucumber-extended/issues/new",
"devDependencies": {
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"prettier": "^1.13.7"
},
"lint-staged": {
"linters": {
"tests/**/*.ts": ["yarn lint --fix","yarn prettier:ts","git add"],
"website/tests/**/*.ts": ["yarn lint --fix","yarn prettier:ts","git add"]
}
},
"greenkeeper": {
"ignore": []
}
}