-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 836 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 836 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
{
"name": "@jgrenat/elm-regression-testing",
"version": "1.0.1",
"description": "Regression Testing in Elm!",
"main": "bin/elm-regression-testing",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --outDir bin"
},
"bin": {
"elm-regression-testing": "bin/elm-regression-testing.js"
},
"files": [
"bin/*"
],
"keywords": [
"cli",
"regression testing",
"test"
],
"author": "Jordane Grenat (https://grenat.eu)",
"license": "BSD-3-Clause",
"publishConfig": {
"access": "public"
},
"dependencies": {
"commander": "^5.0.0",
"fs-extra": "^9.0.0",
"node-elm-compiler": "^5.0.4",
"ora": "^4.0.3",
"path": "^0.12.7",
"tmp": "^0.1.0"
},
"devDependencies": {
"@types/node": "^13.11.1",
"typescript": "^3.8.3"
}
}