-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·50 lines (50 loc) · 1.2 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
{
"name": "elm-doctest",
"version": "0.4.2",
"description": "doctest for elm",
"main": "./src/bridge.js",
"bin": {
"elm-doctest": "./bin/cli.js"
},
"prettier": {
"singleQuote": true,
"semi": false
},
"devDependencies": {
"elm": "0.19.1-5",
"elm-format": "^0.8.5",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"npm-check": "^5.9.2",
"prettier": "^2.6.2",
"shelljs": "^0.8.5"
},
"scripts": {
"dist": "npm run build",
"build": "elm make --optimize src/Main.elm --output ./src/elm.js",
"check": "npm-check -s -p",
"lint": "eslint --fix src/bridge.js src/main.js src/util.js && prettier --write .",
"pretest": "npm run build && npm run check && npm run lint",
"test": "node ./test/run.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tshm/elm-doctest.git"
},
"author": "Toshihide Satake <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tshm/elm-doctest/issues"
},
"homepage": "https://github.com/tshm/elm-doctest#readme",
"keywords": [
"cli",
"tool",
"elm",
"doctest"
],
"dependencies": {
"chokidar": "^3.5.3",
"minimist": "^1.2.6"
}
}