-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
71 lines (71 loc) · 1.96 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
{
"name": "elm-analyse",
"version": "0.16.5",
"description": "A tool that allows you analyse your Elm code and identifies deficiencies and best practices.",
"repository": {
"type": "git",
"url": "github.com/stil4m/elm-analyse"
},
"bugs": {
"url": "https://github.com/stil4m/elm-analyse/issues",
"email": "[email protected]"
},
"scripts": {
"js:lint": "eslint js",
"js:validate-format": "sh ./prettier-check.sh",
"js:format": "sh ./prettier-run.sh",
"elm:test": "./node_modules/.bin/elm-test",
"elm:format": "./node_modules/.bin/elm-format --yes src/ tests/ docs/",
"elm:validate-format": "./node_modules/.bin/elm-format --validate src/ tests/",
"pr:check": "npm install && npm run js:lint && npm run elm:validate-format && npm run elm:test"
},
"author": "Mats Stijlaart",
"license": "MIT",
"bin": {
"elm-analyse": "dist/app/bin/index.js"
},
"keywords": [
"elm",
"ast",
"lint"
],
"dependencies": {
"body-parser": "1.19.0",
"express": "4.17.1",
"express-ws": "2.0.0",
"find": "0.2.7",
"fs-extra": "2.0.0",
"lodash": "^4.17.15",
"minimist": "^1.2.5",
"node-watch": "0.5.5",
"opn": "6.0.0",
"os-homedir": "1.0.2",
"request": "2.88.2",
"sums": "0.2.4",
"ws": "3.3.1"
},
"devDependencies": {
"@types/express": "4.17.6",
"@types/express-ws": "^3.0.0",
"@types/find": "^0.2.0",
"@types/fs-extra": "^5.1.0",
"@types/lodash": "^4.14.150",
"@types/minimist": "^1.2.0",
"@types/node": "^10.17.21",
"@types/opn": "^5.5.0",
"@types/os-homedir": "^1.0.0",
"@types/request": "^2.48.4",
"@types/ws": "^5.1.2",
"bootstrap": "^3.4.1",
"bufferutil": "3.0.3",
"elm-format": "0.8.0",
"elm-test": "^0.19.1",
"eslint": "4.10.0",
"font-awesome": "^4.7.0",
"node-module-concat": "2.1.0",
"prettier": "1.7.0",
"sb-admin-2": "^3.3.8",
"typescript": "^2.9.2",
"utf-8-validate": "^5.0.2"
}
}