-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 770 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 770 Bytes
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
{
"name": "cucumber-elm",
"description": "An implementation of Cucumber in Elm",
"version": "0.0.1",
"license": "BSD3",
"author": "Gunther Enthaler <genthaler@users.noreply.github.com>",
"repository": {
"type": "git",
"url": "https://github.com/genthaler/cucumber-elm"
},
"bugs": {
"url": "https://github.com/genthaler/cucumber-elm/issues"
},
"keywords": [
"elm",
"bdd",
"cucumber",
"gherkin"
],
"private": true,
"build": "elm-package install --yes",
"scripts": {
"test": "elm-test",
"watch": "npm-watch"
},
"watch": {
"test": {
"patterns": [
"src",
"test"
],
"extensions": "elm",
"quiet": false
}
},
"engine-strict": true,
"engines": {
"node": ">=4.0.0"
},
"dependencies": {},
"devDependencies": {
}
}